• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Znote !shop Problem

monstruo1

New Member
Joined
May 13, 2013
Messages
36
Reaction score
0
Problem:
Code:
[24/7/2013 11:45:35] [Error - TalkAction Interface] 
[24/7/2013 11:45:35] data/talkactions/scripts/znoteshop.lua:onSay
[24/7/2013 11:45:35] Description: 
[24/7/2013 11:45:35] (LuaInterface::luaGetItemWeight) Item not found

[24/7/2013 11:45:35] [Error - TalkAction Interface] 
[24/7/2013 11:45:35] data/talkactions/scripts/znoteshop.lua:onSay
[24/7/2013 11:45:35] Description: 
[24/7/2013 11:45:35] data/talkactions/scripts/znoteshop.lua:27: attempt to compare boolean with number
[24/7/2013 11:45:35] stack traceback:
[24/7/2013 11:45:35] 	data/talkactions/scripts/znoteshop.lua:27: in function <data/talkactions/scripts/znoteshop.lua:2>

Znoteshop.lua
Lua:
-- Znote Shop v1.0 for Znote AAC on TFS 0.2.13+ Mystic Spirit.
function onSay(cid, words, param)
	local storage = 54073 -- Make sure to select non-used storage. This is used to prevent SQL load attacks.
	local cooldown = 15 -- in seconds.
	
	if getPlayerStorageValue(cid, storage) <= os.time() then
		setPlayerStorageValue(cid, storage, os.time() + cooldown)
		local accid = getAccountNumberByPlayerName(getCreatureName(cid))
		
		-- Create the query
		local orderQuery = db.storeQuery("SELECT `id`, `type`, `itemid`, `count` FROM `znote_shop_orders` WHERE `account_id` = " .. accid .. " LIMIT 1;")
		
		-- Detect if we got any results
		if orderQuery ~= false then
			-- Fetch order values
			local q_id = result.getDataInt(orderQuery, "id")
			local q_type = result.getDataInt(orderQuery, "type")
			local q_itemid = result.getDataInt(orderQuery, "itemid")
			local q_count = result.getDataInt(orderQuery, "count")
			result.free(orderQuery)
			
			-- ORDER TYPE 1 (Regular item shop products)
			if q_type == 1 then
				-- Get wheight
				local playerCap = getPlayerFreeCap(cid)
				local itemweight = getItemWeight(q_itemid, q_count)
					if playerCap >= itemweight then
						db.query("DELETE FROM `znote_shop_orders` WHERE `id` = " .. q_id .. ";")
						doPlayerAddItem(cid, q_itemid, q_count)
						doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Congratulations! You have recieved ".. q_count .." "..getItemName(q_itemid).."(s)!")
					else
						doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "Need more CAP!")
					end
			end
			-- Add custom order types here
			-- Type 2 is reserved for premium days and is handled on website, not needed here.
			-- Type 3 is reserved for character gender(sex) change and is handled on website as well.
			-- So use type 4+ for custom stuff, like etc packages.
			-- if q_type == 4 then
			-- end
		else
			doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "You have no orders.")
		end
		
	else
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Can only be executed once every "..cooldown.." seconds. Remaining cooldown: ".. getPlayerStorageValue(cid, storage) - os.time())
	end
	return false
end
 
could anybody help out? same issues here..
using tfs _02 and its throwing this same error.

[0:2:59.034] [Error - TalkAction Interface]
[0:2:59.037] data/talkactions/scripts/znoteshop.lua:eek:nSay
[0:2:59.039] Description:
[0:2:59.040] data/talkactions/scripts/znoteshop.lua:27: attempt to compare boolean with number
[0:2:59.047] stack traceback:
[0:2:59.048] data/talkactions/scripts/znoteshop.lua:27: in function <data/talkactions/scripts/znoteshop.lua:2>
 
Last edited:
Back
Top