• 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!

Recent content by Wanheda

  1. W

    Lua [TFS 1.3] Free Scripting Service 📝

    Hello Sarah, you could create a very simple script, it would be a creature spell, where a wave takes 50% of the player's life.
  2. W

    Lua [TFS 1.3] Free Scripting Service 📝

    how would it be to put a mc check, check ip ... ?
  3. W

    RevScripts I need help with change gold revscript

    local config = { [ITEM_GOLD_COIN] = {changeTo = ITEM_PLATINUM_COIN}, [ITEM_PLATINUM_COIN] = {changeBack = ITEM_GOLD_COIN, changeTo = ITEM_CRYSTAL_COIN}, [ITEM_CRYSTAL_COIN] = {changeBack = ITEM_PLATINUM_COIN} } local changeGold = Action() function changeGold.onUse(player, item...
  4. W

    Lua onKill Storage [OTX]

    Bump
  5. W

    Lua onKill Storage [OTX]

    Needed a script where each creature the player kills he adds x storage, and when he kills x amount he will be teleported. I tried to create something, but I couldn't, can someone help me? local kill = CreatureEvent("KillCreature") function kill.onKill(player, target) if target:isPlayer()...
  6. W

    TFS 1.X+ Exercise weapon / stage skill

    I added the rate skill system, but the exercise weapon script takes the skill configured in config.lua (rateSkill = 10). Is it possible to get the skill configured in the new skill rate system?
  7. W

    Dont use haste in certain area

    Thanks, worked now. I also had to change the addCondition to setCondition.
  8. W

    Dont use haste in certain area

    Lua Script Error: [Test Interface] data/spells/scripts/support/haste.lua data/spells/scripts/support/haste.lua:2: attempt to index global 'creature' (a nil value) stack traceback: [C]: in function '__index' data/spells/scripts/support/haste.lua:2: in main chunk [Warning -...
  9. W

    Dont use haste in certain area

    Lua Script Error: [Test Interface] data/spells/scripts/support/haste.lua data/spells/scripts/support/haste.lua:2: attempt to index global 'player' (a nil value) stack traceback: [C]: in function '__index' data/spells/scripts/support/haste.lua:2: in main chunk [Warning -...
  10. W

    Dont use haste in certain area

    I got this error. Lua Script Error: [Spell Interface] data/spells/scripts/support/haste.lua:onCastSpell data/spells/scripts/support/haste.lua:15: attempt to call global 'getThingPosition' (a nil value) stack traceback: [C]: in function 'getThingPosition'...
  11. W

    Dont use haste in certain area

    is it possible something like, from x place to x place can not use the spell haste? If anyone can help me, thank you.
  12. W

    Remove creature and kick player

    Someone help me? I need that after a few minutes the player is removed and the boss deleted from the configured area. local function removeBosst(fromArea1, fromArea2, bossName) for x = fromArea1.x, fromArea2.x do for y = fromArea1.y, fromArea2.y do for z = fromArea1.z...
  13. W

    Dodge System OTX 3.1

    Hello, someone would have to make available some dodge system, where he defends% of the damage received. I have a system, but it is not working, if someone can help me to correct the problem. function onHealthChange(creature, attacker, primaryDamage, primaryType, secondaryDamage, secondaryType...
  14. W

    Lua NPC Dicer error

    I have this error in a npc dicer and I do not know how to proceed. The mistake happens when I say H or L and gain, it does not return the money. OTX 3.0 Can someone help me? Here is the script. local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler)...
Back
Top