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

    tibia74.online

    udostepnie pozycje domeny s2 s3 s4 s5 lub custom nazwa przed np server.tibia74.online jezeli ktos chce z uslugami cloudflare. Za darmo
  2. highsanta

    upgrade system field issue

    Hey im using oens upgrade system and the elemental protection seems to work fine with player created fields but monster fields deal full damage in the element despite the protection. has anyone experienced it or found solution reason for the bug? 1714150400 update seems to stop working...
  3. highsanta

    Gatekeeping

    What is the problem of people in community gatekeeping everything. Even the particular thread oen just closed instead of releasing the code he already made it going into void. Its not like he was gonna make any money on the tool. Do career programmers feel pain when people use their stuff? They...
  4. highsanta

    [TFS 1.X] Bestiary - Task Chat System

    -- Monster list with names local monsters = { "Amazon", "Ancient Scarab", "Assassin", "Badger", "Bandit", "Banshee", "Bat", "Bear", "Behemoth", "Beholder", "Black Knight", "Black Sheep", "Blue Djinn", "Bonebeast", "Bug", "Butterfly", "Butterfly Purple", "Butterfly Yellow", "Butterfly...
  5. highsanta

    Reconstruction of download section of forums.

    Some form of reconstruction of forum would be nice for example place where revscripts we have simple window with said revscript screenshots and other versions from users in comments (e.g when fix comes or features and people want to share.) For now its all cluttered there is index or anything I...
  6. highsanta

    Running otclient on raspberry pi

    A raspberry pi anybody tried running otclient or android client? Idea for a server/game not maybe tibia and to play it u buy it and plugin to ur hdmi keyboard mouse and it would just boot linux n client so no piracy
  7. highsanta

    TFS [1.X] Lootwand

    local lootTable = { { "axe", 2386, 7 }, { "battle axe", 2378, 80 }, { "battle hammer", 2417, 120 }, { "battle shield", 2513, 95 }, { "bone club", 2449, 5 }, { "bone sword", 2450, 20 }, { "brass armor", 2465, 150 }, { "brass helmet", 2460, 30 }, { "brass legs"...
  8. highsanta

    TFS [1.X] Globalevent save all players 5 minute interval

    function onThink(interval) local players = Game.getPlayers() for i = 1, #players do local player = players[i] if player:save() then player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "Your data has been successfully saved.") else...
  9. highsanta

    [Germany] [7.4] RookieOts

    IP: 167.235.249.79 Port: 7171 Client: Tibia 7.4/own client Uptime: 24/7 Hosted in: Germany Hetzner Website: RookieOts Exp rate: x1 Map: Rookgard Runes: Normal charges and prices Loot rate: 1x Server type: Pvp-Rpg. 3 kills gives you Red skull and 6 lends you to a ban. Skills & Magic rates: x1...
  10. highsanta

    Linux compiled TFS 1.5 has odd error.

    So I compiled nekiro on the linux yesterday ubuntu22 and funny thing happened. first items on Login would only execute after player relogged? once. regeneration didnt work. any ideas why? 1711973105 update the mana is regenerating but it displays itself as 0/X mana??? 1711977077 monsters seem...
  11. highsanta

    Solved Svargrond Arena

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
  12. highsanta

    Nekiro downgrade 8.0 trade system bug

    I uncomennted the code but selling items does not work the items dont get highlighted in trade window despite being in backpack ( can not sell ever only buy and even the items that are newly bought cant be sold to same npc)
  13. highsanta

    White list only server?

    Tibia has always been about a roleplay so what if it was more like that? Also what about private servers with whitelist only meaning that you need like discord account to play and only if you have accepted ToS of the server or such be able to play?. I feel like maybe we need OpenTibiaApi to...
  14. highsanta

    Chat gpt competition?

    Maybe we should make some competition where we use just chatgpt to create some simple but cool scripts for like actions or movements to just show how easy it is nowadays?
  15. highsanta

    [1.X] First Items for Vocation

    local firstItems = { [0] = { 2650, -- jacket 1987, -- bag 2674, -- apple }, [1] = { -- Sorcerer 2463, -- steel helmet 2457, -- plate armor 2647, -- plate legs 3982, -- crocodile boots 2525, -- dwarven shield...
  16. highsanta

    [TFS 1.X] Revscript !aol

    local talk = TalkAction("/aol", "!aol") function talk.onSay(player, words, param) local moneyNeeded = 50000 if player:getMoney() >= moneyNeeded then player:removeMoney(moneyNeeded) player:addItem(2173, 1) -- Amulet of Loss ID is 2173...
  17. highsanta

    TFS 1.5 Backpacks of runes 2k runes lever

    This script allow for purchase of 2000 runes for evo otses for retro protocol
  18. highsanta

    1.5 Lua Functions

    I had plenty of people ask me about the luascript functions so here they are i extracted the comments from luascript.cpp //doPlayerAddItem(uid, itemid, <optional: default: 1> count/subtype) //doPlayerAddItem(cid, itemid, <optional: default: 1> count, <optional: default: 1> canDropOnMap...
  19. highsanta

    nekiro downgrade opcode problem?

    this error relates to the shop opcode. the shop works fine im able to spend points etc. why is there an error? Is there some old function for not extended opcodes in the nekiro engine that would cause it to throw it in the terminal? it works fine.
Back
Top