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

    Bot Functions in OTS

    Teckman worked on bot inbuilt in server Thread about it, but teckman delete them. Some information still on there. deleted thread
  2. MagicWall

    [OTClient Mod] Spacebar Attack

    @zOzBaSHa You have downloaded from link "Download (Mod)" or "Download (Implemented to console)"? Folder from first link "Download (Mod)" you must add to modules or mods folder (mods is more comfortable to use because is empty ;)). Right game toggle button (option ON): @4drik I'm not sure...
  3. MagicWall

    error Compiling for android

    1) Problem with CMake (probably, but I don't know portuguese to read it) 2) You don't have make command -> download "make" from cygwin (probably, but I don't know portuguese to read it) 3) Put libs to ndk folder (probably, but I don't know portuguese to read it) 4) Fix problems with environment...
  4. MagicWall

    Can only use this rune on creatures [Bug?]

    This problem with battle list happens on all protocols, but in protocols < 780 have additional effect in hotkeys when we using rune on creature (similar to battle list, but when we press hotkey). Solution to this problem: -Use newer version of OTClient, commit 7046fa1 and later.
  5. MagicWall

    Compilation on windows 7 with Visual Studio 2015

    I was have the same problem, and cause of them is very annoying. register_otclient_sdk_env.bat and register_otclient_boost_env.bat not working (don't add environments). So you must add it with other way. My solution: 1) Open files (register_otclient_sdk_env.bat, register_otclient_boost_env.bat)...
  6. MagicWall

    [OTClient Showoff] Show off your OTClient project/module/UI and other

    Loot statistics, something like Tibia analyzer, but less developed. Download: [OTClient Mod] Loot stats
  7. MagicWall

    Need Remove Message Update Of Mi Custom Tibia

    So, if you asked in OTClient thread i will give you advice. First: Download latest OTClient version from thread: OTClient builds (Windows) Second: put .dat and .spr file from your client to OTClient folder data\things\1098 (you need to create folder "1098") Third: Replce in folder data\images...
  8. MagicWall

    [OTClient Showoff] Show off your OTClient project/module/UI and other

    On this forum is a lot of threads with mapping and spriting showoff, so i want to make something similar, but with OTClient. This thread is created to show off your OTClient: Projects Mods/Modules UI And other Rules: No matter if the project/mods/ui is finished or during work. It's only...
  9. MagicWall

    Lua Use spells with crosshair

    You may make something similar to spell "Exura Sio 'Name'", spell with paramethers for example position -> exori mas mort [1342,643,7]. How make this more player friendly (don't write a lot of numbers)? First -> make this spell in server side. Second -> Add functionality in client to make hotkey...
  10. MagicWall

    Dissabled Battle OTC CLIENT

    In file modules\game_interface\gameinterface.lua in lines 375-379: Change this: elseif clickedWidget:getClassName() == 'UICreatureButton' then local creature = clickedWidget:getCreature() if creature then g_game.useWith(selectedThing, creature) end To this: elseif...
  11. MagicWall

    Lua Random numbers

    Maybe something like this: function randTest127653() local sumTest = 0 while sumTest < 100 do local rand = math.random(1, 10) if sumTest + rand > 100 then rand = 100 - sumTest end sumTest = sumTest + rand print('sumTest: '..sumTest..' rand: '..rand) end end...
  12. MagicWall

    Otclient open folder or file module

    Yes, it's easy to do. But you haven't explain how this should look. I don't know what you mean, you must be more specific. I see two options: 1) Open file using external program for file (like notepad) or folder (like explorer). 2) Open file using inbuilt OTClient module. 1) 2) Adding...
  13. MagicWall

    How accepted is OTClient?

    @River KA The problem with too much usage CPU occurs with option "Game framerate limit: max" (standard OTClient option) in my task manager ~28%, but for example with 60 FPS max, that like in screen. Probably maximally FPS really maximally use CPU.
  14. MagicWall

    How accepted is OTClient?

    @Hashirama479 Look at this project, OTClient theme like normal tibia: [OTC] Tibia Theme v1.2 @River KA OTClient use more RAM than normal client but CPU usage is similar. Look at my tests - FPS limit to 60, OTClient lights off (it's more advanced than in normal tibia client), OpenGL [CPU Intel...
  15. MagicWall

    How accepted is OTClient?

    All servers who is more advanced than normal OTS use OTClient, like pokemon, naruto, dragon ball etc. But not only this servers use OTClient, for example Medivia use only OTClient. Some players use OTClient as a replacement for normal client version (like me). Like you see at this thread...
  16. MagicWall

    [OTClient Mod] Spacebar Attack

    Yes, I tested it with summons. And it's works like with normal monsters because client see summon monster like normal monster. Add this video to other host, because this host don't support video playback. Use normal file host like: Dropbox How do I share photos with other people? File types...
  17. MagicWall

    [OTClient Mod] Spacebar Attack

    @4drik In the screen it's look like you press spacebar all time. But I'm don't sure, I think better way to show this bug is add video. Second problem, I don't see your battle list in this screen. It's very important because this module use battle list. Possible poblems: 1) You press spacebar all...
  18. MagicWall

    OTClient, auto setting hotkey spell on creation.

    You must add this code to for example console.lua: g_keyboard.bindKeyUp("Numpad5", doSomething) function doSomething() g_game.talk('exura') end But remember: Numpad5 with NumLock ON =/= Numpad5 with NumLock OFF.
  19. MagicWall

    [OTClient Mod] Touch Move

    I was thinking about this, I'm add later mod with touch attack buton.
Back
Top