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

    Error MOD loot

    This takes to happen, but it happens Its not every time, after a long time botting testing server show me it...
  2. L

    Error MOD loot

    Why this error? How to fix? Console Error: [8:3:29.872] [Error - CreatureScript Interface] [8:3:29.872] In a timer event called from: [8:3:29.872] local t = { [8:3:29.872] item = 11393, [8:3:29.872] slot = CONST_SLOT_NECKLACE, [8:3:29.872] newRate = 2 [8:3:29.872] } [8:3:29.872] local...
  3. L

    How to change SKILLS losses on death

    I'm on right way? local value_shield if (getPlayerSkill(cid, SKILL_SHIELD) >= 1 and getPlayerSkill(cid, SKILL_SHIELD) <= 20 ) then value_shield = 0 elseif (getPlayerSkill(cid, SKILL_SHIELD) >= 21 and getPlayerSkill(cid, SKILL_SHIELD) <= 40 ) then value_shield = 1 elseif...
  4. L

    How to change SKILLS losses on death

    There is a way to get doPlayerAddSkillTry doPlayerAddExp ML? And get for exemple: if(skills >= 1 && <= 50) { when die -1 skills } else if(skills >= 51 && <= 60) { when die -2 skills } ....
  5. L

    How to change SKILLS losses on death

    Oh i know make onplayerdeath base I asked about lua functions change xp/skills rates
  6. L

    How to change SKILLS losses on death

    I saw on internet is not good use scripts onplayerdeath its right? and you could give me a basE?
  7. L

    How to change SKILLS losses on death

    How to change skill losses when player die? I want to increase 5 times more than the current But i don't want change exp on death... Only SKILLS and ML In my config.lua my deathlosspercent is deathLostPercent = 20 I'm using 0.4
  8. L

    Lua Compare SKILL sword > SKILL club

    So table is like a object in java? I not know so much, but to acess methods need... table.x i need practice and search, its nice, ty did u found wtf this script is adding club skills? i will sleep and see it tomorrow again, cause i dont know why its happen
  9. L

    Lua Compare SKILL sword > SKILL club

    Arrays are confusing to me... Im studyng.. Ty, i will try re-write Did u found why its buging and adding club skills?
  10. L

    Lua Compare SKILL sword > SKILL club

    Yeah, but im newbie, im just editing this script, i not made Im training to made more shorts codes
  11. L

    Lua Compare SKILL sword > SKILL club

    Ty man! And srry, i didnt post full code cause is so long :) I post on pastbin to be nice on forum Full code: http://pastebin.com/m4NuqKfe storages.length 1 = short 2 = medium 3 = long storages.difficult 1 = easy 2 = medium 3 = hard
  12. L

    Lua How to use just int not float number

    Thank YOU!
  13. L

    Lua Compare SKILL sword > SKILL club

    I do not understand why is not working local shieldqnt shieldqnt = math.ceil(getPlayerRequiredSkillTries(cid, SKILL_SHIELD, getPlayerSkillLevel(cid, SKILL_SHIELD) + 1)/3000) * (getPlayerStorageValue(cid, storages.length) * 3) * (getPlayerStorageValue(cid, storages.difficult) * 1) local...
  14. L

    Lua How to use just int not float number

    How to use just number like a int, not like a float Ex: I want 1 Not 1.023902302 On this msg if (getPlayerStorageValue(cid, storages.delay) - os.time()) > 0 then talkState[talkUser] = 0 doPlayerPopupFYI(cid, 'You need wait '.. hour ..'h and '..minutes..'min. To finish...
  15. L

    Lua Compare SKILL sword > SKILL club

    local axeskill = getPlayerSkillLevel(cid, SKILL_AXE) local swordskill = getPlayerSkillLevel(cid, SKILL_CLUB) local clubskill = getPlayerSkillLevel(cid, SKILL_SWORD) if (axeskill > swordskill and axeskill > clubskill) then doPlayerAddSkillTry(cid, SKILL_AXE...
  16. L

    Lua OTClient Compile

    bump
  17. L

    Linux Help to install RME on LUBUNTU

    Ty, so much! If someone need know where is this folder is: /root/rme
  18. L

    Lua OTClient Compile

    but i just follow the tutorial, why did this happen?
  19. L

    Lua OTClient Compile

    oh sorry! it is: File or directory not found
Back
Top