Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use
viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
laikeriz
Posts: 48 Joined: Sun Feb 01, 2009 8:35 pm
Post
by laikeriz » Thu Aug 20, 2009 10:18 am
L2J Revision
3410 :
L2JDP Revision
6509 :
Hello. How do i delete all monsters from spawnlist?I tried
Code: Select all
DLETE FROM spawnlist WHERE npc_templateid = (SELECT id FROM npc WHERE type='L2Monster')
but it gives me error. Is there another way?
devo
Posts: 798 Joined: Mon Jun 15, 2009 1:19 pm
Post
by devo » Thu Aug 20, 2009 10:26 am
mb just use
General.properties
Code: Select all
# Don't load spawntable.# Default: FalseAltDevNoSpawns = [color=#BF0000]true[/color]
if you rly want to delete it from spawnlist table, just right click on it in navicat and "Empty Table"
or:
Code: Select all
DROP TABLE IF EXISTS `spawnlist`;CREATE TABLE `spawnlist` ( `id` int(11) NOT NULL auto_increment, `location` varchar(40) NOT NULL default '', `count` int(9) NOT NULL default '0', `npc_templateid` int(9) NOT NULL default '0', `locx` int(9) NOT NULL default '0', `locy` int(9) NOT NULL default '0', `locz` int(9) NOT NULL default '0', `randomx` int(9) NOT NULL default '0', `randomy` int(9) NOT NULL default '0', `heading` int(9) NOT NULL default '0', `respawn_delay` int(9) NOT NULL default '0', `loc_id` int(9) NOT NULL default '0', `periodOfDay` decimal(2,0) default '0', PRIMARY KEY (`id`), KEY `key_npc_templateid` (`npc_templateid`));
A hero of war is that what they see...
janiii
L2j Veteran
Posts: 4269 Joined: Wed May 28, 2008 3:15 pm
Location: Slovakia
Post
by janiii » Thu Aug 20, 2009 10:45 am
laikeriz wrote: L2J Revision
3410 :
L2JDP Revision
6509 :
Hello. How do i delete all monsters from spawnlist?I tried
Code: Select all
DLETE FROM spawnlist WHERE npc_templateid = (SELECT id FROM npc WHERE type='L2Monster')
but it gives me error. Is there another way?
Code: Select all
DELETE FROM spawnlist WHERE npc_templateid IN (SELECT id FROM npc WHERE type = 'L2Monster');
DO NOT EVEN TRY TO MESS WITH ME!
forum flOO der dancing dEVIL oper ♀
I don't give private support - PM will be ignored!
devo
Posts: 798 Joined: Mon Jun 15, 2009 1:19 pm
Post
by devo » Thu Aug 20, 2009 11:07 am
Ohhh silly me
you wanted to delete monsters
DD
A hero of war is that what they see...
laikeriz
Posts: 48 Joined: Sun Feb 01, 2009 8:35 pm
Post
by laikeriz » Thu Aug 20, 2009 4:29 pm
Thank you janiii
crnicholls
Posts: 28 Joined: Sat Nov 01, 2008 12:48 am
Post
by crnicholls » Thu Aug 20, 2009 5:35 pm
LOL I saw this thread while looking for some other info on why raidbosses are so messed up im running server ver 3410 with Dp 6509 and yea you may want to delete all mobs and start over, something has messed with the raidbosses p atk m atk speeds and run speeds. Feel free to point me in to the right forum to post this because this is craaazzyy LOL. Someone was drunk me thinks j/k
good thing im only running that pack as test server LOL
CRNicholls aka Moffet