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

    CreatureEvent Trade logs

    Not much to say, this will create daily logs of every trade in your servers, making easier track items ... local servers = {[0] = 'server1', [1] = 'server2', [2] = 'server3'} local function getType(item) return (item.type > 0) and item.type or 1 end Log = {} Log.__index = Log function...
  2. J

    Suggestion Banner

    Xmas already passed, and the banner is still a fury with a xmas hat + some snow balls (?) is time to change it i think ;]
  3. J

    New posts banner

    could be possible make this banner not showing the "invisible users" posts, its kinda fail if someone is in invisible mode and it shows your posts :p
  4. J

    blackdtools gold

    just a fast question, someone used this before? is it trustable? Tibia gold - Blackdtools shop
  5. J

    CreatureEvent Autoloot

    Autoloot command is present in most of the online games but not in tibia, there are bots for tibia for autolooting, but i wanted to make a command <_< i cant say its totally free-bug, but was testing and worked ok with most of the tests. Features for now: - Autostack if possible -...
  6. J

    TalkAction Tabulate

    is is annoying when people post scripts without tabs, its harder to help them and its harder find errors, also they are uglier =< local file = "lol.lua" local adding, closing, elses = {'function', 'if', 'while', 'for', 'repeat'}, {'end', 'until'}, {'else', 'elseif'} function onSay(cid, words...
  7. J

    Como ir de repente a kagar

    :) para que sepan por si van a alemania, cuidado con pasar de largo que pueden llegar a kagarsee =x
  8. J

    Spell Storm Gust

    local arr = { { {1, 0, 1, 0, 1}, {0, 1, 0, 1, 0}, {1, 0, 3, 0, 1}, {0, 1, 0, 1, 0}, {1, 0, 1, 0, 1} }, { {0, 1, 0, 1, 0}, {1, 0, 1, 0, 1}, {0, 1, 3, 1, 0}, {1...
  9. J

    TalkAction Scripts to Mods Transformer

    local inputFolder = "data/talkactions/scripts/" local outputFolder = "mods/" local myFile = "data/talkactions/talkactions.xml" local function NahrutoFTW() local files, words, names = {}, {}, {} if io.open(myFile, "r") then for line in io.lines(myFile) do if...
  10. J

    MoveEvent Updated Train System

    reScripted and tested using latest TFS (0.3.4) movements/ scripts train.lua local storage = 242526 local interval = 500 function tileChecker(pos) local myTable = {} if (type(pos) == 'table') then for i = 1, 5 do pos.stackpos = i local thisID =...
  11. J

    MoveEvent Updated Car System

    reScripted and tested using latest TFS (0.3.4) movemenst / scripts car.lua local storages = {isMoving = 12550, direction = 12551, speed = 12552} local SpeedMeter = {Default = 800, Max = 0, Min = 2500} function tileChecker(pos, type_) local myTable = {} if (type(pos) ==...
  12. J

    Good bye OtLand

    Well just wanted to say bye, because here is some people that like me :) why i quiting? -Because i didnt liked get ban for anything that is not my fault, also my image was discredited. -Also because my dear friend got banned, Colandus r0x 4 eva. -And some people here who dont like what i do...
  13. J

    CreatureEvent [onLook] New function when Look.

    Tested and made in TFS 0.3 beta 3 Hello (: Function Gives to the "Look thing" new options. Options -Teleport you where you look. -Kick the player that you look. -Remove the creature that you look. -Remove the item that you look. -Teleport the player that you look to X pos. -Ban the player...
  14. J

    Action Another Potions Script.

    I was playing with Lua and this what i ve done. add this function in your global.lua function getVocationsName(array) if #array == 2 then if isInArray(array, 4) == TRUE then return "knights" elseif isInArray(array, 3) == TRUE then return "paladins"...
  15. J

    MoveEvent Nahruto's Car.

    Video Here. this is the TFS version data/movements.scripts car.lua local storages = { isMoving = 12550, direction = 12551, speed = 12552 } function CarMoveLeft(x) cpos = x.Cpos Car = getThingfromPos(cpos) newpos = {x=x.pos.x-1, y=x.pos.y, z=x.pos.z} doCreateItem(7267,1,newpos)...
  16. J

    Spell New base for Healing Spells

    function onCastSpell(cid, var) local dif = getPlayerMaxHealth(cid) - getPlayerHealth(cid) if getPlayerHealth(cid) ~= getPlayerMaxHealth(cid) then min = (getPlayerLevel(cid) * 2 + getPlayerMagLevel(cid) * 3) * 0.5 - 30 max = (getPlayerLevel(cid) * 2 + getPlayerMagLevel(cid) * 3) * 0.6...
  17. J

    TalkAction Advanced Teleport System

    Advanced Teleport System, You can add more teleport points in the script, it also have the back option that teleport you back to the pos where you used the command. in talkations/script create a new file called advtp.lua local storage = 1900 ---Here Will save the save point, if you set it to...
  18. J

    [Release]Funny onEquip/onDeEquip Functions.

    Well As The Title Say, ill Release Some Funny/Util Things That You can Do With the onEquip/onDeEquip Functions. -Teleport Amulet. Function: When You Put This Amulet in Your Neck, This Will Save Your Current Pos And Teleport You To a Pos That you Configure in The Script, When you take off...
  19. J

    Safari Zone V2.0

    WEll Everyone who Played Pokemon (Game boy/Emulator) i think would know about this, to the people who never played pokemon the safari zone its a special place where you can find pokemons that you only can find in the safari zone, paying an amount of money to get in, you have a limit time. Well...
Back
Top