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

    Positioning 64x64

    const Rect screenRect(dest + (textureOffset - m_displacement *2 - (m_size.toPoint() - Point(1)) * g_gameConfig.getSpriteSize()) * g_drawPool.getScaleFactor(), textureRect.size() * g_drawPool.getScaleFactor()); m_displacement *2 should be everywhere
  2. M

    Positioning 64x64

    these 4, basically everywhere You have m_displacement You should multiple this by scale factor (64x64 means scale 2)
  3. M

    Positioning 64x64

    You can have a look at otcv8 changes, which I've made some time ago (regarding 64x64 sprites - HD mod) - filter otcv8 repo by mrianura author 1711468774 I solved there exactly Your issues
  4. M

    Update CMakeLists.txt file

    So in order to see cmake changes you have to regenerate msvc project (cmake-gui can be helpful). You can not use already provided project, because is not configured to use cmake.
  5. M

    Update CMakeLists.txt file

    what are You using to build the project ? MSVC project or cmake :D ?
  6. M

    Programmer Otclient in browser

    I believe that's not much more work than one week ~30hrs of work. Basically You have to inherit Platform and window class. Even more - I saw a few years ago, that someone on this forum showed working otclient in web assembly.
  7. M

    Programmer Otclient in browser

    Im I missing something ? Author asked for WASM otclient compilation, not to rewrite everything from scratch. As You can see, even Kondrah started this (not finished ofc), by adding new SDL window.
  8. M

    macOS compiling lua error

    check if this path is valid -DLUA_INCLUDE_DIR=/opt/homebrew/Cellar/[email protected]/5.1.5_8/include/lua5.1/
  9. M

    Global scope: callLuaField is undefined?

    @lexus21 bumped this, so i answered
  10. M

    Global scope: callLuaField is undefined?

    Thats obvious, he forgot to inherit from LuaObject
  11. M

    Programmer Test To Crash my server? Is this legal here?

    for 10$ I would not even invest my time to write pm to You :D
  12. M

    Programmer I'm looking for a very expert programmer

    You specified, that only null can cause segv, which is not true :)
  13. M

    Programmer I'm looking for a very expert programmer

    pointer, which points to freed memory can cause segmentation fault :)
  14. M

    OTCv8 - Crash on Android Client

    take latest v8 build and execute exe with flags encryption and android no, just prepare data.zip and integrate with apk
  15. M

    OTC8 mobile critical lua error

    missing ram to load whole huge spr
  16. M

    OTCv8 - Crash on Android Client

    basically new otcv8 has updated luajit library to newer version, so You have to also recompile lua scripts to use newer version. Why this crash happen ? -> While encrypting client using --encrypt command otclient detects .lua extension and is doing additional step: 1. compile lua script to...
  17. M

    Odenia is looking for more staff members.

    Strong problem-solving and analytical skills Attention to detail and ability to write clean, organized code these requirements are contradicting with Junior Coder xD
  18. M

    OT Client Error

    visual studio project preferences, linker or c/c++ options (don't remember which one)
  19. M

    OT Client Error

    use SSE2 not AVX, and if You are using x86 system, then use x86 client
  20. M

    Help with shader outline

    You have to draw whole outfit to frame buffer (which will be a bit bigger than final outfit square) and at the end draw that frame buffer with shader on the map.
Back
Top