Log in

View Full Version : Clearing NPC_Types Without Deteting It


DeletedUser
04-11-2004, 01:07 PM
Got a quick question:

Is there anyway, to clear out the entire NPC_Spawn table without deleting it and preventing the EQEmu from not working. In other words, I am just looking for a way to put the NPC_TYpes and possibly spawns back to when i first got them without having to manually delete them in the Admin Tool. If there is a way to do this such as in the MYSQL console, please share the word.

Thank You,
Wizzel :D

nattini
04-11-2004, 01:47 PM
in the mysql console,

delete from <tablename>;

where <tablename> is the table you want to delete all the entries from.

drop <tablename>; --would delete the whole table.


-nattini

DeletedUser
04-11-2004, 02:09 PM
Thanks :P