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

    How to use ip changer in tibia 12

    Hello everyone, after updating my TFS to the current code in master branch, it's saying I need the client with protocol 12.85 to connect (and that's fine, I really want to use tibia 12 instead of 10.98). but, in the client side, how can I use an ip changer to connect into it? I configured my...
  2. drakylucas

    How to get FREE VPS from Oracle Cloud

    Hi all, I finally managed to get it working in Brazil VPS. The step 13 returned me an error, though: but I could do this: When I go to Port Checker - Port Forwarding Test - Open Port Checker (https://www.portcheckers.com/) and write my ip + port 7171 (without anything running, just after...
  3. drakylucas

    OTClient 1.0 (Release)

    @Source I suppose you already expressed your thoughts towards otclient 1.0 / @Mehah codes. I think this is enough for this topic. We all understand your point, even though we (most) disagree with you, this is not the place to discuss it. Please keep this thread for updates regarding otclient 1.0
  4. drakylucas

    How to get FREE VPS from Oracle Cloud

    Out of capacity for shape VM.Standard.A1.Flex in availability domain RpqU:SA-SAOPAULO-1-AD-1. If you specified a fault domain, try creating the instance without specifying a fault domain. If that doesn’t work, please try again later. Learn more about host capacity. =( Did anyone managed to...
  5. drakylucas

    How much should be refund?

    How many bosses you paid for? How many bosses did he make? What are the complexity of what he didn't do comparing to the bosses he delivered? If you asked 30 bosses and he made like 27, but the three ones that he didn't deliver are more complex to develop,I'd imagine like 15% refund (10% from...
  6. drakylucas

    Crowdfunding community projects

    Main otclient repo is dead.. Your fork is alive :) About the topic, I think almost no one would donate, unfortunately. I think otland already had something similar to it on bountysource (Bountysource ToS change (https://otland.net/threads/bountysource-tos-change.271325/)) and almost no one...
  7. drakylucas

    Source's custom OT game engine (TypeScriptFTW)

    Reading the topic, I can only imagine that, after being teleported, the player would call a function that iterate over all creatures of the world (monsters, npcs, other players) and check the distance between their positions and player position. If the player is close to the creature, it sends...
  8. drakylucas

    Ranger's Arcani - Official Discussion

    Im not playing this server right now (due to lack of time) but I really recommend it. I played the open beta long time ago and it was amazing. Too many things to explore and an amazing custom client.
  9. drakylucas

    Map Editor Cloud

    You'd have to upload sprites and load them in chrome.. And loading a big map would be a heavy task for a browser (I guess). I think you're trying to solve a problem that actually does not exist. Why not just download rme and map in your computer?
  10. drakylucas

    Raspberry Pi

    Why would you use rme inside raspberry? Just edit your map in your computer and then move it to the rasp.
  11. drakylucas

    Problem with NPC dicer by nekiro

    I think someone already made a change similar to what you're trying to do: Post in thread '[TFS 1.x] Dicer/Gambler NPC' NPC - [TFS 1.x] Dicer/Gambler NPC (https://otland.net/threads/tfs-1-x-dicer-gambler-npc.257144/post-2573691)
  12. drakylucas

    Problem with casino npc, he withdraw low than i won

    In this part: if goldCoinAmount ~= 0 then Game.createItem(12543, goldCoinAmount, position) end You should actually loop it in case there are more than 100 goldCoinAmount Im in phone right now, but it should be something like: CODE=lua] if goldCoinAmount > 0 then repeat...
  13. drakylucas

    Extended View TFS 1.4 OTCV8

    After applying these changes on map.h, try increasing NETWORKMESSAGE_MAXSIZE value in const.h file as well.
  14. drakylucas

    Fake PK video

    I'm not sure, but you can try that: Get 15m pz lock Exit client in a place without any monster Wait ~3 minutes (depending on vocation) and login again. I think I read something like that in reddit.. You'll still get the skull but without red fight ticks I'm not sure if this is the way, but it...
  15. drakylucas

    what are the main spawns for level 1-300 in Tibia

    Hi all, I'm creating a custom server (currently on 10.98 version because of TFS, but planning to update it to 12x later on) that will use the old yurots map (you know it, I'm sure) with a very low exp/skill rates. The point is, tibia changed a lot since 7.6~ and now it's more focused in team...
  16. drakylucas

    Lua Requesting NPC Guild Master for TFS 1.4

    Hello all, can you please help me with a guild master NPC for TFS 1.4 (from GitHub - otland/forgottenserver: A free and open-source MMORPG server emulator written in C++ (https://github.com/otland/forgottenserver) without modifications)? It should be able to create/disband guild, invite and...
  17. drakylucas

    C++ Quiver system source modification attempt

    @Jaki Maoh Im not sure if it would work, but you can try changing CONST_SLOT_AMMO to CONST_SLOT_RIGHT in the step 3 of the tutorial you followed. (sorry, I'm on phone, it's hard to copy and edit code blocks here). This way, the verification for ammo will be moved to the right hand. Im not sure...
  18. drakylucas

    C++ Quiver system source modification attempt

    Just commenting, I think this is wrong: if (container->getID() == 38218 || 38180) // change quiver id here Correct would be if (container->getID() == 38218 || container->getID() == 38180) // change quiver id here Explaining: if the itemId is different than 38218, it was returning true for...
  19. drakylucas

    AAC [MYAAC] How can I change the default skills per vocation?

    Hello all, How can I change the default skills of each vocation? I tried changing on Samples in database, for magic level it works, but for shielding, sword, etc it does not work. It creates with the default value "10" for all vocations. I couldn't find the trigger in the database and also...
  20. drakylucas

    [GitHub] OpenTibia 10.98, Raspberry Pi, Docker

    Hello, this is a very good project! Thanks for your contribution to the community! I'm totally newbie in containers/docker, but I'm trying to copy/paste some of your work to make a test here (without using ORTS). I have a doubt. I could manage to run the website/database though Docker, but it...
Back
Top