Healer npc problem

Svanhild

New member
Messages
115
Points
0
Location
Queenslander
Emulator
The problem is that, whenever I click the healer npc, my character always moves/walks beside it which is very annoying, unlike other npcs like kafra, your character won't move upon clicking. There are no modifications, I'm using the stock healer npc and I'm using the latest svn.

 
Last edited by a moderator:
I already tried that, but the issue persists. Also, the use of numeric NPC view ids has been already depracated. I'm using the 4_PORING, again, the healer script is unmodified, I'm using the stock script written by euphy. And if I'm going to put a mes window on the healer, definitely my character won't walk, it would stay where it is, but by just using the default script makes my character walk beside it upon clicking.

 
Last edited by a moderator:
You should use message instead if you want character to continue.

Since mes brings up a dialogue menu, you would need close; to exit it.

E.g.

Code:
-   script   Healer    4_PORING,5,5,{
end;

OnTouch:
percentheal 100,100;
message strcharinfo(PC_NAME),"You have been healed.";
end;

}
 
Have you confirmed this?

You should use message instead if you want character to continue.

Since mes brings up a dialogue menu, you would need close; to exit it.

E.g.

- script Healer 4_PORING,5,5,{
end;

OnTouch:
percentheal 100,100;
message strcharinfo(PC_NAME),"You have been healed.";
end;

}
I've used your script, and the issue persists, also, it doesn't display a message "You have been healed" at all.

 
Try using npc without sprite, the default is poring. Its not the real solution but it will do
default_smile.png
try 4_M_ILYA
 

 
Problem solved. It was client-side issue, there was something to do with the way the client was diffed.

Change walk to delay.
Disable walk to delay.

Both of these parameters should be disabled. That gave me a 24 hour headache. Cheers!

 
Back
Top