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

    Mana and Heal leech effect?

    Hey Can I add a effect to heal and mana leech system? Using tfs 1.3 10.98
  2. EvilSkillz

    How can I benchmark scripts?

    Hey How can I benchmark scripts?
  3. EvilSkillz

    What "killed" RL Tibia for YOU?

    OTS Killed for me RL Tibia
  4. EvilSkillz

    Spell Utani Death Hur -Haste Spell-

    local combat = Combat() combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_GREEN) combat:setParameter(COMBAT_PARAM_AGGRESSIVE, false) combat:setParameter(COMBAT_PARAM_EFFECT, 6) combat:setParameter(COMBAT_PARAM_CREATEITEM, 1489) local condition = Condition(CONDITION_HASTE)...
  5. EvilSkillz

    Lua Cant figure how to teleport players when they kill creature

    To make it clear If you kill a monster it should create a teleport which teleports you to position 10,10,7 as explain?
  6. EvilSkillz

    TFS 0.X UH/IH together to EXURA/EXANA MORT

    Do you want a manarune script which works with SD at same time? How much should the manarune heal?
  7. EvilSkillz

    Team ISO Co-Developer

    Would like to know more information about the server :P
  8. EvilSkillz

    custom item crash

    You was my last hope thanks <3
  9. EvilSkillz

    TFS 0.X manarune problem

    Try this local exhaust = createConditionObject(CONDITION_EXHAUST) setConditionParam(exhaust, CONDITION_PARAM_TICKS, (getConfigInfo('timeBetweenExActions') - 1000)) function onUse(cid, item, fromPosition, itemEx, toPosition) local mana_min = (getCreatureMaxMana(cid) / 100) * 9 local...
  10. EvilSkillz

    Can i move spr/dat to another client?

    what do you mean with everything is corrupted? try to get item.otb from RME to your datapack ... don't forgot to copy your item.otb datapack first to prevent any edit lost
  11. EvilSkillz

    Lua when you step on the floor activate the lua function

    try this function onStepIn(cid, item, position, fromPosition) if(item.actionid > xxx and item.actionid < xxx) then doPlayerSendOutfitWindow(cid) end return true end also you can try this function onStepIn(cid, item, position, fromPosition) ifitem.actionid == xxxx...
  12. EvilSkillz

    Lua when you step on the floor activate the lua function

    it's simple ... in movements , make actionID on tile , and do onStepIn , onStepOut StepIn to active script , StepOut to remove it and back normal
  13. EvilSkillz

    is it possible to get 10.x sprites in a 8.6 client?

    i think they already did an update to fix spr and dat files for 8.60 to handle more sprites ... someone sent me the data before xd , but i don't remember where can i find them :/
  14. EvilSkillz

    Solved items.otb and items.dat

    that's weird . but can i ask a simple question .. in item.otb u created 5 ids for 1 weapon ! can u check your console for duplicated id ? maybe 33525 is conflicted with Statue
  15. EvilSkillz

    Is there a way to make minimum skill levels? Tfs 0.4

    Try this beginner code local playerVoc = getPlayerVocation(cid) function doPlayerAddSkill(cid, skill, amount, round) if(skill == SKILL__LEVEL) then return doPlayerAddLevel(cid, amount, round) end -- Magic Level for All if(skill == SKILL__MAGLEVEL) then if...
  16. EvilSkillz

    Is there a way to make minimum skill levels? Tfs 0.4

    you mean all vocations got same skill level ? or what ?
  17. EvilSkillz

    VB to Lua

    so what about this Switchoffset = GetOEMDRO(1045) PipeD = GetOEMDRO(1046) BeamW = GetOEMDRO(1047) BeamH = GetOEMDRO(1048) PipeR = (PipeD/2) BeamR = (BeamH/2) ClearZ1 = (BeamR + 0.500) ClearZ2 = (PipeR + 0.500) rapidZdist = 5.592 rapidZBOX = (rapidZdist - BeamR) - 0.500...
  18. EvilSkillz

    VB to Lua

    that simple ?
  19. EvilSkillz

    VB to Lua

    is there anyway to convert VB to LUA ? for example how can i convert this code If IsOutputActive(OUTPUT2) Then DeActivateSignal(OUTPUT2) Else ActivateSignal(OUTPUT2) End If
  20. EvilSkillz

    How can remove skills Club, sword, axe from client

    i think u can remove them from source .. so they don't get any packet sent to client ! but to remove the bar itself , i think u can use OTClient then !
Back
Top