Jump to content

billykitty

Members
  • Posts

    2
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    California, USA

billykitty's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Incredible program! Thank you! But I've found a bug in the GObjects tab in SkyStudio 0.651. I went to the website to report it but I couldn't see any way to leave or email a comment or reply, so I'm reporting it here and PMing Pyro. If you click on the GObject tab and pull up an object, then go to Quest Relations and modify the Starts quest and/or Ends quest, then click the Generate SQL button, the sql is incorrect. If you click the Save button, the program uses the incorrect sql as well. The issue is the sql that is generated modifies the creature_questrelation and creature_involvedrelation tables instead of the gameobject_questrelation and gameobject_involvedrelation tables. Steps to reproduce (tested on ArkDB_r2.7.0_CATA_4.0.6a_05-02-2012 database): 1. Click GObjects, enter 270 and press Enter 2. Click GObjects again, since program switches to NPC tab, a minor bug 3. GObject should be "Unguarded Thunder Ale Barrel" 4. Click Quest Relations tab, then click the Load Quest Relations button 5. Starts quest is set to 311 Return to Marleth 6. In the Ends quest section click Add Quest 7. Enter 310, click OK to add 310 Bitter Rivals 8. Click the Generate SQL button 9. The sql shown is: DELETE FROM `creature_questrelation` WHERE `id` = 270; INSERT INTO `creature_questrelation` (`id`,`quest`) VALUES (270,311); DELETE FROM `creature_involvedrelation` WHERE `id` = 270; INSERT INTO `creature_involvedrelation` (`id`,`quest`) VALUES (270,310); It should be: DELETE FROM `gameobject_questrelation` WHERE `id` = 270; INSERT INTO `gameobject_questrelation` (`id`,`quest`) VALUES (270,311); DELETE FROM `gameobject_involvedrelation` WHERE `id` = 270; INSERT INTO `gameobject_involvedrelation` (`id`,`quest`) VALUES (270,310); Thanks again for the awesome program! :mellow:
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.