[Help] NPC's Missing L2J 

Junior Spellweaver
Joined
Sep 27, 2006
Messages
110
Reaction score
0
I was running around and noticed there were some NPCs missing. There were 2 in Gludin (Weapons Trader and one of the magic shop's traders .. I'd post names but.. they disappeared so I don't know who they are).

I don't really know how to approach this. Is there any place I should check to see if they exist?

Thanks, Jeremy
 
Hi can someone help my
When i start server first time all npc was ok and they was standing in thery places but after rr my npc gone and when i do rr they gone lots of time...how i can fix it/????
 
Upvote 0
They are there is a geodata bug. Two ways you can fix it. turn geo off find out who it is. Turn geodata back on and place them. Or use this.

Code:
- fix Abyssal Celebrant Kalinta 
DELETE FROM spawnlist WHERE npc_templateid = 30422; 
INSERT INTO `spawnlist` VALUES 
(NULL,'gludio06_npc1722_024',1,'30422',-84409,149856,-3127,0,0,49152,60,0,0);

-- fix Trader Nestle 
DELETE FROM spawnlist WHERE npc_templateid = 30314;
INSERT INTO `spawnlist` VALUES 
(NULL,'gludio06_npc1722_034',1,'30314',-79978,153298,-3160,0,0,63813,60,0,0);

-- fix Trader Vollodos in Dark Elf Village 
DELETE FROM spawnlist WHERE npc_templateid = 30137; 
INSERT INTO `spawnlist` VALUES 
(NULL,'oren09_npc2018_006',1,'30137',11886,15765,-4554,0,0,21221,60,0,0); 

-- fix Trader Minaless in Dark Elf Village 
DELETE FROM spawnlist WHERE npc_templateid = 30138;
INSERT INTO `spawnlist` VALUES 
(NULL,'oren09_npc2018_006',1,'30138',11937,15798,-4554,0,0,21221,60,0,0);

-- fix Trader Iria in Dark Elf Village
DELETE FROM spawnlist WHERE npc_templateid = 30135;
INSERT INTO `spawnlist` VALUES 
(NULL,'oren09_npc2018_005',1,'30135',10873,17924,-4557,0,0,49152,60,0,0);

-- fix Trader Lector in Talking Island Village
DELETE FROM spawnlist WHERE npc_templateid = 30001;
INSERT INTO `spawnlist` VALUES 
(NULL,'gludio25_npc1725_013',1,'30001',-86302,243158,-3721,0,0,52000,60,0,0);

-- fix Master Toma in random_spawn (ONE-FIXED ZONE SPAWN!)
DELETE FROM spawnlist WHERE npc_templateid = 30556;
INSERT INTO `spawnlist` VALUES 
(NULL,'',1,'30556',178658,-184257,-337,0,0,52000,60,0,0);

-- fix Skeleton Archer in Elven Ruins
DELETE FROM spawnlist WHERE npc_templateid = 20100;
INSERT INTO `spawnlist` VALUES 
(NULL,'gludio29_2125_10',1,'20100',43601,246213,-6461,0,0,44526,100,0,0);

-- fix Trader Arodin in Gludin Village
DELETE FROM spawnlist WHERE npc_templateid = 30207;
INSERT INTO `spawnlist` VALUES 
(NULL,'gludio06_npc1722_001',1,'30207',-80339,155039,-3160,0,0,14104,60,0,0);

-- fix Warehouse Freightman Collette in Dark Elf Village
DELETE FROM spawnlist WHERE npc_templateid = 30350;
INSERT INTO `spawnlist` VALUES
(NULL,'oren09_npc2018_004',1,'30350',13657,17540,-4542,0,0,30768,60,0,0);


-- fix Magic Shop  Trader Colleen in Gludin
DELETE FROM spawnlist WHERE npc_templateid = 30209;
INSERT INTO `spawnlist` VALUES
(Null,'gludio06_npc1722_036',1,'30209',-81908,152077,-3131,0,0,0,60,0,0);


-- fix Guard Byron in Hunters Village
DELETE FROM spawnlist WHERE npc_templateid = 30711;
INSERT INTO `spawnlist` VALUES
(NULL,'aden14_npc2320_116',1,'30711',114892,74265,-2559,0,0,43862,60,0,0);

-- fix Doom Blade Tanatos (RB)
DELETE FROM raidboss_spawnlist WHERE npc_templateid = 25248;
INSERT INTO raidboss_spawnlist (boss_id, amount, loc_x, loc_y, loc_z, heading, respawn_min_delay, respawn_max_delay, respawn_time, currentHp, currentMp) VALUES
(25248, 1, 176854, -8700, -3492, 0, 43200, 129600, 0, 399054, 3274);

Untill geodata is more retail like this is the only way.
 
Upvote 0
Back