View Single Post
  #3  
Old 04-18-2009, 12:36 PM
covou
Sarnak
 
Join Date: Jan 2006
Posts: 31
Default

A round about way of doing it would be to have the mob set a temp global with the persons name who spoke to them as the value. Make sure you put this command BEFORE the depop command or it may result in errors.


and then when the mob spawns
Code:
sub EVENT_SPAWN
{
quest::attack($qglobals{TempGlobal});
quest::delglobal("TempGlobal");
}
Reply With Quote