ID:163711
![]() Aug 7 2007, 10:42 am
|
|
I made where a player talks to a certain NPC, the verb, Talk, would disappear, but I want it gone forever (not just until the world ends, for life). How do I do that?
|
DadGun wrote:
I made where a player talks to a certain NPC, the verb, Talk, would disappear, but I want it gone forever (not just until the world ends, for life). How do I do that? you could use a var have the verb check if the var is 1 or 0, if its 1 hide the verb you might want to disable the verb altogether, if 0 show verb, also have to make the var save in the users save file and load when they come back on. |
Dimone Jr wrote:
*off the topic* mob |
The best way to accomplish this behavior for NPCs is to just keep the Talk verb around, but don't let the player use it.
mob/var/talked_to_bob=0 -- Data |
um can u tell me how to make an NPC talk?