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

    How to Add Exausted time on Teleport

    Yes my movements: <movevent event="StepIn" actionid="13149" script="tpboss.lua"/> and i trying to use your script on tpboss.lua. :s
  2. myalitth

    How to Add Exausted time on Teleport

    i've tryied but... [Warning - Event::checkScript] Event onStepIn not found.
  3. myalitth

    How to Add Exausted time on Teleport

    Nice, but do you know how to make an simple action to put on teleport?
  4. myalitth

    How to Add Exausted time on Teleport

    I have an teleport with id 8058 Have any way to restrict access of the same player on this teleport for 24 hours? Like an Daily Teleport where some player only can enter one time per day.
  5. myalitth

    Global 860

    ip/website: traviglobal.com New Spells from tibia global! Asura Palace (Port Hope) Hero Fortress Edron Full Novas areas de Port Hope Prision de Oramond e Roshamuul (Barco Thais) Novas caves de edron Target Dummies (old) em edron 100% Svargrond, Zao e yalahar atualizados. Liberty Bay atualizado...
  6. myalitth

    Enter on Teleport only with x Capacity

    Solved Specially Thanks to Siegh! local vocation = {0} -- vocações que vai poder usar o teleport local pos = {x = 32005, y = 32363, z = 5} -- local para onde sera teleportado function onStepIn(cid, player, position, FromPosition) if getPlayerFreeCap(cid) <= 400 then if...
  7. myalitth

    Enter on Teleport only with x Capacity

    i need a simple script, where player enter on teleport if his cap is under 400... I have an teleport with action 2611 I've an script working like this... local vocation = {0} -- vocações que vai poder usar o teleport local pos = {x = 32005, y = 32363, z = 5} -- local para onde sera teleportado...
  8. myalitth

    Enter on Teleport only with x Capacity

    doesn't works :(
  9. myalitth

    Enter on Teleport only with x Capacity

    Is it possible to create a script in which only players with a capacity 400 or less can enter a teleport? Moveevent or actions... Thanks! TFS 0.3.6 / TFS 0.4
  10. myalitth

    Monster Can hit monster with Spell

    In my server Monsters when cast Spells can hit nears monsters, summons and normal monsters. Eg : When Demon use UE dont hit other DEMON with UE. Eg: Monster "spells exori" and get damage from all monsters in 4x4.. OtVersion : 8.6 TFS : 0.3.6/0.4
  11. myalitth

    MoveEvent Random teleport and check if player is on sqm

    trainingmonks.lua:37: in function <data/movements/scripts/trainingmonks.lua:1>
  12. myalitth

    Max Speed

    My max speed is only 750 i've tryied to change this on Player.h, but don't work. static constexpr int32_t PLAYER_MAX_SPEED = 4000; static constexpr int32_t PLAYER_MIN_SPEED = 10; TFS 1.2
  13. myalitth

    Lua Only in protection zone

    Don't work, i've tryied this weeks ago
  14. myalitth

    Lua Only in protection zone

    I've problem, when i remove skull and kill another player, i get this skull again... Eg. Red Skull use remove skull = no skull, later kill another player gets red skull again. Sorry for my english :s
  15. myalitth

    Lua Only in protection zone

    So, i've fix your script, and now this works. Error at #2 line double ::
  16. myalitth

    Lua Only in protection zone

    function onUse(player, item, fromPosition, itemEx, toPosition, isHotkey) if isInArray({SKULL_RED, SKULL_BLACK}, player:getSkull()) then player:setSkull(SKULL_NONE) player:setSkullTime(0) player:getPosition():sendMagicEffect(CONST_ME_MAGIC_GREEN)...
  17. myalitth

    Lua Store System Stackable Items.

    I cannot move items inside the store inbox, it is working fine - but I can move items inside containers in the store inbox. If I buy a stackable item, it comes with the parcel and I can move items inside this parcel... Imagine a player with skull red, send yours items to any parcel in store...
  18. myalitth

    Lua How to add Exhaust Here? 2 min

    function onUse(player, item, position, fromPosition, toPosition) local position = player:getPosition() local chance = math.random(1, 30) if chance <= 28 then player:sendTextMessage(MESSAGE_EVENT_ADVANCE, "You ransack the pile but fail to find any useful parts.")...
  19. myalitth

    Store System Tfs 1.2

    Solved!
  20. myalitth

    Store System Tfs 1.2

    i'm using client 10.98 (Mitsuig Global), i've try to change src folder but not work... I can open store in game when the file store.xml is empty... only with this: <?xml version="1.0" encoding="UTF-8"?> <store> </store> I can't see the history too (debug)
Back
Top