Page 1 of 1

making a bind or exec wait

Posted: Tue Aug 16, 2005 10:41 pm
by lizardkid
i'm stumped, i'm just trying to learn how to make a console-exec't script to wait before it exec's a command, so far it's ignored my commands of wait, and wait 1, delay isnt available from console, etc.

it's just a simple one. just learning how to make exec scripts from console.

Code: Select all

//scripts/execTest.scr
//for testing consoel exec's.
start:

say Stage one.
wait
wait 1
say Stage two.
it snaps off the two say commands instantly.

i'm using the console command exec scripts/execTest.scr

any ideas?

Posted: Tue Aug 16, 2005 11:12 pm
by hogleg
not a clue :P

exec \"file.cfg\"
- execute commands in file.cfg

Posted: Wed Aug 17, 2005 7:19 am
by jv_map
Console wait is in millisecs, so try wait 1000. Note that you won't be able to move during the wait, though.

Posted: Wed Aug 17, 2005 10:47 am
by lizardkid
thats bad, is there any console command i could use to act as a script wait? just delay a command?