• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. K

    Lua Body of summoned creature

    Does anyone know how to make the summoned creature not leave a body when it dies, both player and monster summons? Just give me a tip on how to do it, and I'll do the rest with the help of chatgpt for : tfs 0.3.6
  2. K

    Lua quick help on this script

    add this message (boosted loot) in this script, when the monster is killed. ex: Loot of a bear: meat (boosted loot).
  3. K

    Lua help with this script

    Can someone modify this script to work on tfs 0.3.6? function onStatsChange(cid, attacker, type, combat, value) -- This should block all damage monster cause on eachother expect player summons if isMonster(cid) and isMonster(attacker) then local master =...
  4. K

    Lua is it possible to make it work in tfs 0.3.6

    weapon.lua ---------------------------------------- function onTargetCreature(creature, target) return target:registerEvent("lifesteal") end local combat = Combat() combat:setParameter(COMBAT_PARAM_BLOCKARMOR, 1) combat:setParameter(COMBAT_PARAM_BLOCKSHIELD, 1) combat:setParameter(COMB...
  5. K

    C++ imbuiment mods 8.6

    I would like a system where the player uses an item on it, and when it hits the monster or another player it fills up some of the mana and life as a percentage of the damage caused, and with a duration of two hours after that the player has to use the item again. tfs 0.3.6
  6. K

    Lua Imbuement system 8.6

    I would like a system where the player uses an item on it, and when it hits the monster or another player it fills up some of the mana and life as a percentage of the damage caused, and with a duration of two hours, after which the item has to be used again. tfs 0.3.6
  7. K

    C++ put 2 hour exhaustion to be able to use another item again

    local config = { effect = 503 -- } function onUse(cid, item, fromPosition, itemEx, toPosition) doCreatureAddMana(cid, getCreatureMaxMana(cid)) doRemoveItem(item.uid) doCreatureSay(cid, "Craack..", TALKTYPE_ORANGE_1, cid) return true end
  8. K

    TFS 0.X set a time of 2 hours to be able to use the item again

    version 0.3.6 tfs local config = { effect = 0, -- textType = 0, -- msg = "Mana Refilled." -- } function onUse(cid, item, fromPosition, itemEx, toPosition) doCreatureAddMana(cid, getCreatureMaxMana(cid)) doRemoveItem(item.uid, 1)...
Back
Top