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

Search results

  1. Sttorm

    Storage for equip actionid

    @Apollos Thank you! I do not have much experience with this version of TFS, even more that I do not speak English and use translator @sakero <movevent event="Equip" actionid="9191" slot="ring" script="item.lua" /> <movevent event="DeEquip" actionid="9191" slot="ring" script="item.lua"...
  2. Sttorm

    Storage for equip actionid

    @sakero All items that have this id action will have this effect.
  3. Sttorm

    Addons on level Tfs 0.4

    @Yaboihunna local t = { -- [level] = addon_id [10] = 1, [20] = 2, [30] = 3 } function onAdvance(cid, skill, oldLevel, newLevel) if skill == SKILL__LEVEL and oldLevel < newLevel then local x = t[newLevel] if x then doPlayerAddAddons(cid...
  4. Sttorm

    Storage for equip actionid

    @sakero it's practical to use movements local storage = 8345 local action_id = 9191 function onEquip(player, item, slot) if item:getActionId() == action_id then self:setStorageValue(storage, 1) return true end end function onDeEquip(player, item, slot) if...
Back
Top