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.
function get_shop_offers() {
return mysql_select_multi("SELECT `type`, `itemid`, `count`, `description`, `points` FROM `znote_shop`;");
}
This is...