• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. lokolokio

    CTF Event after event player dont get teleported to temple

    Based on the comment that you think the mistake are on CTF.close(win), why no check this, I have not a server 0.4 to test it, but I always use this kind of code and works: function CTF.close(win) for i, _ in pairs(CTF.teams) do setGlobalStorageValue(score_sto[i], 0) end if...
  2. lokolokio

    Lua Avesta - Item that add bonus exp for a time

    I have investigated about functions on avesta, Idk that kind of server, I was thinkin that was the same of TFS 0.3.6 or 0.4, but now I belive this will work: I made it with exp rate back after 6 hours passed. I think this can be buged if player is not online :S but if someone can help to...
  3. lokolokio

    Lua Avesta - Item that add bonus exp for a time

    Hello, I making this script based on this post: CreatureEvent - If premium then 50% extra more experience, ml and skills rate and ++loot! Hope this work for you: function setRates(cid, rate) if rate == nil then return false end if doPlayerSetRate(cid, SKILL_FIST, rate) and...
  4. lokolokio

    Action Advanced quest chests 1.x

    Hello, I was making one diferent quest for each reward, that I want add, but now with this system, I just need to add a few lines, /reload and works, thanks :D
  5. lokolokio

    TalkAction Bank System via TalkActions

    I created this post based on the demand of bank system via talkaction for tfs 1.2 TalkAction - Bank System via Talkaction (TFS 1.2)
  6. lokolokio

    TalkAction Bank System via Talkaction (TFS 1.2)

    Hello dear OtLanders, I have making a bank sys via talk action for TFS 1.2: (check this out @Athenuz @LEDneotoxicity @Kavalor , hope this work for all community) any comments, bug, suggestion also a improvements, I will be open to hear. let's start: open 'data/talkactions/talkaction.xml' and...
  7. lokolokio

    ManaUh script healing base in %

    I think this may work for you, what do you think?... local combat = Combat() combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) combat:setParameter(COMBAT_PARAM_DISPEL, CONDITION_PARALYZE) combat:setParameter(COMBAT_PARAM_TARGETCASTERORTOPMOST, true)...
  8. lokolokio

    convert to tfs 1.3

    local config = { [2] = 5, [3] = 62, [4] = 69 } function onLogin(player) if(player:getStorageValue(10005) > 0 or not config[player:getVocation():getId()]) then return TRUE end if player:getGroup():getId() >= 3 then -- 1 = Players, 2 = Tutors, 3 = Sr. Tutor, 4 = GM, 5 = GOD...
  9. lokolokio

    Solved tfs 0.3.6 and now 1.2, doplayer say and others

    Thanks @Itutorial , I edited it, the problem consist in 'local p = Player(cid)', where cid is nill, now I changed it to 'local p = Player(creature)' now it shot works @narkotyko , also sorry for that mistake, and also, the direction available are: DIRECTION_NORTH DIRECTION_EAST DIRECTION_SOUTH...
  10. lokolokio

    convert to tfs 1.3

  11. lokolokio

    [RME] "Errors while loading brush..."

    And if you try this: <brush name="lava fountain" type="doodad" server_lookid="5074" draggable="true" on_blocking="true" thickness="100/100"> <alternate> -- south -- <item id="5074" chance="10"/> </alternate> <alternate> -- east -- <item...
  12. lokolokio

    Solved tfs 0.3.6 and now 1.2, doplayer say and others

    Try this... local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) combat:setParameter(COMBAT_PARAM_EFFECT, 77) combat:setArea(createCombatArea(FALA_G_P)) function onGetFormulaValues(player, skill, attack, factor) local min = (player:getLevel() / 5) + (skill *...
  13. lokolokio

    Lua Avesta - Item that add bonus exp for a time

    Experience, magic Level, Skill, wait a while and I try to help you... I found it, you can use this, hope works for you: CreatureEvent - If premium then 50% extra more experience, ml and skills rate and ++loot!
  14. lokolokio

    Compiling Im having this problem on login

    And you already use a IpChanger for your tibia client 10.XX??? Maybe there can be a mistake with your current ipChanger, just try to download another one, and try to log-in again.
  15. lokolokio

    Lua Help, BOSS Respaw every 2 Hours.

    I know, but the new ppl on scripting, will not see it, maybe they can think: 'the script is working', and they just copy and paste it, like @willks123 (just as new on scripting), and I just try to help, regards
  16. lokolokio

    Lua Help, BOSS Respaw every 2 Hours.

    and why the 'o' at líne 6? For that reason, the problem on his server, he just copied the code and pasted and not remove the 'o' on líne 6, thats the reason I divided on 2 if statements
  17. lokolokio

    Solved Help Please, cannot log into server.

    Some time ago I was having this trouble, the solution that I found was the next: First of all, go to http://localhost/phpmyadmin and select your database: If this not work, you need to click on your database again. and then click on SQL Tab, and execute this code: db.query("ALTER...
  18. lokolokio

    Lua item:setAttribute, need info.

    Hello dear OTlanders, I have a question to make, I want to put a item text, but I need to put a writer, and I don not know how to put writer, for ex. Like player I write a label, and on the label write the data:text, writer and writtendate, and I dont know how to put them. I working in this...
  19. lokolokio

    Lua Help, BOSS Respaw every 2 Hours.

    The things that @silveralol is trying to say its that you use: function killmonster(creature) if creature ~= nil then creature:remove() end end Or this: function killmonster(creature) if creature then creature:remove() end end Not both in the same script...
  20. lokolokio

    Unable To Level Up Without Storage

    May you need to put less experience on "Server/data/xml/stages.xml" or if it's disabled, you can find it on your config.lua file, some line like this: -- Rates -- NOTE: rateExp is not used if you have enabled stages in data/XML/stages.xml rateExp = 5 <?xml version="1.0" encoding="UTF-8"?>...
Back
Top