Jump to content
Sign in to follow this  
prototype1479

What is @ in scripting

Recommended Posts

What is that? for example : 

_e= -1
~0.1
removeallweapons player
@ go
~4
player playmove "PutDown"

 

and

 

PlayersArrayChecked = false
[] exec "Massive.sqs"
@(playersArrayChecked)
_allP = ALL
_allP = ALL - [player]
_allP = [player] + _allP

Share this post


Link to post
Share on other sites

@ literally halts the script until the specified condition is met. Whereas ~ (wait) pauses for a specified time and moves onto the next line.

 

"go" is a global variable. As is "PlayersCheckedArray". I assume PlayersCheckedArray is set true as a result of some condition in "Massive.sqs" . The script is being told to halt until that happens. Not that I'm any kind of expert in the area of scripting. Far from it. :smile_o:

  • Like 2

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×