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

Solved help with script login

titokere

Member
Joined
May 31, 2014
Messages
38
Reaction score
7
need give this items in the Backpack 1988 ID
not in the hands.



function onLogin(cid)
if getPlayerStorageValue(cid, 19892) < 0 then
setPlayerStorageValue(cid, 19892, 1)

Player(cid):addItem(2666, 1, false)
Player(cid):addItem(8704, 10, false)
 
Why does it matter so much that it doesn't go in their hands?
Most players will have their hands full.. but as long as it is given to the player, I don't see why there should be an issue?

But If it's really an issue, I'd assume you'd need to do a source edit to make the hands invisible when checking for inventory space.
 
Thanks bro its because i am making 100% dawnport of tibia Rl
Solved

Player(cid):addItem(2512, 1, false, CONST_SLOT_RIGHT)
Player(cid):addItem(2379, 1, false, CONST_SLOT_LEFT)
Player(cid):addItem(2666, 1, false, CONST_SLOT_BACKPACK)
 

Similar threads

Back
Top