PDA

View Full Version : Removing NPCS from game


Xgen
01-22-2008, 06:54 PM
Im sure its been covered before, however I have not found it, even after searching.

I want to permanently remove npc's from teh game. Namely Bankers. Can someone point me in the right direction.

moydock
01-22-2008, 07:26 PM
If you just want to stop him from spawning... Delete his row from the spawn2 table. If you want to totally nuke him from the database, target him and type: #npcspawn delete

Xgen
01-23-2008, 05:14 AM
If you just want to stop him from spawning... Delete his row from the spawn2 table. If you want to totally nuke him from the database, target him and type: #npcspawn delete

Just what I was looking for, but, how do i know which one is a banker? The only identification I see is ID, it doesnt display their name.

narcberry
01-23-2008, 08:49 AM
You can do it within the game as gm.
As Xgen said, '#npcspawn delete'
or you could even try '#npcedit spawnlimit 0'

AiliaMorisato
01-23-2008, 09:20 AM
DELETE FROM npc_types WHERE class = (class number)

Class #'s

20 GM Warrior
21 GM Cleric
22 GM Paladin
23 GM Ranger
24 GM Shadow Knight
25 GM Druid
26 GM Monk
27 GM Bard
28 GM Rogue
29 GM Shaman
30 GM Necromancer
31 GM Wizard
32 GM Magician
33 GM Enchanter
34 GM Beastlord
35 GM Berserker
40 Banker
41 Shopkeeper
60 Adventure Recruiter
61 Adventure Merchant
63 Tribute Master

narcberry
01-23-2008, 10:04 AM
Well that answers how an npc is flagged as a banker. Thanks.

Xgen
01-23-2008, 10:47 AM
DELETE FROM npc_types WHERE class = (class number)

Class #'s

20 GM Warrior
21 GM Cleric
22 GM Paladin
23 GM Ranger
24 GM Shadow Knight
25 GM Druid
26 GM Monk
27 GM Bard
28 GM Rogue
29 GM Shaman
30 GM Necromancer
31 GM Wizard
32 GM Magician
33 GM Enchanter
34 GM Beastlord
35 GM Berserker
40 Banker
41 Shopkeeper
60 Adventure Recruiter
61 Adventure Merchant
63 Tribute Master

Thanks for the info!