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

    Ixodus Global 10.00 / 11.00 (start 3th June) - Discussion

    Thank you :) Yeah I did a huge step last year, spent a lot of time learning new stuff because I had to - the competition is strong and community is shrinking. :(
  2. gunz

    Windows login in client 11.04

    I cant check your connection.cpp
  3. gunz

    C++ move the monster back to own spawn position

    Truly this fpp.minTargetDist = 0; fpp.maxTargetDist = masterPos.y;
  4. gunz

    where play PLAYER activeNOW?!!666$$-OTS-refresh

    Would like to see you on Ixodus - Latest News
  5. gunz

    Ixodus Global 10.00 / 11.00 (start 3th June) - Discussion

    Welcome on Ixodus-global! After years of development of our European server, we have decided to open server in Canada which would be suitable for Latin American and North American countries. Our main goal is to ensure high quality gameplay with active and supportive staff members. Visit us on...
  6. gunz

    Tibia Clients

    Can you add clients of Tibia 10 ? With all Protocol versions: 11.00, 11.01, 11.10, 11.20, 11.30 etc..
  7. gunz

    C++ Crash server tfs 1.2 [I can pay for fix]

    This is from my code and seems to work. :) void ProtocolGame::updateCoinBalance() { NetworkMessage msg; msg.AddByte(0xF2); msg.AddByte(0x00); writeToOutputBuffer(msg); g_dispatcher.addTask( createTask(std::bind([](ProtocolGame* client) { if...
  8. gunz

    C++ Crash server tfs 1.2 [I can pay for fix]

    That's not a good idea to pass ProtocolGame to dispatcher. You should pass playerId instead.
  9. gunz

    Question about clients tibia 11

    Luckily, you can get ANY version of Tibia 11 client from CipSoft servers. They has not removed them. You just have to figure out the url for them. (WireShark)
  10. gunz

    [FRANCE] Gunzodus 10.00!and11.92 Warzone 4,5,6/Falcon Castle/New Asuras/Gnome Items

    Hello, If you have older version of Tibia 11 downloaded, you can send it to us and maybe we can work it out. PM me if you're interested. @Wamasa We have added 11 client recently. All players can use this client if they like to. We also plan to add some bonus for players using Tibia 11 client...
  11. gunz

    C++ send item to offline player depot

    This is the mailbox code, just change tmpPlayer.getInbox() to whatever you want. bool Mailbox::sendItem(Item* item) const { std::string receiver; if (!getReceiver(item, receiver)) { return false; } /**No need to continue if its still empty**/ if (receiver.empty()) {...
  12. gunz

    C++ send item to offline player depot

    Hello, If the player is offline you need to temporary load him from database, add item to depot and save back to database. Look to Mailbox code, it looks similiar with receiving parcels.
  13. gunz

    Lua How to make an item store a value?

    You can use item attributes. ITEM_ATTRIBUTE_NONE, ITEM_ATTRIBUTE_ACTIONID = 1 << 0, ITEM_ATTRIBUTE_UNIQUEID = 1 << 1, ITEM_ATTRIBUTE_DESCRIPTION = 1 << 2, ITEM_ATTRIBUTE_TEXT = 1 << 3, ITEM_ATTRIBUTE_DATE = 1 << 4, ITEM_ATTRIBUTE_WRITER = 1 << 5, ITEM_ATTRIBUTE_NAME = 1 << 6...
  14. gunz

    Solved critical hit network message in TFS 1.3?

    void ProtocolGame::AddPlayerSkills(NetworkMessage& msg) { msg.AddByte(0xA1); msg.add<uint16_t>(std::min<int32_t>(0xFFFF, player->getSkill(SKILL_FIST, SKILLVALUE_LEVEL))); msg.add<uint16_t>(player->getBaseSkill(SKILL_FIST)); msg.AddByte(player->getSkill(SKILL_FIST...
  15. gunz

    Protocol Version 1111

    Code to decompress packets using zlib in OTClient: void InputMessage::decompress() { z_stream zs; // z_stream is zlib's control structure memset(&zs, 0, sizeof(zs)); if (inflateInit2(&zs, 15) != Z_OK) throw(std::runtime_error("inflateInit failed while...
  16. gunz

    Protocol Version 1111

    Is is possible to get chunk size for the deflate algorithm ? I would like to implement this feature to OTClient. EDIT: fixed, I meant windowBits size which is default (15)
  17. gunz

    ( REMOVE ) Move through other players!

    bool Player::canWalkthrough(const Creature* creature) const { if(creature == this || hasCustomFlag(PlayerCustomFlag_CanWalkthrough) || creature->isWalkable() || (creature->getMaster() && creature->getMaster() != this && canWalkthrough(creature->getMaster()))) return true...
  18. gunz

    [FRANCE] Gunzodus 10.00!and11.92 Warzone 4,5,6/Falcon Castle/New Asuras/Gnome Items

    15 Promo codes applicable for accounts created after 4th February. izotbchiph 8209bqnhnt i7vyl8lo1u b7vzmhg1re ogjp18hnpk 8dzlw1qauj yormi0idqi mdtrheucw8 mmknstv48j k0je718ikg qxd1jwbbaf rwchfamwxh cydeb90vqt unwt5vrwwj pnmgj4btew We did major game update on April which includes several new...
  19. gunz

    Do you think is a good ideia?

    We have this stuff for like 2 years so far. :) https://www.gunzodus.net/shop/list
Back
Top