• 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. 4drik

    OpenTibia [7.6] Mignari Item Editor

    If I understand you made support for 7.6 / 7.7 / 7.72. Let's go then to itemsloader.h. There we have otb versions: enum clientVersion_t { CLIENT_VERSION_750 = 1, CLIENT_VERSION_755 = 2, CLIENT_VERSION_760 = 3, CLIENT_VERSION_770 = 3, CLIENT_VERSION_780 = 4...
  2. 4drik

    OpenTibia [7.6] Mignari Item Editor

    Hello. Deleting HasCharges flag and adding signature of spr & dat is not enough. Versions of protocol 7 are different than 8+ because of attributes: decay to, decay time, floor change, slot, rotate to, skill, attack, defense, armor, weight etc. Let's see armor as an example, EdMignari's...
  3. 4drik

    Using blender to create sprites...

    I think hands are a little too wide. The great advantage of this method is the perfect animation. However, the details cannot be made like a spriter did. I suppose that giving such a base to a spriter would have an unbelievably good result.
  4. 4drik

    I pay $ whoever solves my problem! Illegal value ERROR!

    Hello. Maybe you have Private IP-address. If yes, as far as I know, you can play with friends thanks to Hamachi.
  5. 4drik

    OTClientV8

    Now I am ashamed that I did not notice the next page. In any case, the most important message, which is in bold, I did not repeat, so it is still a valuable post.
  6. 4drik

    OTClientV8

    There was nothing rude about it. This function is available in OTClient, so I agree that it is lack of your knowledge. https://github.com/edubart/otclient/search?q=GameMagicEffectU16&unscoped_q=GameMagicEffectU16 https://otland.net/threads/limit-magic-effect.194370/ You have two options, C ++ or...
  7. 4drik

    C++ A question about c ++ programming

    #include <iostream> #include <chrono> #include <cstdlib> using namespace std; int main() { bool hasFollowPath = true; bool updateLook; auto t1 = std::chrono::high_resolution_clock::now(); for(int i=0; i<1000; ++i){ if(((std::rand() % 10 ) + 1) <= 7){...
  8. 4drik

    C++ A question about c ++ programming

    What do you think will happen faster, checking one bool or generating a random number and comparing its value? Order to change.
  9. 4drik

    OTClientV8

    As far as I know, anyone can have source for $5000
  10. 4drik

    Drawing bottomright of outfit cropped out

    I think you are struggling with a problem that I had a few years ago: https://github.com/edubart/otclient/issues/562 Solution of Hrsantiago is the correct one: https://github.com/edubart/otclient/issues/562#issuecomment-54914948
  11. 4drik

    Tibia XYZ - A map for Tibia [work in progress]

    Hello. First of all - a great idea. This is the best map presentation I've ever seen. Secondly, there have been no updates for months. Has the project been abandoned? Third, are you going to let use of XYZ for OTS? #Down: I'd be happy with current XYZ project.
  12. 4drik

    OpenTibia Yurots crasher

    It is true. void Protocol76::parseHouseWindow(NetworkMessage& msg) { msg.GetByte(); uint32_t id = msg.GetU32(); std::string new_text = msg.GetString(); if(player && windowTextID == id){ player->receiveHouseWindow(deleteSpecialCharacters(new_text)); } } std::string...
  13. 4drik

    Fix/Patch 7.6 Yurots Crash Fix

    Hello, there's my last edit: std::string NetworkMessage::GetString(uint16_t stringlen/* = 0*/, bool getRaw/* = false*/) { if(getRaw == false) stringlen = GetU16(); if((stringlen >= (16384 - m_ReadPos)) || stringlen <= 0) return std::string(); char* v =...
  14. 4drik

    Programmer Upgrade Evolution source XML 8.0

    The most important thing about optimization in old servers like Evolutions or YurOTS are things related to tile and spectators. Improving the engine I got a reduction in CPU consumption from 30% to 3% with 50 players and the game is very smooth, save unnoticeable, and yet I use the XML engine...
  15. 4drik

    Graphic Designer Adrik's graphic

    New logo that you will see soon at DBLots! If you need logo like that, msg me at my Discord: 4drik#3435 Remember that the drawn elements (like the blue dragon ball) are made from scratch.
  16. 4drik

    Graphic Designer Adrik's graphic

    Next work - background for music video (based on shown photo below): and drawn avatar:
  17. 4drik

    Graphic Designer Adrik's graphic

    Hello. Logo for Mr.Typeee (twitch channel): I'm available to work. Discord: 4drik#3435
  18. 4drik

    [1 Month] Naruto Server from scratch

    If you can't do a research, how do you want to make a good server? I suppose the lack of your success.
  19. 4drik

    Magic Effect 'move' with player?

    Not this way. @margoh told you well
  20. 4drik

    [Bug?] OTClient 7.72 Protocol - Cannot login (just different packets?)

    https://github.com/edubart/otclient/blob/7922f8238e40bd46a75c1f9eea3ee3af739df6fa/modules/gamelib/game.lua#L54 I think only your 'ot client' does not support 7.72. I connected to my 7.72 server without any problem by official OTClient like 3 years ago. You must have horribly old files.
Back
Top