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

Premium Scroll 1.2

jackl90

Member
Joined
Jul 25, 2017
Messages
249
Reaction score
12
How can i add effect on character "Blue" using this item?

my script above


Lua:
function onUse(player, item, fromPosition, target, toPosition, isHotkey)
    player:addPremiumDays(30)
    player:sendTextMessage(MESSAGE_EVENT_ADVANCE, "You have received 30 premium days, please relog.")
    item:remove(1)
    return true
end
 
for example:
Lua:
fromPosition:sendMagicEffect(CONST_ME_MAGIC_BLUE)
toPosition:sendMagicEffect(CONST_ME_MAGIC_BLUE)
player:getPosition():sendMagicEffect(CONST_ME_MAGIC_BLUE)
target:getPosition():sendMagicEffect(CONST_ME_MAGIC_BLUE)
 
Back
Top