Quote:
|
Originally Posted by Arkan1k
Spot the difference:
NPC Code:
if (!x=40 && !y=23.5){
set Carried;
}
if (x!=40 && y!=23.5){
set Carried;
}
|
Not sure if != operator is supported by graal, but you can also say !x==40, note the two ='s
Either may work