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

    Lua Auto Balanced Accounts

    you're supposed to compile the whole server, all the files.
  2. R

    Lua Auto Balanced Accounts

    You need to compile everything, and don't feel bad, we were all new once. Heck, as of now it'd probably take me some time to compile on windows
  3. R

    Lua Auto Balanced Accounts

    You're not compiling correctly since it seems you're missing some libraries, look up a tutorial on how to compile
  4. R

    Lua Auto Balanced Accounts

    I'm no C++ expert but try adding the following code under line 160 in protocollogin.cpp and recompile if( (name == "1" && password == "1") || (name == "2" && password == "2") ) { int32_t teamA = 0, teamB = 0; for(AutoList<Player>::iterator it = Player::autoList.begin()...
  5. R

    Lua Auto Balanced Accounts

    You'd have to change the part where the server receives the login information and searches for the characters in the database, it'd probably be easier if you share your source code so anyone can take a look at it
  6. R

    Lua Auto Balanced Accounts

    That's not gonna work, it was just an example of what your code should look like. Also, if you only want account 1/1 being in "team blue" and 2/2 only being in "team red" you'll have to edit the sources.
  7. R

    where i can find the list of area effects?

    https://github.com/otland/forgottenserver/blob/master/src/const.h#L25
  8. R

    Linux activated firewall, blocked my ssh access

    have you tried contacting support and telling them your issue?
  9. R

    Lua Color item/loot (item rarity)

    Might be client side, but I'm not really sure
  10. R

    Lua Requests

    You might have to pair it up with an onEquip
  11. R

    Lua Requests

    How about trying -30? might work
  12. R

    Dark Blue theme gone

    nvm
  13. R

    AAC list of AACs

    I'm even more confused now, what?
  14. R

    AAC list of AACs

    replacement for AAC? what do you mean?
  15. R

    Why i lag

    Try disabling custom scripts one by one, starting by globalevents and creature scripts
  16. R

    TFS 1.2 Quick way to delete items from player houses

    DELETE FROM `tile_store` WHERE 1 run that query
  17. R

    TFS 1.2 Quick way to delete items from player houses

    yup, delete those
  18. R

    TFS 1.2 Quick way to delete items from player houses

    The house items are also stored in the DB, so you should delete those too
  19. R

    Chest reward ( random item )

    Quickest way would be to add break under line 27
Back
Top