• 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

    Hotkey Bar

    try 'F1'
  2. gugu15

    Size chat otc

    Or you can put margin left or right
  3. gugu15

    Compile on linux? What distribution I should use?

    I had use ubuntu 14 and 16 and it works. But i had problems with processor AMD 64x(amd fx) on the ubuntu. It's so easy compile on ubuntu
  4. gugu15

    OTClient compilation problem | MVSC 2015 Windows 10

    Try to use mingw. I used msvc but i had some problems and so i'm use mingw32 now
  5. gugu15

    Sending outfit in character list

    To use setOutfit you need send a table like parameter, example: local outfit = { mount = 0, type = 144, feet = 78, addons = 3 legs = 95 auxType = 0, head = 78, body = 114} The table has the looktype, colors, addons and mount
  6. gugu15

    return table from C++

    Thank you so much, I'll try make that Edit: I got it! I saw the callLuaField code and lua_pushvalue code and made this code:
  7. gugu15

    return table from C++

    Hello guys! I'm building a interface with SQLITE3 and Lua on the otclient. But I want return a table with the results of the SELECT for use in Lua. A table like: local selected = db:exec("SELECT * FROM PERSON") --[ what I wanted: selected = {{name = "Scot", age = 18, id = 1}, {name = "Louis"...
  8. gugu15

    Minimize battle bug

    You can look for something on the otclient battle module on the github project
  9. gugu15

    Help OTClient Compile

    @CipsoftStinks cmake_minimum_required(VERSION 2.6) project(otclient) set(VERSION "0.6.6") option(FRAMEWORK_SOUND "Use SOUND " ON) option(FRAMEWORK_GRAPHICS "Use GRAPHICS " ON) option(FRAMEWORK_XML "Use XML " ON) option(FRAMEWORK_NET "Use NET " ON) option(FRAMEWORK_SQL "Use SQL" OFF)...
  10. gugu15

    Help OTClient Compile

    delete this: " <<< line 39" '-'
  11. gugu15

    Help OTClient Compile

    where is this: if(MINGW) add_definitions(-DWIN32) endif() change to this: if(MINGW) add_definitions(-DWIN32) endif()
  12. gugu15

    Help OTClient Compile

    insert a tab at line 11 @CipsoftStinks
  13. gugu15

    Attack first/second Battle List OTClient

    You need to use the function getSpectators. 'Cause if you use the battlelist, it will stay opened when you're playing
  14. gugu15

    Help OTClient Compile

    It's easy, at line 57 you need change the fseeko64 to fseek
  15. gugu15

    Help OTClient Compile

    look at these commits Modifications to compile with mingw32 by GustavoBlaze · Pull Request #850 · edubart/otclient · GitHub
  16. gugu15

    Help OTClient Compile

    To compile with mingw32 you need define the macro -DWIN32 and change some things at code
  17. gugu15

    Running/Compiling on Windows 10

    I use windows 10 x64 and I compiled the client using msvc 2015 but when running it stops responding for any reason. The solution finded was compile with code::blocks
  18. gugu15

    What is the easiest way to compile an otclient?

    I do not know. I do not care so much about warnings, only with errors. For me if compiling is already good
  19. gugu15

    Error in Compiling (msvc15)

    glew32.dll is at folder otclient-sdk-master\glew-2.0.0\bin\x64
Back
Top