Sorry to interrupt you again, but I am making a mp mission for tomorrow evening and I received some problems.
Case n.1
Must be asked hundreds of times, but how to remove actions?
Case n.2
I made rain script. One of the players controls the weather and this script is trying to make a rain:
#Raini
hint "Rain commenced"
playsound "Thundr3"
0 setOvercast 20
leadere removeaction ["Rain","Raino.sqs"]
leadere addaction ["End rain","End rain.sqs"]
~22
? (RainEnd==1) : goto "Raini"
0 setOvercast 0
Hint "Rain ended"
~2
leadere addaction ["Rain","Raino.sqs"]
exit
It works except for 2 things:
-the removeaction doesnÂ't work.
-It goes through the list of commands, but only once, I tried to make a loop, so it circles alltime until the RainEnd has value 1.
Case n.3
Very similar to the rain script, except this one must circle forever.
#Changa
~400
hint "Time will change in 3"
~1
hint "Time will change in 2"
~1
hint "Time will change in 1"
~1
skiptime 12
hint "Time changed"
goto "Changa"
Same problem; it only does it once, it doesnÂ't circle.
Any help will be appreciated.
(Sorry to post this into a wrong area...)