View Single Post
  #18  
Old 07-22-2004, 12:07 AM
rizzen04
Hill Giant
 
Join Date: Apr 2004
Location: The Overthere
Posts: 123
Default

why comment things out when you can change it from

Code:
 if (ns->spawn.class_==MERCHANT) 
      strcpy(ns2->spawn.last_name, "EQEmu Shopkeeper"); 
   else if (ns->spawn.class_==TRIBUTE_MASTER) 
      strcpy(ns2->spawn.last_name, "Tribute Master"); 
   else if (ns->spawn.class_==BANKER) 
      strcpy(ns2->spawn.last_name, "EQEmu Banker"); 
   else if (ns->spawn.class_==ADVENTUREMERCHANT)
to
Code:
 if (ns->spawn.class_==MERCHANT) 
      strcpy(ns2->spawn.last_name, "Shopkeeper"); 
   else if (ns->spawn.class_==TRIBUTE_MASTER) 
      strcpy(ns2->spawn.last_name, "Tribute Master"); 
   else if (ns->spawn.class_==BANKER) 
      strcpy(ns2->spawn.last_name, "Banker"); 
   else if (ns->spawn.class_==ADVENTUREMERCHANT)
Just removing the EQEMU part out.[/quote]
__________________
Rizzen
[ServerOp]Shattered Lands(active...kinda)
MUD? whats that? telnet://shattered-lands.net:6666
*****
If it doesn
Reply With Quote