Druid Epic 1.5 Pre-Quest
Unfinished but started..
Code:
##################################################################################################################### But this enters him into NPC_TYPE (cut and paste into query) Code:
INSERT INTO npc_types Code:
INSERT INTO spawnentry Code:
INSERT INTO spawngroup Code:
INSERT INTO spawn2 |
Unable to edit, in spawn2 change second value to 117986.
|
Addition of Storm Giant Heart recipe to your database.. SQL query. Take into account a new recipe ID number would be as I am using the stock database.. Yours may be different and need to modify it.
Code:
DELETE FROM tradeskill_recipe WHERE id = 13334; Below is to add Earthy Loam into the forage table for Innothule Swamp (Id maybe different for you) and Pure Rain Water to PoStorms, and redwood seed to Growth plane. Code:
INSERT INTO forage (id, zoneid, Itemid, level, chance) Below is entry for Wrath Seed combine Code:
DELETE FROM tradeskill_recipe WHERE id = 13335; |
The most up-to-date dump of the PEQ Database (2015-02-13) used recipe_id 13334 as a Buckler recipe. The next unused recipe_id is 13375.
|
Quote:
|
Is there a way to auto increment an id via query in mysql? Going to look this up just wondering offtopic if someone knew.
|
When you insert anything into a table without the column 'id' specified, it will auto increment on its own. For example:
Code:
INSERT INTO `npc_types` (`name`) VALUES ('Test'); |
Thanks, rumagin through the docs for mysql 5.6.21 came up exactly as that. Or use AUTO_INCREMENT during table creation. Which seems silly if allready built in.. Thanks.
|
All times are GMT -4. The time now is 01:09 AM. |
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.