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

    Windows Tibia 7.72 client - change process name through HEX edit

    Daaamn.. cheat engine and ollydbg didnt helped me :< It's funny I've changed the version, rsa, protocool and Im not able to modify the application name :<
  2. pasiak12

    Windows Tibia 7.72 client - change process name through HEX edit

    I would like to set new process name for Tibia client. 7.72 version I am using XVI32 as tool to hex edit. I have tried to find 'Tibia' string, found 33 strings, but when I swap them all with for example 'Gibia' nothing happens. (Had only to change tibia.dat, tibia.spr etc to gibia.spr...
  3. pasiak12

    Webdesigner I am looking for someone who can create new layout for ZNOTE acc maker. [PAID]

    Im using the latest znote acc maker GitHub - Znote/ZnoteAAC: Developement repository for the Znote AAC project. A website portal to represent and manage your Open Tibia server. I want to hire someone to create an unique layout for my server (according to my plan and conditions) Currently I am...
  4. pasiak12

    Webdesigner I am looking for someone who can create new layout for ZNOTE acc maker. [PAID]

    I would like to commission somebody to do create an unique layout for the latest ZNOTE acc maker. If you are interested in job, leave msg here or send me priv. Please post your samples if you can.
  5. pasiak12

    Programmer Tibia client-side anti-bot. [7.72 protocol] [Paid job]

    I am interested in buying anti-bot script/hexedits/dll file/whatever, on Tibia client, protocol 7.72. It should be able to block the most popular bots for that version. You can leave msg here or send me private msg.
  6. pasiak12

    C++ Adding new outfits in Outfitwindow from different ranges in 7.72 client

    Hi! I am working on OTX based on 1.x version I would like to add some outfits to the game. The Outfit window, from protocolgame.cpp void ProtocolGame::sendOutfitWindow() { NetworkMessage msg; msg.addByte(0xC8); AddOutfit(msg, player->getCurrentOutfit()); #ifdef _MULTIPLATFORM77...
  7. pasiak12

    Otservlis rules

    It's sad that it isn't clearly stated, what (and how) exactly things should be done, to avoid the ban. As far as I found server should: - Count only real online players (That have not 0.0.0.0 IP addres - Is that enough?) - Has up to max 4mc per player (up to 4 players with the same ip?) And...
  8. pasiak12

    Windows Old tibia client (7.72) and Windows 10

    bump plz, nooone has met this problem before? many windows10 players have troubles with it ehh :\
  9. pasiak12

    Auto-run after Server Save

    the type is definied in the first line of file : #!/bin/bash In this case your path './tfs' is in the same directory, so you need to put it in the same location as tfs, or change the path
  10. pasiak12

    Auto-run after Server Save

    put inside file and run the script there could be need to give new file privileges to execute, in that case you would need to do 'chmod +x filename' then just run it
  11. pasiak12

    Auto-run after Server Save

    You need to use some auto-run scripts that would turn on your ots after every shutdown (auto-restarter) for linux systems you can use bash script #!/bin/bash ulimit -c unlimited while true; do ./tfs; done
  12. pasiak12

    Lua Help onKill event

    rand hasnt been initialized and its null here if (rand < 1) then rand = 1 end You can try with if not rand then rand = 1 end But it depends on what you want to do. (I haven't read whole code)
  13. pasiak12

    C++ SIGSEGV at Tile::hasProperty(ITEMPROPERTY)

    Thank you for help! I will try to fix this with if(!tile) return; p.s. Can you tell me where you read that tile was NULL in that gdb log?
  14. pasiak12

    C++ SIGSEGV at Tile::hasProperty(ITEMPROPERTY)

    I got the locals on gdb log [GDB] (gdb) bt full #0 0x0000000000795074 in Tile::hasProperty (this=0xb18318 <g_g - Pastebin.com It doesn't help me much, it's weird, the coordinates aren't corret there, or should I read in some specific way? x = 851883999 y = 32588...
  15. pasiak12

    C++ SIGSEGV at Tile::hasProperty(ITEMPROPERTY)

    It would give me more informations in gdb log right?
  16. pasiak12

    C++ SIGSEGV at Tile::hasProperty(ITEMPROPERTY)

    I am using the OTX3 version I am having strange sigsegv crash at random time and players can't really tell what is causing the crash. Theres the gdb log: [GDB] (gdb) bt full #0 0x0000000000795074 in Tile::hasProperty(ITEMPROPERTY) const - Pastebin.com Seems like it is crashing while using...
  17. pasiak12

    Linux Why I shouldn't run server engine as root user

    Hello forum users! Everytime I run the server I receive the message I would like to ask you WHY I should consider running the tfs as normal user? What consequences could happen if I keep running tfs as root?
  18. pasiak12

    Windows Old tibia client (7.72) and Windows 10

    I just implemented custom tibia client 7.72 on my server, forcing evryone to use it. The problem is that almost every players that use Windows 10, have weird lags/freezes (like client side, not network) I can't diagnose this problem by myself because I am not Windows 10 user. The client I am...
  19. pasiak12

    C++ GetStorageValue gives SIGSEGV error

    <removed>
Back
Top