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

    C++ Tfs 1.3 "void add(T value)" add in tfs 0.3.6

    But can I send direct numbers? (decimal) msg->AddByte(20); //decimal msg->AddByte(0x14); //hexadecimal
  2. Xevomu

    C++ Tfs 1.3 "void add(T value)" add in tfs 0.3.6

    I added it, but I don't know if I did it correctly. TFS 1.3: networkmessagem.cpp template<typename T> void add(T value) { if (!canAdd(sizeof(T))) { return; } memcpy(buffer + info.position, &value, sizeof(T)); info.position += sizeof(T)...
  3. Xevomu

    TFS 0.X Adding more tiles to game window [OTCv8] && [TFS 0.3.6]

    Does anyone know the problem? ProtocolGame parse message exception (5313 bytes, 403 unread, last opcode is 0xff (255), prev opcode is 0x64 (100), proto: 854): unhandled opcode 255 packet.log:
  4. Xevomu

    C++ Change Creature Id With Command

    Testing against bots (auto-targets)
  5. Xevomu

    C++ Change Creature Id With Command

    Is it possible to change the player id without leaving and entering the game? (cid always changes when relogging)
  6. Xevomu

    Solved [C++] CreatureEventList not start

    How to register the creature when you click set outfit? o_O
  7. Xevomu

    Solved [ZNOTE AAC] - Query Usage / security

    I thought the znote aac was the most up-to-date and secure among the existing ones. Thanks @Webtimize / @Discovery
  8. Xevomu

    Solved [ZNOTE AAC] - Query Usage / security

    Are znoteaac's existing functions not secure for use in custom pages? I thought I would have no problem using them.
  9. Xevomu

    Solved [ZNOTE AAC] - Query Usage / security

    Hello! I have doubts as to the safe use by select/insert/updates with querys in znote aac. 1) Is it better to use a mysqli_connect or use the znote functions? 2) What is the safest way to protect against sql-injection? mysqli_query($connection, "UPDATE znote_accounts SET points = '$points'...
Back
Top