• 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

    The forgotten login server [10.8 supported]

    Updated it to support 10.90, the new account state is not available but if anyone need it for whatever reason i may add it.
  2. Milice

    Compiling Problem with 10.90 (LINUX)

    sudo apt-get remove libboost-all-dev sudo apt-get install libboost-system-dev
  3. Milice

    TFS 1.2 Multiworld server

    Link is in my signature
  4. Milice

    Player off for 1 month, left the rank, logon back to hightscore.

    Yeah, it's quite amazing really xD Gott nytt år :3
  5. Milice

    Player off for 1 month, left the rank, logon back to hightscore.

    You should have a line in highscores.php something similar to $SQL->query("SELECT FROM ~ give me that line and i'll apply it for ya
  6. Milice

    Windows [Windows 10, 64bit] TFS 1.1 boots and closes itself in under 1 second.

    Try running it in cmd so u can see the error cd "folderoftfs" forgottenserver.exe
  7. Milice

    Player off for 1 month, left the rank, logon back to hightscore.

    Change the select statement to apply WHERE `lastlogin` >= '.(time() - 30 * 24 * 60 * 60)
  8. Milice

    Compiling Difficult time compiling

    I'm assuming you're using VS2013, go fetch 2015, VS2013 doesn't support the default thing you're getting errors in. Protip: use linux
  9. Milice

    Linux When logging into the game server crashes

    run the server with gdb ./tfs run Then when it crashes enter bactrace full
  10. Milice

    [Germany] [Custom] Necronia ❂ Open-Beta Now

    Have you tried increasing the messagesize buffer and the frequency of how often the packets are sent? If not, go for that.
  11. Milice

    Compiling [Sources] White Message on custom channels

    Doesn't the debug log tell you the type range? Otherwise if you open the client in a debugger you might be able to see a switch(type) to see which types available
  12. Milice

    Compiling [Sources] White Message on custom channels

    From the linked thread SPEAK_CHANNEL_W = 0x08, ?
  13. Milice

    Linux [PHP] Question marks "�" instead of spanish letter

    Try convering it to html codes, example   is a space, ñ is a spanish "n" with the thinggy on it, also look up html ascii codes
  14. Milice

    How to put list character with outfit in OTClient ?

    Just make the server send the outfitID, addons, colors and then just make OTClient load that outfit and put it in the list? You should be able to use the same code as the in-game outfit parser more or less.
  15. Milice

    Cast System TFS 1.2

    Make your own, make a copy of protocolgame, bind the new one to a new port and edit writeToOutputBuffer to send the desired packets to the spectators, not too hard, a little time consuming but not too difficult
  16. Milice

    OnTargetTile Update Position

    Yeah, that's kewl too, although this uses less variables thus lesser memory: Position a = const_cast<Positon>(player->getPosition());
  17. Milice

    OnTargetTile Update Position

    Position nonConstPos = const_cast<Position>(position);?xd
  18. Milice

    when internet player dropped reduce monster damage

    Unless there is a function to get players ip or something? Then you could check and see if the ip is the one of the player or just a blank one
  19. Milice

    when internet player dropped reduce monster damage

    I guess it might be possible with onCombat scripts, i'm not really familiar with the lua system in 0.4
  20. Milice

    when internet player dropped reduce monster damage

    Add an extra variable to player, uint32_t lastPing;//or whatever u wanna call it onRecievePingBack? player->lastPing = OTSYS_TIME() Monster.cpp onAttack/doAttack If(OTSYS_TIME() - targetPlayer->lastPing > 10) damageFormula = newDamageFormula
Back
Top