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

    VIP Status in Character List.

    You could change it to display VIP Days but it would still say premium, but that might not fit your needs?
  2. Milice

    Need Help With Sprites 7.4

    Get objectbuilder or another dat/spr editor that supports both 7.4 and 7.72. Open the 7.4 spr/dat and save them as 7.72, add them to the client and voila
  3. Milice

    Windows Please help! Server crashes when I throw new donated items on the floor!

    Try putting a return true in the onDeEquip part? Just an idea
  4. Milice

    Compiling Dump question

    Compiling is basically just converting raw code to a computerreadable executable. Ie compiling tfs you will get a new forgottenserver.exe (windows) or tfs (linux)
  5. Milice

    Solved Function onCombat(player, target) TFS 1.1

    https://github.com/otland/forgottenserver/wiki/Script-Interface
  6. Milice

    c/c++ mysql to gesior acc

    Don't edit your sources because the website doesn't work. Edit the website instead. But on topic, check if the server uses any type of encryption or plaintext passwords and then compare it to your website.
  7. Milice

    Linux Problems running TFS in ubuntu 14.04.2

    Have you tried changing 127.0.0.1 to localhost? Also have you made sure that the mysql service is running properly?
  8. Milice

    Windows Skill Shielding doesn't work

    I don't know if the function is the same, but try looking at Combat::blockHit, Creature::Blockhit or/and Player::blockHit And they should be in same file, Player::blockHit is in player.cpp, Creature in creature.cpp
  9. Milice

    TFS 1.2 [Tibia 10.77] How to give all acceses/outfits/mounts

    Oh, fair enough. A simple source edit would suffice then. Code example: canWearOutfit function if(player->isGod()) return true; to just return true; with no IFs, and same goes for mounts.
  10. Milice

    TFS 1.2 [Tibia 10.77] How to give all acceses/outfits/mounts

    Add flags to players to unlock all outfits, mounts and then remove checks from scripts, just as simple as that.
  11. Milice

    Mounts

    No, considering that the limit is clientsided there's not much you can do. What you could do is to make sure is that the server never sends more than 50 mounts to the client. A normal player would rarely get > 50 mounts i suppose? So just remove that GMs get all the mounts, that was my solution...
  12. Milice

    Mounts

    The limit lies in the client then i guess, i remember getting debugs in 10.53 with all mounts
  13. Milice

    Lua Square Colors

    Change your sources and recompile ur server. ProtocolGame::sendCreatureSquare
  14. Milice

    How to make an item that gives you speed?

    Look at for example boots of haste, take the speed variable to your new item, then take a look at example soft boots anf take the duration from those and then just change both to your needs.
  15. Milice

    Windows Lags when using spell attacks (spells or wands/rods)

    Change to a linux host.
  16. Milice

    Thronx OT - 10.77+ RL map project

    Why would anyone make a server with ATT3? He opens a server and then closes it a month later when he got some donates xD
  17. Milice

    Easiest way to debug the client? 1077 TFS 1.2

    Send a faulty packet? NetworkMessage msg; msg.addByte(0x6A); for(int i = 0; i < 20; i++) { msg.add<unit32_t>(0); } writeToOutputBuffer(msg);
  18. Milice

    Linux Putty

    If youd like to you can do > output.log after and you'll be able to see your serverlog in output.log
  19. Milice

    Linux Putty

    Have you tried executing for example nohup ./tfs &
  20. Milice

    Compiling Where i can find this things in the c++ code

    Most if not all mysql callings are in iologindata.cpp
Back
Top