wizbomb 10 Posted November 27, 2010 i have a few objectives in my new mission and i would like to know the command that completes the current Objective and moves onto the next one...like for example a trigger that completes an objective. i have used the search function but got nothing after alot of looking, i know there is one but cant find it thanks for any help :yay: ---------- Post added at 04:21 PM ---------- Previous post was at 03:00 PM ---------- I guess no one knows Share this post Link to post Share on other sites
kylania 568 Posted November 27, 2010 They are called tasks now. You have complete control over when they are assigned and considered completed. You'll use commands like setTaskState to both complete and assign a new one. Share this post Link to post Share on other sites
wizbomb 10 Posted November 28, 2010 i cant seem to get this to work.....i have two objectives "Obj1" and "Obj2" a trigger is used to complete Obj1 with the command Obj1 setTaskState "Succeeded"; in its "on act" field but i cant get it to complete the task and it wont switch to Obj2 please help Share this post Link to post Share on other sites
MeIvin 10 Posted November 28, 2010 Hello, It's all pretty much in the link kylania gave you: http://www.kylania.com/ex/?p=65 take a look at it :) Kind Regards Melvin Share this post Link to post Share on other sites
wizbomb 10 Posted November 28, 2010 okay, in my mission i have a tank, you have to destroy the tank, im using a trigger to tell if he is dead or not. here is what the trigger looks like this: Condition: this = !alive tank7; On Act.: Obj1 setTaskState "Succeeded"; player1 setCurrentTask Obj2; but nothing happens when the tank blows up......nothing.....im so stumped :( Share this post Link to post Share on other sites
shuko 59 Posted November 28, 2010 cond should be just: !alive tank7 Share this post Link to post Share on other sites
wizbomb 10 Posted November 28, 2010 OMG that worked! Thanks alot guys! :) Share this post Link to post Share on other sites