Script with " ! "

ZelosAvalon

New member
Messages
218
Points
0
Age
34
Emulator
whats the difference between

questprogress 

and

!questprogress

?

 
Last edited by a moderator:
'!' 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} 
default_ani_meow.gif


 
Last edited by a moderator:
Back
Top