View Single Post
  #1  
Old 09-18-2003, 03:12 AM
Scorpious2k's Avatar
Scorpious2k
Demi-God
 
Join Date: Mar 2003
Location: USA
Posts: 1,067
Default Another mob pathing fix

Really mob pathing/quest related. To get EVENT_WAYPOINT working correctly, in mobAI.cpp Mob::AI_Process() the line that reads
Code:
parse->Event(7,this->GetNPCTypeID(), itoa(cur_wp,temp,10), this->CastToMob(), 0);
should be
Code:
parse->Event(7,this->GetNPCTypeID(), itoa((cur_wp+1),temp,10), this->CastToMob(), this->CastToMob());
__________________
Maybe I should try making one of these servers...
Reply With Quote