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

    C++ Attack speed- problem

    TFS 1.5+ I have problem with attack speed what I would like to be is to have the same attack speed while moving and standing. You can see at the gif bellow, speed changes when I move. Where can I change this?
  2. E

    C++ Is this safe?

    My server is not online yet to the public but for some reason I get logs from strange IP's. I decided to change my code to the code bellow related to RSA. Can somebody tell if this is safe? as now if somebody try to login from dodgy client he will be banned for 7 days I mean IP. Code: if...
  3. E

    C++ Help with monsters reactions to players.

    Can somebody help me find function which is responsible for monsters detecting player I am having trouble with mainly reaction of the creatures when player is detected on the screen it takes creature like a second to realize this. Where can I speed this up? TFS 1.X
  4. E

    TFS 1.X+ [error] [combatTypeToIndex] Combat type 255 is out of range

    I have detected some issue with COMBAT type 255 which is COMBAT_NONE = 255 it seems to happen a LOT when creatures attacking player a specially it seems when creatures have to walk around obstacle or any solid object. Did anybody had issue like that or may know solution to it? Latest TFS...
  5. E

    Uncover Map Talkaction

    Well I have been trying to uncover my mini map properly, this seems to work. I did only little bit of searching but could not find solution so there you have some dodgy talkaction. It works just fine you can search any location you would like. screen: uncovermap.lua local mapUncover =...
  6. E

    Training Room

    Create small training rooms for player to teleport to and add positions to the script. Done Example screen: Script: local trainingTeleport = MoveEvent() local roomPositions = { Position(2142, 2300, 8), Position(2148, 2300, 8), Position(2154, 2300, 8), Position(2160, 2300, 8)...
  7. E

    C++ Simulate Online Players.

    Is there a way to simulate for example 500 players online? This would mean to create some sort of AI behavior too. So at least they move at random interval as well. I know I could launch mc clients but this is not what I am looking for. Maybe somehow place unique npcs that count as players...
  8. E

    Windows RSA question

    I was just wondering. What can anybody with knowledge do if they have your server RSA key? Can they hack your server or disturb or anything like that?
  9. E

    AAC Does anybody know how can I edit login message?

    Above screen is not message when my server is /closeserver. I do not know where to find this because it only appears when I put wrong password in. Is it possible to modify this message in client 13.20? if (g_game().getGameState() == GAME_STATE_CLOSED &&...
  10. E

    When it comes to non-Real Tibia servers

    What's your opinion on so called Evolution servers or modified servers. Mainly I want to ask if you like evo do you also like teleports or you think it would have been much better if teleports/quest have been placed around the map???
  11. E

    C++ Set Idle when Training.

    I have this function in source: void Player::setTraining(bool value) { for (const auto &[key, player] : g_game().getPlayers()) { if (!this->isInGhostMode() || player->isAccessPlayer()) { player->notifyStatusChange(this, value ? VIPSTATUS_TRAINING : VIPSTATUS_ONLINE...
  12. E

    TFS 1.X+ Value string is empty question.

    Any time I browse market or tibia store I get big amount of empty strings. My question is if I have more players on the server and then flood of empty stings will be massive. Will this affect server performance or is there any way to get rid off those empty strings? Logs look like that when I...
  13. E

    OTClient Otclient Question

    I have been using tibia client 13.20 for some time now. I do know this means I am very limited of what can I actually change in it. So the question is which otclient I can start with to achieve something near 13.20 funcions like modal, bestiary, analizers and so on. I assume all have to...
  14. E

    AAC Old Magic Wall.

    Does anybody have old magic wall .gif or .png? I just don't know how to extract it.from .spr does anybody have it. I want to use it in 13.20 tibia client.
  15. E

    AAC failed_logins how to enable it?

    In MYAAC you have option in login.php regarding failed_logins means if you put your password x5 times incorrectly it should block you ip for some amount of time. The thing is it does not work and I just don't know where else to ask to fix this. Anybody can explain how to do it? Do I have to add...
  16. E

    AAC How to share your server to server lists websites?

    I am using cloudflare with Uniserver and AAC. I was wondering if anybody can point me in to right direction, on how can I share my server without exposing my real IP? How others servers doing this? Without using vpn?
  17. E

    AAC Looking For Tutorial to Add Guild Wars.

    I know for sure I am not the only one who does not have a clue how to add guild wars manually. Many of you have knowledge how to do this can you share it? https://github.com/slawkens/myaac-plugins/tree/master/guild-wars
  18. E

    OpenTibia Modified Gesior RSA editor to only EDIT RSA!

    I have been trying to modify my RSA with my tibia 13 client, after facing few problems with original version. From GitHub - gesior/ots-ip-changer-12: Tibia 12+ IP Changer - code of https://ots.me/ots-ip-changer-12/ (https://github.com/gesior/ots-ip-changer-12) I only wanted my RSA to be changed...
  19. E

    Monsters spawn question.

    I am wondering what it the difference between spawning creatures with one 30sqm huge spawn and by placing every single one individually?? Can anyone explain to me what's the best way? or it does not matter?? screen 1 screen 2
  20. E

    TFS 1.X+ RME adding new items/walls/floors from new assets.

    Hi all, I am very new with map editing. I am using 1098 sprites with my map editor. Is there a way to extract new spr and dat from assets. So, I can use it in my map editor??? I have added many new floors and walls but map editor does not have it but when I create itemid in game in works...
Back
Top