jacmac 2 Posted March 15, 2013 #loop @TheMan distance TheFlag < 50 ManIsHere = true; publicVariable "ManIsHere" @TheMan distance TheFlag > 50 goto "loop" I tried searching, but it's pretty hard to search for "@" and get meaningful results. Share this post Link to post Share on other sites
sxp2high 23 Posted March 15, 2013 From the looks of it it means if. However this is SQS syntax, not SQF, and shouldn't be used anymore. SQF: waitUntil {TheMan distance TheFlag < 50}; ManIsHere = true; publicVariable "ManIsHere"; Share this post Link to post Share on other sites
das attorney 858 Posted March 15, 2013 That's old sqs format. Try and stick to sqf: while {true} do { if (TheMan distance TheFlag < 50) then { ManIsHere = true; publicVariable "ManIsHere"; }; }; EDIT: Ninja'd Share this post Link to post Share on other sites
jacmac 2 Posted March 15, 2013 OK so TheMan was simply a variable, thanks. Share this post Link to post Share on other sites