You need to add your NPC in the custom_spawnlist.sql also enable the option to use such tables in config files.
General.properties:
Code: Select all
# Default: FalseCustomSpawnlistTable = True
You can run a query to add the NPC:
Code: Select all
INSERT INTO `custom_spawnlist` VALUES (NULL, 'location', count, NPC_TemplateID, x, y, z, 0, 0, heading, respawn, 0, 0);
The first value is the spawn id, it should be null cause the table has auto_increment for that value, the location is a string that contain a brief description of the spawning place like 'Giran_TownCenter', the count should be 1, the NPC_TemplateID is the id that gives the npc the looking, x,y,z are the coordinates where you want it to spawn you can go to that place and use /loc command in the client to get that location coordinates , heading is where the npc is looking at, and the respawn is the respawn delay in seconds after death, but it is not going to die, 60 should be fine I think.