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

    Weird compiling error

    replace line LDFLAGS = with LDFLAGS = -pthread
  2. averatec

    Weird compiling error

    show your makefile, you're missing -pthread option
  3. averatec

    bledy po kompilacji na debian 8

    najprawdopodobniej prawdziwa ścieżka różni się od tego co jest w actions.xml i monsters.xml tzn dla debiana data/monster/Misc/gnarlhound.xml to nie to samo co data/monster/misc/gnarlhound.xml chodzi o wielkość znaków, poszukaj czy nie ma jakiś różnic, bo na windowsie to są te same ścieżki
  4. averatec

    Compiling TFS 0.4 R3884 - MSVC 2015

    https://otland.net/threads/stians-dev-cpp-repack-0-2-with-crypto-and-64bit.62455/ this should help you, includes all libraries rehost can be found on the last page where Gesior.pl answered
  5. averatec

    Limit password and account characters - Gesior 2012 - TFS 0.4

    https://github.com/gesior/Gesior2012/blob/TFS-0.4_rev_3703%2B/system/load.compat.php#L99 https://github.com/gesior/Gesior2012/blob/TFS-0.4_rev_3703%2B/system/load.compat.php#L191
  6. averatec

    Linux Secure SSH - Two step verification

    what is wrong with private ssh key and port knocking?
  7. averatec

    Linux Secure SSH - Two step verification

    private ssh key + port knocking
  8. averatec

    TFS 1.1 - 1.0 mysqlclient

    ubuntu/debian apt-get install libmysqlclient-dev dla reszty są jakieś "udziwnione" menadżery pakietów
  9. averatec

    [Gesior AAC] Who is online fix for TFS 1.0

    don't use ANSI-89 syntax it's bad habbit corrected $q = 'SELECT p.* FROM `players` p RIGHT JOIN `players_online` po ON p.id = po.player_id'
  10. averatec

    Getting into PHP

    well... It's called method chaining(read about Fluent Interface), you don't know it?
  11. averatec

    Getting into PHP

    why did I make them protected? well it's simple only library funcionality should be private, it's good habbit also it's good to take just one naming convention, what's more everything should be as simple as it's possible so your getters/setters don't follow this rule anyway I'm not saying your...
  12. averatec

    [TFS 1.1] Trouble adding new attributes [Solved]

    read about bit flags and bit operators, 0x1EC is combination of all string attribute flags like ITEM_ATTRIBUTE_TEXT,ITEM_ATTRIBUTE_WRITER 0xFFFFFE13 is combination of all integer attribute flags
  13. averatec

    Compiling Party Share EXP Crash

    infnity loop, Player :: onGainExperience calls Party :: shareExperience then it calls Player :: onGainExperience and on, and on...
  14. averatec

    Getting into PHP

    <?php class Person { protected $name; protected $age; public function __construct($name, $age) { $this-> setName($name) setAge($age) ; } public function getName() { return $this->name; } public function...
  15. averatec

    Getting into PHP

    there are many free tutorials even with php manual in the Internet, don't spend money on books
  16. averatec

    Getting into PHP

    <?php $people = [ [ 'name' => 'Chris', 'age' => 18 ], [ 'name' => 'Tom', 'age' => 17 ], [ 'name' => 'Bob', 'age' => 15 ] ]; echo sprintf('My name is %s and I\'m %d yrs old.', $people[1]['name'], $people[1]['age']);
  17. averatec

    Tworzenie zdalnego pulpitu

    TeamViewer
  18. averatec

    Linux & Programming/Scripting Services

    right now I'll work with @J.Dre, so I have to suspended providing services. It's quite big project. I don't know when I'll be able to provide services again. I'm sorry.
  19. averatec

    Linux & Programming/Scripting Services

    I'll be back on Monday. I'm sorry.
  20. averatec

    TFS Programming Tools

    what tools?
Back
Top