Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
Godsdoomer

ACS Help

Recommended Posts

Hello all,

I am currently making a mod that I have put ACS into. I have used the HUDMESSAGE command to display the title of the map upon start up of the level.

My question is, how would I get the HUDMESSAGE command to be executed in certain instances? (Like when the player walks over a flagged linedef, the text is executed then and ONLY then.) (The flag is #80 - Execute Script, 6 is the ID number of my script)

Currently this is what I have:

HudMessage(s:"blahblahblah";
HUDMSG_LOG | HUDMSG_FADEOUT, 6, CR_PURPLE, 1.5, 0.8, 5.0, 0.05, 2.0);
}

I can get the text to appear when the player walks over the flagged linedef, however, this message also appears upon start up of the level.

How do I make it so that the message only appears when the player walks over the flagged linedef?

Share this post


Link to post

My guess is you have:
script 1 open
or
script 1 enter
that makes them start automatically when opening the map or when a player enters:
http://zdoom.org/wiki/Script_types

try
script 1 (void)
and it won't run automatically until something executes it

(going from memory so might be wrong)

Share this post


Link to post

Thank you very much mork, that works perfectly. I wasn't aware that there was any other way to open a script besides OPEN or ENTER.

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×