Hey there otland,
I am using the latest Znote AAC, I added this function for the shop system so that I can add items to shop through database.
This is working for the tables and shop list, but I am unable to purchase the first item on the list, I cannot figure out why. I am not getting any errors in my log, every other item purchase works as it should. What would be the difference between adding items to the table category_items from this function versus config.php shop_offers? When the items are added to config['shop_offers'], there is no issues. Thank you!
Website link is as follows
I am using the latest Znote AAC, I added this function for the shop system so that I can add items to shop through database.
PHP:
function get_shop_offers() {
return mysql_select_multi("SELECT `type`, `itemid`, `count`, `description`, `points` FROM `znote_shop`;");
}
This is working for the tables and shop list, but I am unable to purchase the first item on the list, I cannot figure out why. I am not getting any errors in my log, every other item purchase works as it should. What would be the difference between adding items to the table category_items from this function versus config.php shop_offers? When the items are added to config['shop_offers'], there is no issues. Thank you!
Website link is as follows