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

when I dont have Places in the backpack I can Not Change Money and no dro in the floor

jareczekjsp

Member
Joined
Jan 30, 2023
Messages
191
Reaction score
9
GitHub
Jarek123
Hello Guys I have Problem When I dont have places in the backpack and change money from platinium to gold Money is in the floor and how I can do ,when I dont have places in the backpack I can not change money ?

OTX 2.6
8.6
 
function onUse(cid, item, frompos, item2, topos)
if item.itemid == 2148 and item.type == 100 then
doRemoveItem(item.uid,item.type)
doPlayerAddItem(cid,2152,1)
doPlayerSendTextMessage(cid,22,"You have changed 100 gp to 1 platnium coin")
elseif item.itemid == 2148 and item.type < 100 then
doPlayerSendTextMessage(cid,22,"You have to got 100 gp's to change for platinum coin")
end
end
 
Back
Top