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

Lua TFS 0.4 8.60 Effect when using 3 items Weapons :: Non-Stop Effect in Player! when equipping in HANDS

Try this
movements.xml
XML:
<movevent type="Equip" itemid="ITEM_ID" slot="left-hand" event="function" value="script_name.lua"/>

movements-scripts
Lua:
function onEquip(cid, item, slot, boolean)
    doSendMagicEffect(getPlayerPosition(cid), EFFECT_ID)
    return true
end

SLOT_NAME & EFFECT_ID
 
Last edited:
Back
Top