View Single Post
  #14  
Old 06-13-2014, 08:26 PM
Guest001 is offline Guest001
Registered User

Join Date: Aug 2008
Posts: 4,971

Quote:
Originally Posted by HomeSkool View Post
That test map you made is awesome. I've never seen such a good explosion in Joint Ops before. That must have taken forever!

I've set the time to 60 minutes per day in Nile, So 1 sec = 1 minute.
I have a question about one of your examples.

Instead of setting a variable like this

if eq curTOD,08:00 then
set v1,1
endif

Could I avoid the variable and just do this?

if eq curTOD,17:00 then
ssntoWP 1,1
endif

Reason I ask it because I tried to do it and it did not work.
PART 2

Without the variable you will have greater difficulty controlling the on and off state of the command.

Remembering

1: then is repeatedly triggered so you may have to make another command to prevent that occurring depending on the timings you use.

2: and never then on it's own is triggered only once but it can be triggered repeatedly at will with a variable.

Reply With Quote