Thread: mouse coords
View Single Post
  #19  
Old 02-09-2005, 10:51 PM
falco10291029 falco10291029 is offline
BEst User EVER!
Join Date: Apr 2004
Posts: 1,186
falco10291029 is on a distinguished road
Found the problem, cant fix it:


NPC Code:

this.npc=strtofloat(#p(1));
callnpc this.npc,move,#p(2),#p(3);


That part, where it sends the command to the npc, which should recieve it with:

NPC Code:

if (move) {
this.x=strtofloat(#p(0));
this.y=strtofloat(#p(1));
this.hunt=1;
this.move=1;
unset move;
}


But it doesnt make any acknowledgement that it was told to move.
__________________
BEst Insult ever: If I had a dollar for every brain you DIDNT have, i'd have one dollar!
Reply With Quote