• 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 [TFS 1.0] Can't play instruments in backpack?

Napes

Owner of napes.se
Joined
May 11, 2014
Messages
63
Reaction score
2
Location
Sweden
Hello!
A lot of my players have been complaining about the fact that you can't play instruments in your backpack, only on the ground..
Is this problem in the source or in some script?
Thanks!
 
data/actions/scripts/other/music.lua
Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)
     local pos = Player(cid):getPosition()
     if fromPosition.x ~= CONTAINER_POSITION then
         pos = fromPosition
     end
     Position(pos):sendMagicEffect(CONST_ME_SOUND_BLUE)
     return true
end
 
Back
Top