• 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!

Need storage to trade with NPC

Creon

Well-Known Member
Joined
Aug 25, 2009
Messages
708
Reaction score
92
Location
United States
I've been trying to figure out how to make it so that you need storage 60000 to be able to trade with him, but I'm not quite sure how to do that.

Thanks in advance.
 
Lua:
function onTradeRequest(cid)
	if(getPlayerStorageValue(cid, 60000) == 1) then
		npcHandler:say("Let's trade!", cid)
		return true
	else
		npcHandler:say("You do not have the required prerequisites to trade.", cid)
		return false
	end
end

Change the texts to whatever you like. Fix your skype or pm me here if you need more help.
 
Back
Top