Jump to content

noyu

Members
  • Posts

    3
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Everything posted by noyu

  1. This problem is very old on my server. When you have a quest that asks an item that is not a "quest item", the objectives are completed normally, but when you are in front of the npc you cannot click on "terminate" it doesn't work. When you click the button, it seems to do nothing at all, and the quest is unfinished. This problem happens with all the quests that require a non quest item. example : http://www.wowhead.com/quest=9204 I found a solution but it's not very cool for players, they have to get the objectives before getting the quest and then it's works Sorry for my bad english. My server info : Mangos One r1158, sd2 for mangos 10513+, UDB 0.10.5(365) for mangos 6928 with SD2 for rev 812)
  2. Ok prob solved in "class.items.php", "function GetItemData" The sql query ask for "FlagsExtra", but in my database it's "ExtraFlags", so that's why the $itemdata was NULL (don't forget to edit the compatibility fix under the query too) here is the right code : public function GetItemData($itemID) { $itemData = array(); Armory::$wDB->SkipNextError(); $itemData = Armory::$wDB->selectRow("SELECT `name`, `Quality`, `ItemLevel`, `displayid`, `SellPrice`, `BuyPrice`, `Flags2`, `RequiredDisenchantSkill` FROM `item_template` WHERE `entry`=%d LIMIT 1", $itemID); if(!$itemData) { $itemData = Armory::$wDB->selectRow("SELECT `name`, `Quality`, `ItemLevel`, `displayid`, `SellPrice`, `BuyPrice`, `ExtraFlags`, `RequiredDisenchantSkill` FROM `item_template` WHERE `entry`=%d LIMIT 1", $itemID); $itemData['Flags2'] = $itemData['ExtraFlags']; // For compatibility unset($itemData['ExtraFlags']); } return $itemData; } Hope it will help someone else
  3. !hello ! Thanks for this awesome armory like, but i have a little problem : (syntax error xml..) Notice: Undefined index: displayid in /var/www/armory/item-info.php on line 61 Notice: Undefined index: ItemLevel in /var/www/armory/item-info.php on line 63 Notice: Undefined index: Quality in /var/www/armory/item-info.php on line 65 Notice: Undefined index: SellPrice in /var/www/armory/item-info.php on line 78 Notice: Undefined index: BuyPrice in /var/www/armory/item-info.php on line 78 Notice: Undefined index: RequiredDisenchantSkill in /var/www/armory/item-info.php on line 109 I think there is a problem withe the GetItemData function ? (i did all sql updates, and i didn't found somthing wrong in the GetItemData function) The tooltips works great, and shearch too, but the display page for a particular item get me this error sorry for my bad english
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use