• 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. I

    TFS 0.X Error Utito tempo

    utito tempo doesnt give skill boost using item with this script, how to fix it? local condition1 = createConditionObject(CONDITION_ATTRIBUTES) setConditionParam(condition1, CONDITION_PARAM_TICKS, -1) setConditionParam(condition1, CONDITION_PARAM_SKILL_CLUB, 16) setConditionParam(condition1...
  2. I

    elemental weapons over damage

    cyclops has 260 hp and elemental melee weapon deal over damage 1656888233 how to fix it
  3. I

    TFS 0.X movements condition atribute

    local condition1 = createConditionObject(CONDITION_ATTRIBUTES) setConditionParam(condition1, CONDITION_PARAM_TICKS, -1) setConditionParam(condition1, CONDITION_PARAM_SKILL_CLUB, 50) setConditionParam(condition1, CONDITION_PARAM_SKILL_SWORD, 50) setConditionParam(condition1...
  4. I

    Ese item and move item same time

    where i edit for use item and move item same time? ex: use mana potion and looting monsters 8.60 otx 2.8
  5. I

    Compile error

    how fix this compile otx 2.8
  6. I

    Decreases damage for each attack

    I did this spell, but i don't know how decrease damage for each iteration local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_ICEDAMAGE) function onGetFormulaValues(cid, level, maglevel) local levelTotal = level / 5 local min = levelTotal + (maglevel *...
  7. I

    Use 100x item if have 100 item

    local config = { [12782] = {exp = 97001, lvl = 79001, typ3="Hitpoints"}, [12783] = {exp = 97002, lvl = 79002, typ3="Manapoints"}, [12784] = {exp = 97003, lvl = 79003, typ3="Magic Level"}, [12785] = {exp = 97004, lvl = 79004, typ3="Melee"}, --[?] = {exp = 97005, lvl = 79005...
  8. I

    bonus status

    -- HP -- conditionHP = createConditionObject(CONDITION_ATTRIBUTES) setConditionParam(conditionHP, CONDITION_PARAM_TICKS, -1) setConditionParam(conditionHP, CONDITION_PARAM_STAT_MAXHEALTH, n) setConditionParam(conditionHP, CONDITION_PARAM_BUFF, true)...
  9. I

    Weapon % max life

    it works, but is this the correct way to do it? local combat1 = createCombatObject() setCombatParam(combat1, COMBAT_PARAM_BLOCKARMOR, 1) setCombatParam(combat1, COMBAT_PARAM_BLOCKSHIELD, 1) setCombatParam(combat1, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) setCombatFormula(combat1...
  10. I

    Error SQLite

    how i can fix this? OTX 2.52 - 1557 8.6
  11. I

    Linux Compile OTX 2.8

    how i can compile my source file in linux mint? i have only files .cpp and .h
  12. I

    "-" before damage

    how i can add "-" before damage in otx 2.8?
  13. I

    Monster heal other after die

    function onKill(cid, target) if isCreature(cid) then if "N'Zoth Soul" == getCreatureName(target) then print(getCreatureName(target)) print(target) doCreatureAddHealth("N'Zoth", 99999999) end end return true end im trying to make a...
  14. I

    Talkaction

    local monsters = { ["Blightwalker"] = {storage = 59093}, ["Ghoul"] = {storage = 59094}, ["Grim Reaper"] = {storage = 59095} } function onSay(cid, words, param) if(not checkExhausted(cid, 666, 4)) then return true end local text = "Monsters\n" for m, s in...
  15. I

    Break Ring

    How i can make a ring that break after unequip? like the ring of favor and protection in dark souls
Back
Top