Quote:
|
Originally Posted by Methril
This should work regardless of anything else, should it not?
PHP Code:
if (x!=40 && y!=23.5){
set Carried;
}
|
Again: that's a conditional statement, not an event block. You would need to create a timeout loop to check those conditions every certain amount of time. Otherwise, they aren't evaluated except:
1) When the NPC is created
2) When it receives another event
This is certainly not the behavior you want. Create a timeout loop.