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

    RevScripts [TFS 1.3] 12.7 Rain of Arrows

    Try changing line 34 doAreaCombat to doAreaCombatHealth and see if it works.
  2. Heroid

    RevScripts [TFS 1.3] 12.7 Rain of Arrows

    Let me know if 1.3 doesn't have RevScript data/scripts local config = { lvlReq = 1, cooldown = 2000, combatType = COMBAT_PHYSICALDAMAGE, magicEffect = CONST_ME_HITAREA, distEffect = CONST_ANI_ARROW, dmg = {min = 100, max = 200}, rounds = 10, -- Amount of rounds...
  3. Heroid

    Lua [TFS 1.4.2] spell/rune problem.

    Change player:getVocation() to player:getVocation:getId()
  4. Heroid

    Action [Item] Quiver

    This post is from 2009 btw. 😝
  5. Heroid

    Lua Problem with rewards

    Since you’re using onKill this will trigger several times depending on how many players are attacking the monster, try to use onDeath instead and register the event to the monster. Or you could just remove the damageMap loop and use creature instead I guess since the creature argument already is...
  6. Heroid

    Lua Spell damage formula

    I think it would return 0 actually, but still always a good idea, if attack > 0 then perhaps.
  7. Heroid

    [HELP] It can only be wielded properly

    You might be able to equip it but not attack with it? I don’t remember exactly how it works honestly
  8. Heroid

    Lua Spell damage formula

    You can use something like this to get the attack of a weapon: local weapon = player:getSlotItem(CONST_SLOT_LEFT) if weapon then local attack = weapon:getAttack() end
  9. Heroid

    Help Use X Item in Monster

    data/scripts local config = { runeName = "Teleport Rune", runeId = 2275, level = 100, -- Level to use the rune magicLevel = 5, -- Magic level to use the rune cooldown = 1, -- Cooldown before you can use the rune again (seconds) magicEffect = CONST_ME_MAGIC_BLUE, --...
  10. Heroid

    [HELP] Create New Item

    Try running ItemEditor as administrator.
  11. Heroid

    Lua TFS1.5 Thais Lighthouse Quest Support

    See if this will fix it, otherwise you should add some print statements to identify where the issue occurs. function onUse(player, item, fromPosition, target, toPosition, isHotkey) --first lever to open the ladder if item.actionid == 50023 then local laddertile =...
  12. Heroid

    Snowball tfs 1.5 Problem

    In lib: SnowBall_Configurations = { Event_Duration = 1, -- Minutos de duraçăo do jogo.
  13. Heroid

    Snowball tfs 1.5 Problem

    I did remove the text box that pops up after the event has ended to show the rankings since I figured that's what was debugging the client. Just a heads up.
  14. Heroid

    Snowball tfs 1.5 Problem

    Try this lib: -- This script is part of Snow Ball War -- Copyright by Ciroc Developer -- -- This program is free software: you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation, either version 3 of the...
  15. Heroid

    Autoloot problem tfs 1.5

    Try this: -- !autoloot clear -- !autoloot list -- !autoloot add, itemName / ex: !autoloot add, fire sword -- !autoloot remove, itemName / ex: !autoloot remove, fire sword local autoloot = { freeAccountLimit = 10, storageBase = 50000, premiumAccountLimit = 20, } local...
  16. Heroid

    Snowball tfs 1.5 Problem

    I added loadEvent() temporary in there to see if you had called that function anywhere since I could not find it in any of the scripts you sent. You should probably remove that from line 32 and add it on startup instead. Just something like this: data/scripts local globalEvent =...
  17. Heroid

    Lua TFS1.5 Thais Lighthouse Quest Support

    Any errors in console?
  18. Heroid

    Snowball tfs 1.5 Problem

    See if this changes anything: function startGame(rounds) if rounds == 0 then if #CACHE_GAMEPLAYERS < SnowBall_Configurations.Event_MinPlayers then for _, players in ipairs(CACHE_GAMEPLAYERS) do...
  19. Heroid

    Lua TFS1.5 Thais Lighthouse Quest Support

    I realized you figured it out after I already wrote this, so I'll post it anyway, maybe someone can learn something from it or you can improve your script somehow. We want to use a MoveEvent instead of an Action for this, since we want something to happen when we step on something, instead of...
  20. Heroid

    Snowball tfs 1.5 Problem

    Are there any more scripts you have that are related to this?
Back
Top