[Epic Release] Jonthe's Quest SQL Creator! menu

Shout-Out

User Tag List

Page 3 of 4 FirstFirst 1234 LastLast
Results 31 to 45 of 47
  1. #31
    Somedeveloperguy's Avatar Member
    Reputation
    1
    Join Date
    May 2009
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can you post it on another site as well? media fire gives me a javascript error

    [Epic Release] Jonthe's Quest SQL Creator!
  2. #32
    Glorianglorre's Avatar Active Member
    Reputation
    40
    Join Date
    Feb 2009
    Posts
    340
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thx man i will use this. But i think evoultionwow quest maker is bether.

  3. #33
    Hardball's Avatar Member
    Reputation
    147
    Join Date
    May 2008
    Posts
    61
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This is a good program however you have an issue. You are not able to create quests with an ' in the name. For example. If i were to put something in the text along the lines of

    You must obtain the Ancient's Key. Only then will you get the power.


    A line like this will break the entire query. I beleive when you coded this you forgot to make sure that the querys are wrapped in quote(") tags not apostrophe tags('). or use the proper \ commands for MySQL. If you can fix that I will plus rep the program - and you left a line to be created when you generate the SQL below the NPC's quest query there is still the line:

    INSERT INTO quests VALUES()

  4. #34
    chaoticd35's Avatar Site Donator
    Reputation
    44
    Join Date
    Jun 2007
    Posts
    337
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Excellent program, I love the way you did this, awesome.

    Do you think you could make a version that works with aspire/Hearthstone? You wouldn't have to edit the Quest starter and finisher because it works fine.

    Below is an example sql from Aspire(if you need this)

    Code:
    SET FOREIGN_KEY_CHECKS=0;
    -- ----------------------------
    -- Table structure for quests
    -- ----------------------------
    CREATE TABLE `quests` (
      `entry` int(11) unsigned NOT NULL,
      `ZoneId` int(11) NOT NULL default '0',
      `sort` int(11) NOT NULL default '0',
      `flags` int(11) unsigned NOT NULL default '0',
      `MinLevel` int(11) unsigned NOT NULL default '0',
      `questlevel` int(11) unsigned NOT NULL default '0',
      `Type` int(11) NOT NULL default '0',
      `RequiredRaces` int(11) NOT NULL default '0',
      `RequiredClass` int(11) NOT NULL default '0',
      `RequiredTradeskill` int(11) NOT NULL default '0',
      `RequiredTradeskillValue` int(11) NOT NULL default '0',
      `RequiredRepFaction` int(11) NOT NULL default '0',
      `RequiredRepValue` int(11) NOT NULL default '0',
      `SuggestedPlayers` int(11) unsigned NOT NULL default '0',
      `LimitTime` int(11) NOT NULL default '0',
      `SpecialFlags` int(11) unsigned NOT NULL default '0',
      `PrevQuestId` int(11) unsigned NOT NULL default '0',
      `NextQuestId` int(11) unsigned NOT NULL default '0',
      `srcItem` int(11) unsigned NOT NULL default '0',
      `SrcItemCount` int(11) unsigned NOT NULL default '0',
      `Title` text NOT NULL,
      `Details` text NOT NULL,
      `Objectives` text NOT NULL,
      `CompletionText` text NOT NULL,
      `IncompleteText` text NOT NULL,
      `EndText` text NOT NULL,
      `ObjectiveText1` text NOT NULL,
      `ObjectiveText2` text NOT NULL,
      `ObjectiveText3` text NOT NULL,
      `ObjectiveText4` text NOT NULL,
      `ReqItemId1` int(11) unsigned NOT NULL default '0',
      `ReqItemId2` int(11) unsigned NOT NULL default '0',
      `ReqItemId3` int(11) unsigned NOT NULL default '0',
      `ReqItemId4` int(11) unsigned NOT NULL default '0',
      `ReqItemCount1` int(11) unsigned NOT NULL default '0',
      `ReqItemCount2` int(11) unsigned NOT NULL default '0',
      `ReqItemCount3` int(11) unsigned NOT NULL default '0',
      `ReqItemCount4` int(11) unsigned NOT NULL default '0',
      `ReqKillPlayer` int(10) unsigned NOT NULL default '0',
      `ReqKillMobOrGOId1` bigint(11) NOT NULL default '0',
      `ReqKillMobOrGOId2` bigint(11) NOT NULL default '0',
      `ReqKillMobOrGOId3` bigint(11) NOT NULL default '0',
      `ReqKillMobOrGOId4` bigint(11) NOT NULL default '0',
      `ReqKillMobOrGOCount1` int(11) unsigned NOT NULL default '0',
      `ReqKillMobOrGOCount2` int(11) unsigned NOT NULL default '0',
      `ReqKillMobOrGOCount3` int(11) unsigned NOT NULL default '0',
      `ReqKillMobOrGOCount4` int(11) unsigned NOT NULL default '0',
      `ReqCastSpellId1` int(11) NOT NULL default '0',
      `ReqCastSpellId2` int(11) NOT NULL default '0',
      `ReqCastSpellId3` int(11) NOT NULL default '0',
      `ReqCastSpellId4` int(11) NOT NULL default '0',
      `RewChoiceItemId1` int(11) unsigned NOT NULL default '0',
      `RewChoiceItemId2` int(11) unsigned NOT NULL default '0',
      `RewChoiceItemId3` int(11) unsigned NOT NULL default '0',
      `RewChoiceItemId4` int(11) unsigned NOT NULL default '0',
      `RewChoiceItemId5` int(11) unsigned NOT NULL default '0',
      `RewChoiceItemId6` int(11) unsigned NOT NULL default '0',
      `RewChoiceItemCount1` int(11) unsigned NOT NULL default '0',
      `RewChoiceItemCount2` int(11) unsigned NOT NULL default '0',
      `RewChoiceItemCount3` int(11) unsigned NOT NULL default '0',
      `RewChoiceItemCount4` int(11) unsigned NOT NULL default '0',
      `RewChoiceItemCount5` int(11) unsigned NOT NULL default '0',
      `RewChoiceItemCount6` int(11) unsigned NOT NULL default '0',
      `RewItemId1` int(10) unsigned NOT NULL default '0',
      `RewItemId2` int(10) unsigned NOT NULL default '0',
      `RewItemId3` int(10) unsigned NOT NULL default '0',
      `RewItemId4` int(10) unsigned NOT NULL default '0',
      `RewItemCount1` int(10) unsigned NOT NULL default '0',
      `RewItemCount2` int(10) unsigned NOT NULL default '0',
      `RewItemCount3` int(10) unsigned NOT NULL default '0',
      `RewItemCount4` int(10) unsigned NOT NULL default '0',
      `RewRepFaction1` int(10) unsigned NOT NULL default '0',
      `RewRepFaction2` int(10) unsigned NOT NULL default '0',
      `RewRepFaction3` int(11) NOT NULL default '0',
      `RewRepFaction4` int(11) NOT NULL default '0',
      `RewRepFaction5` int(11) NOT NULL default '0',
      `RewRepValue1` int(10) NOT NULL default '0',
      `RewRepValue2` int(10) NOT NULL default '0',
      `RewRepValue3` int(11) NOT NULL default '0',
      `RewRepValue4` int(11) NOT NULL default '0',
      `RewRepValue5` int(11) NOT NULL default '0',
      `RewRepLimit` int(10) unsigned NOT NULL default '0',
      `RewTitle` int(11) unsigned NOT NULL default '0',
      `RewMoney` int(10) NOT NULL default '0',
      `RewBonusHonor` int(10) unsigned NOT NULL default '0',
      `RewXP` int(10) unsigned NOT NULL default '0',
      `RewSpell` int(10) unsigned NOT NULL default '0',
      `RewTalent` int(11) unsigned NOT NULL default '0',
      `CastSpell` int(10) unsigned NOT NULL default '0',
      `PointMapId` int(10) unsigned NOT NULL default '0',
      `PointX` float NOT NULL default '0',
      `PointY` float NOT NULL default '0',
      `PointOpt` int(10) unsigned NOT NULL default '0',
      `RequiredMoney` int(11) unsigned NOT NULL default '0',
      `ExploreTrigger1` int(10) unsigned NOT NULL default '0',
      `ExploreTrigger2` int(10) unsigned NOT NULL default '0',
      `ExploreTrigger3` int(10) unsigned NOT NULL default '0',
      `ExploreTrigger4` int(10) unsigned NOT NULL default '0',
      `RequiredQuest1` int(10) unsigned NOT NULL default '0',
      `RequiredQuest2` int(10) unsigned NOT NULL default '0',
      `RequiredQuest3` int(10) unsigned NOT NULL default '0',
      `RequiredQuest4` int(10) unsigned NOT NULL default '0',
      `RequiredQuest_and_or` int(3) NOT NULL default '0',
      `ReceiveItemId1` int(10) unsigned NOT NULL default '0',
      `ReceiveItemId2` int(10) unsigned NOT NULL default '0',
      `ReceiveItemId3` int(10) unsigned NOT NULL default '0',
      `ReceiveItemId4` int(10) unsigned NOT NULL default '0',
      `ReceiveItemCount1` int(10) unsigned NOT NULL default '0',
      `ReceiveItemCount2` int(10) unsigned NOT NULL default '0',
      `ReceiveItemCount3` int(10) unsigned NOT NULL default '0',
      `ReceiveItemCount4` int(10) unsigned NOT NULL default '0',
      `IsRepeatable` int(11) NOT NULL default '0',
      PRIMARY KEY  (`entry`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Quests System';
    
    -- ----------------------------
    -- Records 
    -- ----------------------------
    INSERT INTO `quests` VALUES ('5741', '405', '0', '8', '30', '33', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '6027', '0', '0', 'Sceptre of Light', 'The Burning Blade in Thunder Axe Fortress to the east is rumored to have acquired the Sceptre of Light from the Naga. Legend tells that the sceptre is able to sink entire cities under the great seas. The Burning Blade must not be allowed to possess such power.$B$BTo that end, you must retrieve the sceptre yourself!  It is held by a Burning Blade seer, who studies the sceptre from atop one of the Thunder Axe watchtowers.\r\n', 'Get the Sceptre of Light and then return it to Azore Aldamort at the tower in Ethel Rethor.\r\n', 'The elusive Sceptre of Light!  Your acquisition of it has removed a grave threat to the world.  Well done, $C, well done.', 'Do you have the Sceptre of Light?', '', '', '', '', '', '15750', '0', '0', '0', '1', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '529', '0', '0', '0', '0', '500', '0', '0', '0', '0', '0', '0', '3500', '0', '2900', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');

    The below sql is an example sql i edited to work for aspire/Hearthstone.




    Code:
    INSERT INTO `quests` VALUES ('14000', '0', '0', '2', '70', '80', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'Defend the raceway!', 'Slay 20 Lightning clouds to recieve 1 death token that can be used to exchange for custom weapons and armor.', 'The local raceway is in need of major help!! The Lightning clouds are endangering the surrounding area!
    Please race to their aid and destroy this vile and wicked creatures.', 'Thank you, $N, so much.  Thank you for helping, the world wil be a safer place due to heros like you!!', 'Have you slain 20 yet?', '', '', '', '', '', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '609', '0', '0', '0', '0', '150', '0', '0', '0', '0', '0', '0', '0', '0', '750', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '6122', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0');
    Last edited by chaoticd35; 06-04-2009 at 03:15 PM.

  5. #35
    Exacute's Avatar Active Member
    Reputation
    67
    Join Date
    Mar 2008
    Posts
    337
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice, +Rep
    You should try to add a function with required race & class to it.. would make it perfect..
    [/COLOR]

  6. #36
    Vakknah's Avatar Member
    Reputation
    1
    Join Date
    Sep 2008
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    where do i put it? when i try to run it i just get an error. App failed to start properly

  7. #37
    Leadx's Avatar Member
    Reputation
    3
    Join Date
    Oct 2007
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If you can, could you make the quest ID's larger in the next update because one quest I want to have it as chain quest has a way too big ID for this program. If you could, it would be cool.

  8. #38
    puffr's Avatar Banned
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great release

  9. #39
    hagii's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    cool gonna try it out

  10. #40
    Jonthe838's Avatar Contributor
    Reputation
    83
    Join Date
    Aug 2008
    Posts
    373
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi! thx for all the great feedback. My computer was down for 1.5month and now its down again -.- I'm working on fixing it. I think i need to buy a new motherboard but im going to try to fi it without a new :P I Still have the files for this so the projec aint lost. As soon as i get my comouter working i will update thsi L( thanks for ur understanding.
    I will create a aspire version, and add a few new options too
    Lines of Coding: |||||||||| Goal 1000
    Current: 677 Achived Goals: 500 Lines


  11. #41
    djen11's Avatar Member
    Reputation
    1
    Join Date
    Nov 2008
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    freat work

  12. #42
    caeon's Avatar Member
    Reputation
    13
    Join Date
    Jan 2008
    Posts
    53
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    column count doesnt match value count at row 1 Please help Thx! for quest maker but need it to work!

  13. #43
    heldrake's Avatar Member
    Reputation
    1
    Join Date
    Mar 2007
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks alot I am gonna give it a whirl lol. I hope I have the brain power to get it to work lol.

  14. #44
    baagel's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yeah you should either wrap them in

    "

    or

    `

  15. #45
    Tanner's Avatar Member
    Reputation
    2
    Join Date
    Dec 2007
    Posts
    37
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    [Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 's your prize!', 'Get to the top!', 'Grats!', '', '', '', '', '0', '0', '0', '0',' at line 1

    that's the error I get, can anyone help? I don't understand it

Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. [Epic Release] Ultimate Quest Maker [Arcemu/Latest Rev]
    By marco1234 in forum WoW EMU Programs
    Replies: 53
    Last Post: 08-22-2009, 09:21 AM
  2. [Release] Ai_Agents sql creator!
    By Power of Illuminati in forum WoW EMU Programs
    Replies: 9
    Last Post: 07-18-2008, 12:14 PM
  3. [Release] Fun MMOwned Quest :)
    By Spartansp in forum World of Warcraft Emulator Servers
    Replies: 44
    Last Post: 02-14-2008, 06:27 PM
  4. [RELEASE] Insanely Useful Quest NPC For PvP/Fun Servers
    By Xeneth in forum World of Warcraft Emulator Servers
    Replies: 14
    Last Post: 01-11-2008, 01:48 PM
  5. [EPIC RELEASE] Kobold v4 !!
    By latruwski in forum World of Warcraft Emulator Servers
    Replies: 10
    Last Post: 01-07-2008, 12:27 PM
All times are GMT -5. The time now is 08:53 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search