A guide to modifying a non tradeskill combine...
I'm trying to figure out how the 'combines' of non tradeskill items work. I have my own server, and am trying to fix/update some quests. One particular quest given by Lysbith McNaff in Halas (Warrior GM) is to collect 6 Goblin Ice Necklaces and combine in an 'Empty Bag'. This bag, according to the database notes, has ID: 17944 . The Goblin Ice Necklace has ID: 13897.
The combine did not work, so I'm wondering if there is anything I can do to MY database (peq_db latest release as of this date) I would like to be able to fix this, and test it out... once it works, submit the bug /quest submission request so it can be fixed. I thought I would be able to find a table in the database which listed the combine container, the combine components, and the combine item produced. Anyone have an idea? Thanks! Blaz |
why don't you use GeorgeS tradeskill editor? It far simpler to constrcut combines with it that in DB
also note that combines combining are not in anyway related to quests coding. |
Thanks, I'll give that a try.
I was able to fix the quest (yes, it isn't really a part of the quest script, but is related to the quest itself) I created a few entries into the tradeskill_entries database and a new recipe.. bingo. I'm sure thats what the editor does... but makes it a lot simpler. The more you know =/ Thanks for your reply! -Blaz |
This is an example that I recently used to write part of the Greenmist quest. These values get inserted directly into the database, and we'll follow right along with them.
Code:
INSERT INTO tradeskill_recipe VALUES(9712,'Greenmist Khukri Blade',75,0,0,1,0,'Greenmist Quest #8');
The second bit of code goes into the tradeskill_recipe_entries table. Code:
INSERT INTO tradeskill_recipe_entries VALUES(124067,9712,3894,1,0,0,0);
All that said, these would be the entries that you would need to add to your database. Please note the variables, which I will explain afterwards. Code:
INSERT INTO tradeskill_recipe VALUES(XXXX,'Bag of Ice Necklaces',75,0,0,1,1,'Ice Goblin Beads Quest'); Hope this little tutorial has helped! |
All times are GMT -4. The time now is 03:17 PM. |
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.