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

    looking for English anime tibia servers

    Its not that easy to create a great server, its not just about pointing fingers and expecting it to have well designed anime server or any other server.
  2. Stanos

    Woodcutting Profession System

    Limiting ips is not a viable option, because many people such as family members share the same IP address when playing games. A better way to prevent bots would be to implement a mini game event. In this case, I would do a timing based mechanic: for example, a moving indicator that travels along...
  3. Stanos

    Woodcutting Profession System

    probably because it uses ravendawn sprites 🤔 Overall system is pretty dope but can be easily abused with bots.
  4. Stanos

    [OTClient Showoff] Show off your OTClient project/module/UI and other

    Guild module: Custom background selection Custom avatar selection Guild languague selection Join status public or private Required level to join Guild Levels Guild level up for gold Guild balance: gold, premium points Guilt motd, guild description Guild most important information Member ranks...
  5. Stanos

    TFS 1.X+ Any creative solution to block market for Roogaard?

    Not having src, you can drop the project to bin already, its like having monitor with no keyboard, no mouse, no pc
  6. Stanos

    Report Data/Spoof IP: sv.luxot.com.br | Site: luxot.com.br

    hide the elfbot pipsqueak
  7. Stanos

    Linux DDOS Attacks

    Because OVH focuses primarily on network layers like L3,L4 meanwhile raw.exe targets L7, what i mean raw.exe is not him hes just buying the service of ddos from gorilla bottleneck telegram
  8. Stanos

    TFS 1.X+ Set item move cooldown

    player.lua local pickupCooldown = 0.5 -- Cooldown in seconds (0.5 seconds) local storageKey = 1234 Inside function Player:onMoveItem(item, count, fromPosition, toPosition, fromCylinder, toCylinder) local lastPickupTime = self:getStorageValue(storageKey) local currentTime = os.time()...
  9. Stanos

    Linux DDOS Attacks

    Because he only affects small servers and those small servers dont even bother reporting his paypal or bank hes using. His ddos attacks are not affecting any bigger or mid servers so in most cases he doesnt get anything from it, thats why no one even bothers with that scum. He tried ddosing me...
  10. Stanos

    I just wanted to say goodbye before I going away on my other adventures

    My dude is on yearly periods
  11. Stanos

    Naruto, pokemon etc. Copyright

    No one really cares that much. Go ahead and claim copyright for an object worth maybe $20, and you'll end up probably spending tens of thousands on a legal battle only to gain nothing from it and at the end of the day they person that stole the sprites could change few pixels and there is no...
  12. Stanos

    [POLAND][CUSTOM / 8.54] DBKO Warrior NEW EDITION

    Probably didnt paid raw.exe 🤫
  13. Stanos

    Programmer Need OTC Programmer (50U$)

    yes
  14. Stanos

    Linux DDOS Attacks

    Firm up network firewall for gameserver, remove/block 80/443/22 Configure new floating ip to machine Adopt cloudflare dns, website proxy to the new floating ip (new a completely unknown address) Network firewall on new floating ip for 80/443/22 only Tune apache2 + php configuration to use mpm...
  15. Stanos

    Linux DDOS Attacks

    Just dont pay those donkies and they should fuck off. Alose would suggest asking for their paypal and just report their paypal for permanent freezing their funds, it should make them shit their pants
  16. Stanos

    Block MC with same IP

    So what? Can you play with the character that is exited? No, stop overthinking simple stuff.
  17. Stanos

    Block MC with same IP

    Elaborate pipsqueak
  18. Stanos

    Block MC with same IP

    local AccPorIp = 3 -- Allowed connections function onLogin(player) local mc = 0 for _, verificar in ipairs(Game.getPlayers()) do if player:getIp() == verificar:getIp() then mc = mc + 1 if mc > AccPorIp then return false end end end...
  19. Stanos

    RevScripts Smart Cap items

    local config = { [7249] = { soulAmount = 100, effect = CONST_ME_HOLYAREA, maxSoulEffect = CONST_ME_GIFT_WRAPS, cooldown = 10 }, [7250] = { soulAmount = 70, effect = CONST_ME_HOLYAREA, maxSoulEffect = CONST_ME_FIREWORK_YELLOW, cooldown = 15 } } local action = Action() function...
  20. Stanos

    RevScripts Smart Cap items

    local config = { [7249] = { soulAmount = 100, effect = CONST_ME_HOLYAREA }, [7250] = { soulAmount = 70, effect = CONST_ME_HOLYAREA } } local action = Action() function action.onUse(player, item, fromPosition, target, toPosition, isHotkey) local soulItem = config[item.itemid]...
Back
Top