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

    Physfs error - almost!

    try install libphysfs-dev with apt-get(sudo apt-get install libphysfs-dev) and compile
  2. gugu15

    What is the easiest way to compile an otclient?

    To use c::b is better, but to compile with c::b you need define the macro -DWIN32 and to change some lines of code
  3. gugu15

    Error in Compiling (msvc15)

    Look again but inside the bin folder. Like in the folder otclient-sdk-master\libvorbis-1.3.5\bin you can find the libvorbis.dll and libvorbisfile.dll
  4. gugu15

    [SOLVED] Second right panel

    I already did it. It's how the margoh told, you need look how the panel is made. When I made it, I cloned the code of right panel in the OTUI file
  5. gugu15

    Error in Compiling (msvc15)

    You can try put the dlls on the otclient folder. The dlls can be found in the otclient_sdk folder
  6. gugu15

    Mod or sourcecode ManaBar under healthBar in displayUI

    I made this code at the time I read this topic. It was fast. But to be activated with a button or an option you can do the same function of drawing the name of the creatures
  7. gugu15

    Problem with compiling on Windows | CodeBlocks

    I made a pull request on the project with some modifications to compile otclient with mingw32 on codeblocks
  8. gugu15

    compiling with cmake 3.4.2 problems missing file libgmp-10.dll

    I compiled the otclient in mingw32 but it was so hard. I had to download the Boost source and compile the libraries with mingw32. After this I had to define the macro -DWIN32. And then I solved several problems in the code while trying to compile
  9. gugu15

    Mod or sourcecode ManaBar under healthBar in displayUI

    I read this topic and I made the code to draw manabar under healthbar. void Creature::drawInformation(const Point& point, bool useGray, const Rect& parentRect, int drawFlags) { if(m_healthPercent < 1) // creature is dead return; Color fillColor = Color(96, 96, 96)...
  10. gugu15

    Get Messages from chat

    What a surprise! Uses the onTalk function with the Connect function
  11. gugu15

    table

    You can send the table as string
  12. gugu15

    How getName from item after container:getItems()

    you can get it with look '-'
  13. gugu15

    How getName from item after container:getItems()

    The item name is not in .dat file, it's impossible get it
  14. gugu15

    How getName from item after container:getItems()

    This happens because the item name does not stay on the client
  15. gugu15

    Bug solved Idle Animation

    Hello guys After getting very angry at seeing the wrong animations of the creatures, I decided to put my hand in the dough and settle, and it worked. What was happening was that the animations of the creatures are separated in the .dat file, stopped group and walking group. Otclient even reads...
  16. gugu15

    Short-Time Freelancer (+ Extra)

    Wool, your jobs is awesome man! I don't know speak this in english but, você me inspirou a fazer mais coisas para o otclient.
  17. gugu15

    Programmer Looking for - OTClient programmer

    If you still need help in this job, send the informations pm.
  18. gugu15

    Compiling on CodeBlocks

    I downloaded the Mingw again and now I have these 3 mistakes : CMakeFiles\otclient.dir\build.make|4005|recipe for target 'otclient.exe' failed| CMakeFiles\Makefile2|66|recipe for target 'CMakeFiles/otclient.dir/all' failed| C:\otclient\Makefile|126|recipe for target 'all' failed| line 4005 of...
  19. gugu15

    Compiling on CodeBlocks

    I want compile the otclient on codeblocks with OPENGLES = 2.0 but this erros be return what can i do?
  20. gugu15

    [MOD] HUD

    Hello boys. Today I created a MOD that print itens and texts in top left of your screen. This mod can to be used for print the any informations that you want. You can select the colors of texts: "red","green", "yellow", "blue", "blue1" My english is sad , sorry. The MOD have the three functions...
Back
Top