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

solved

  1. J

    Help add custom thing in script of obsidian knife tfs 1.2

    someone help me add in this script, players will gain 200 of experience only when take a skin of creatures, and receive a white msg on screen "you found a skin" If fail, will not receive nothing... no msg and no experience Thanks My Script local config = { [5091] = { --...
  2. G

    Trying add new monster task Script Error TFS 1.2

    This is my script of task, is working perfectly. with just one monster in config. local config = { ['rat'] = {amount = 5, storage = 19000, startstorage = 5010, startvalue = 1} } function onKill(player, target) local player = type(player) == "userdata" and player or Player(player)...
  3. J

    Ropes don't work on sewer gates tfs 1.2

    Distribuition the forgotten server 1.2 Sewer gate id is 435, i tried put in all local on script but don't work.. This script my rope script is to 7.4 functions... are working but with sewer gates not :/ local OPENED_HOLE = {293, 294, 385, 476, 435, 482, 483, 594, 595, 607, 609, 610, 615, 385...
  4. G

    Change !online msg TFS 1.2

    change for only "players name" not show level too local maxPlayersPerMessage = 120 function onSay(player, words, param) local hasAccess = player:getGroup():getAccess() local players = Game.getPlayers() local onlineList = {} for _, targetPlayer in ipairs(players) do...
  5. L

    Solved Where are the scripts for potions? TFS 1.2

    I just want to modify how much does the potions heal, but i couldn't find it Sorry for the dumb question D: action/scripts/other/potions.lua local berserk = Condition(CONDITION_ATTRIBUTES) berserk:setParameter(CONDITION_PARAM_SUBID, 7) berserk:setParameter(CONDITION_PARAM_TICKS, 10 * 60 * 1000)...
  6. J

    Premium Scroll 1.2

    How can i add effect on character "Blue" using this item? my script above function onUse(player, item, fromPosition, target, toPosition, isHotkey) player:addPremiumDays(30) player:sendTextMessage(MESSAGE_EVENT_ADVANCE, "You have received 30 premium days, please relog.")...
  7. Z

    Lua Spell TFS 1.3

    Guys I'm passing a spell from 8.6 to version 10.98 can anyone tell me what's wrong with it? local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_ICEDAMAGE) combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_GIANTICE) combat:setFormula(COMBAT_FORMULA_LEVELMAGIC, -4.5, -400...
  8. armyman

    Rope action like 7.4 TFS 1.2

    I need a action of my rope in server 7.72 to not work with item or player in rope spot. this is my rope script local OPENED_HOLE = {294, 383, 469, 470, 482, 482, 485, 489, 430} local OPENED_TRAP = {462} local DOWN_LADDER = {369, 370, 408, 409, 427, 428, 3135, 3136, 5545, 5763} local ROPE_SPOT...
  9. armyman

    Npc problem OTX 3

    I got this error in console when i talk with him. Lua Script Error: [Npc interface] data/npc/scripts/aldee.lua:onCreatureSay data/npc/scripts/aldee.lua:12: attempt to call method 'AddFocus' (a nil value) stack traceback: [C]: in function 'AddFocus'...
  10. armyman

    Help to Spellbook Fix

    I need help to fix my spellbook, The Spellbook does not work Imgur: The most awesome images on the Internet Actions/ Spellbook.lua function onUse(cid, item, frompos, item2, topos) local count = getPlayerInstantSpellCount(cid) local text = "" local t = {} for i=0, count-1 do...
  11. Crixpx

    Lua add tibia coins every hour by charge

    Hello :D I have edited this script so that every one of the characters connect you to a load every 1 hour with a limit of 5 loads "5 hours" to complete the 5 hours of as a reward 25 coins and the time will be saved even when disconnected so that Continue running the time when you connect and...
  12. armyman

    Problem creatures corpes

    anyone help me with creatures in my server corpes no change for other stage of degradation and no disappear i'm using avesta distro
  13. armyman

    Change Regeneration Mana/Health

    What file i edite for it? i'm using avesta destribuition
  14. armyman

    Script Premium Bridge Rook (avesta)

    Anyone have this script please? :(
  15. armyman

    Items Editor for 7.4

    anyone have it?
  16. armyman

    Can i put cast in my server?

    I can? how? any source file? anyone can help me?
  17. armyman

    Help to fix npc delay

    Anyone can help to fix npc delay msg? i talk with him, i think 1 or 2 seconds after him reply
  18. armyman

    Some help to find files

    I need help to find files to compile my datapack... I have sources, but idk what sdk and boost i need download to do it, someone can help me? 7.4 datapack the server is working with Realesta_Server engine
  19. R

    C++ Wand damage problem

    EDIT: nevermind, I should have written > minChange and >maxChange, but my dumbass brain wrote >0 int32_t WeaponWand::getWeaponDamage(const Player* player, const Creature*, const Item*, bool maxDamage /*= false*/) const { if (maxDamage) { return -maxChange; } return...
  20. A

    Lua Paralyze rune

    Hi guys, I wonder is it possible to make paralyze rune to last at least 500-750 ms even if anyone used haste or healing spell right after being paralyzed? I am thinking about either making something in paralyze rune script what will block removing the condition by the time or to add any delay in...
Back
Top