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

    Lua Item give Critical, Lifeleach, Manaleach for 1 hours.

    I've created a basic script for you, test it and use as you like Just add on the itemid that you want: Inside actions.xml: <action itemid="xxxx" script="buffs.lua" /> Then add a script buffs.lua inside actions/scripts: local config = { buffTime = 1, -- 1 hour buff manaLeech = 10, --...
  2. leocurvelo

    Reverse Damage Mechanic

    Try something like this function onHealthChange(creature, attacker, primaryDamage, primaryType, secondaryDamage, secondaryType, origin) if creature:getName() == 'Demon' then if primaryType == COMBAT_HEALING then primaryType = COMBAT_ENERGYDAMAGE -- choose the damage...
  3. leocurvelo

    RME only shows the first 500 results.

    https://github.com/OTAcademy/RME/releases/tag/3.8.3_OTA
  4. leocurvelo

    RME only shows the first 500 results.

    Go on preferences, and change this value to 100000
  5. leocurvelo

    Solved Lock depot chest

    Yeah, it need to be changed inside sources
  6. leocurvelo

    Solved Lock depot chest

    https://otland.net/threads/tfs-1-x-global-depots-10-9.241626/post-2339961
  7. leocurvelo

    Lua Npc npc that responds to premium account tfs 1.5

    Try and configure it your way You can add a shop parameters in npc.xml local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid)...
  8. leocurvelo

    [CUSTOM] RuneScape OT Project

    Crafting module (a bit hard work, but it's very functional)
  9. leocurvelo

    Lua write on item

    You can try something like this: In talkactions.xml, add: <talkaction words="/gmdoll" separator=" " script="gmdoll.lua" /> Create gmdoll.lua inside scripts and add: function onSay(player, words, param) if not player:getGroup():getAccess() then return true end if...
  10. leocurvelo

    RevScripts Modal to open a list of items within another list of items.

    An example that you can do: Actions: (onUse anvil, or another item of your choice) function onUse(player, item, fromPosition, target, toPosition, isHotkey) local modalWindow = ModalWindow(1, "Crafting", "Select the material:") modalWindow:addChoice(1, "Steel") modalWindow:addChoice(2...
  11. leocurvelo

    RevScripts Modal to open a list of items within another list of items.

    What tfs version are you using?
  12. leocurvelo

    [CUSTOM] RuneScape OT Project

    Hi guys, some more updates! Member Shop 100% Reworked Grand Exchange Center Draynor Manor Entrance Secrets inside Draynor Manor Count Draynor Crypt I'm thinking of leaving the player's choice free, but with a cooldown for each repeated mission.
  13. leocurvelo

    [CUSTOM] RuneScape OT Project

    New updates to the project! Prayer Interface Prays gives to the player a bonus (+skills/+regen/+speed/+protections) like in RS. Each pray drains 1 prayer point per X seconds (this one below drains 1 point / 12 seconds) Slayer Tasks There is some slayer masters around the map. Each master has...
  14. leocurvelo

    [CUSTOM] RuneScape OT Project

    Hi guys, I'm back (again) xD I was really short on time lately with my college, work, wife, but now I'm able to dedicate more time to the project, and with that we will have more frequent news here on the forum! Here's some news: Inspect System (to check a player skill and wield items The...
  15. leocurvelo

    Global NPC Says.

    Maybe you can find it here https://github.com/opentibiabr/otservbr-global/tree/develop/data/npc
  16. leocurvelo

    [CUSTOM] RuneScape OT Project

    Updated and Dynamic Lodestone Service Smithing Table Smelting Options I'm trying to bring the Test Server as soon as possible, but for sure it will be still this year.
  17. leocurvelo

    [CUSTOM] RuneScape OT Project

    A few more additions to the project:
  18. leocurvelo

    [CUSTOM] RuneScape OT Project

    Hello again, OTLand users! After some years (studying and working a lot), now I'm with a free time to work again in the RuneScape OT project. I know the server seemed to be abandoned, but it was all lack of time. I've worked a lot on the project since I came back (about 3 months ago), and I'm...
  19. leocurvelo

    [Brazil][7.4] Devonia Online - Open Test Server

    Devonia Online Devonia Online is an open tibia server based mainly in 7.1/7.4 Tibia version, with retro mecanics, PvP, formulas and as close as possible to nostalgic Tibia. The Test Server is open now, aiming mainly the corrections of bugs, showing off the game, and free to everyone! Some...
  20. leocurvelo

    [CUSTOM] RuneScape OT Project

    Hello, OTLand community! I'm here to tell you that I've back my work on the project. This last year I had to solve some problems in my RL, and now I'm excited to come back again! At the moment, I'm justing posting this to share again the project with the forum, but soon I'll be bringing news...
Back
Top