Jump to content
  • 0
Sign in to follow this  
ZelosAvalon

Script with " ! "

Question

1 answer to this question

Recommended Posts

  • 0

'!' is a 'not' operator

example if `questprogress` is equal to '1' then we will use it in a logical statement

if(questprogress){ // this means that `questprogress` > 0// code here will parse cause the statement is satisfied} 

otherwise

if(!questprogress){ // this means that `questprogress` not > 0// code here will not parse cause the statement is not satisfied} 

:meow:

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  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.