View Single Post
  #7  
Old 05-19-2010, 11:37 AM
pfyon's Avatar
pfyon
Discordant
 
Join Date: Mar 2009
Location: Ottawa
Posts: 495
Default

If you want to keep the names of the NPCs intact, you can use something like:
Code:
UPDATE npc_types SET name = CONCAT('###',name) WHERE (ID>=58061 AND ID<=58119);
That will prepend '###' to the name of each npc that meets the WHERE clause.
Reply With Quote