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

    TFS 0.X Caracter [] bug on upgrade system

    Why when i try to use caracter [] on perfect upgrade system it bugs? First upgrade works fine: 18:56 You see a [R] sabre (Atk:15, Def:12 +1). But on second thats what happen: 18:56 You see a [G][] sabre (Atk:18, Def:14 +1). Why? perfectupgradesystem.lua --PERFECT UPGRADE SYSTEM...
  2. zabuzo

    TFS 0.X how to define X many skills/lvls loss when player death

    i tried to put it to run, but not work :( i tried to die with a mage lvl 24, ml28, skills 0 when i die no errors was printed on console, but player become lvl 1 ml 0 full script now: function GetLevelLoss(playerLvl) local levelLoss = 0.0 -- get lvl lose if(playerLvl >= 1 and...
  3. zabuzo

    TFS 0.X how to define X many skills/lvls loss when player death

    i want this so much :(
  4. zabuzo

    TFS 0.X how to define X many skills/lvls loss when player death

    doPlayerSetLossSkill sets skills loss to 0, lvl/skills i tried to do it by myserlf, but idk, thats why i make the topic :( function onDeath(cid, corpse, deathList) -- 0 no drop skills and level for source default doPlayerSetLossSkill(cid, 0) -- get reduction bless local...
  5. zabuzo

    TFS 0.X how to define X many skills/lvls loss when player death

    U guys mean something like this? function onDeath(cid, corpse, deathList) -- zerar perdas doPlayerSetLossSkill(cid, 0) -- get reduction bless local totalblessreduction = 0.0 local eachblessreduction = 0.3 -- 5 blesses * eachblessreduction = 1.5 for i = 1, 5 do...
  6. zabuzo

    (Rookgaard) Novus Guild on Medivia.online

    is this rook pvp?
  7. zabuzo

    TFS 0.X how to define X many skills/lvls loss when player death

    i have no idea, i would like to make it to work, no matter where :(
  8. zabuzo

    TFS 0.X change some things in bonus party share exp x4

    be happy: Lua - Is possible check sharing exp (https://otland.net/threads/is-possible-check-sharing-exp.243688/#post-2366121) --- about the topic, no matter anymore, i don't want to do it anymore, i just post to help that other guy
  9. zabuzo

    TFS 0.X how to define X many skills/lvls loss when player death

    how to make this rulles: local totalblessreduction = 0.0 local eachblessreduction = 0.3 -- 5 blesses * eachblessreduction = 1.5 for i = 1, 5 do if(getPlayerBlessing(cid, bless[i])) then totalblessreduction += eachblessreduction end end if(skills >= 1 && skills <= 40)...
  10. zabuzo

    TFS 0.X define exacly how many skills player will drop on death

    Is it possible to define exactly how many skills players will gonna drop when die on LUA? Just like this in a script on death or something: local totalblessreduction = 0.0 local eachblessreduction = 0.3 -- 5 blesses * eachblessreduction = 1.5 for i = 1, 5 do if(getPlayerBlessing(cid...
Back
Top