View Single Post
  #4  
Old 04-10-2004, 02:07 AM
govtcheeze
Hill Giant
 
Join Date: Mar 2004
Location: South Florida
Posts: 247
Default

if you dont want faction hits at all:

Code:
delete from npc_faction_entries;
if you want to remove all of the negative hits:

Code:
delete from npc_faction_entries where value < 0;
Reply With Quote