Jump to content
  • 0
Sign in to follow this  
Svanhild

Healer npc problem

Question

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.

Edited by Svanhild

Share this post


Link to post
Share on other sites

6 answers to this question

Recommended Posts

  • 0

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!

Share this post


Link to post
Share on other sites
  • 0

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.

Edited by Svanhild

Share this post


Link to post
Share on other sites
  • 0

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;

}

Share this post


Link to post
Share on other sites
  • 0

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.

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.