Page 1 of 1

Spawn table error

Posted: Mon Aug 24, 2015 1:53 am
by chromiumdj
Hellow guys! Updated my server from Stable to MASTER 2 days ago, now i got that issue and i have no idea how to fix it =S

Image

This happen when i try so spawn some monsters....

and ofc Custom_spawn table is enabled in cfg...

Re: Spawn table error

Posted: Mon Aug 24, 2015 2:02 am
by Zoey76
Probably you used an NPC ID for the template too big, maybe we need to upgrade the default values in SQL scripts :think:

Re: Spawn table error

Posted: Mon Aug 24, 2015 3:16 am
by chromiumdj
hmmm thats why out of range*, but i used that same numbers b4... total of 7 numbers...

Is there some easy way to find out the available ids ?

Re: Spawn table error

Posted: Tue Aug 25, 2015 10:13 am
by chromiumdj
I think i got it...

Image

Re: Spawn table error

Posted: Tue Aug 25, 2015 10:36 am
by chromiumdj
fixed here..

Code: Select all

  -`npc_templateid` mediumint(7) unsigned NOT NULL DEFAULT '0',

Code: Select all

  +`npc_templateid` mediumint(8) unsigned NOT NULL DEFAULT '0',
With 8 now i can use 7 numbers in one ID again ...