I am a priest in game so i will revive the thread, with requests and issues i see
1. i have added additional table on my server as shown above, but i can never get the additional tables to show up, i am working on that
2. in order to adjust percentages of the groundspawn items table , we need to add a field for % this is to support (like on live) where some node types were adjust by soe to give out more of certain items ie, on Dens, instead of equal chance to get meat, they have it around 33% meat,67% pelt. or since there are also foundations, spellshards now, that are rarer than the rares you can put 50% on rare and 25% each on foundation/spellshards the item is determined after the harvest1,harvest3 random and the item id of the 10+rare item
here is the table alteration to be added please
Code: Select all
ALTER TABLE `xxxxxx`.`groundspawn_items`
ADD COLUMN `plus_rare_id` INT(10) UNSIGNED DEFAULT 0 NOT NULL AFTER `item_id`,
ADD COLUMN `percent` FLOAT UNSIGNED DEFAULT 0 NOT NULL AFTER `grid_id`;
the web editor server\groundspawns will need updated to support the new colums
and change the is rare column to not be true false but no,yes,imbue,spellshard,foundation
once that is complete i will commit code to make use of it