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

    Changing from 32 pixels to 128 pixels

    I don't get it either. It'll only change the quality of mapview, not its real size. This was a planned change ages ago. Healthbar/skulls would be widgets made with lua/otui files. Positioning them could be done using that position anchors, that are used on uiminimap (centerInPosition). Or...
  2. Baxnie

    How to make new fonts?

    It's a GIMP plugin. You can get it here: https://github.com/edubart/otclient/tree/master/tools/gimp-bitmap-generator
  3. Baxnie

    Changing from 32 pixels to 128 pixels

    OTC shows for default 15x11 tiles on its mapview. For example, my 1920x1080 resolution. Mapview will keep aspect ratio and we can't forget about the chat, so the final tile size for me would be something like 64x64. (11*64=704 + ~300 pixels for chat would fill my screen) Using 32x32 textures...
  4. Baxnie

    Help with font...

    You must generate a new font png with the desired size. OTClient uses bitmap fonts.
  5. Baxnie

    [DLL] Messing with client gui (Cipsoft one) - no injector.

    This reminds me a lot of petitcoeur's code that he posted at tpforums. I was never able to find the original again, it was a great example. I had to rewrite all Class** files and remove that crash. The crash is here btw: void DrawRectangle(int nSurface, int X, int Y, int W, int H, int nRed, int...
  6. Baxnie

    How to make a change log?

    Take a look at options module. It works the same way. It's a button on topmenu that creates a window. You just have to edit its content to a TextEdit, ScrollBar, Button.
  7. Baxnie

    100 Otlanders! [60/100]

    Please ignore this post
  8. Baxnie

    How to block the default client?

    guys???? Just use OS variable. at player.h: bool isUsingOtclient() const { return operatingSystem >= OsOtclientLinux; } at enums.h: enum OperatingSystem_t { CLIENTOS_LINUX = 0x01, CLIENTOS_WINDOWS = 0x02, OsFlash = 3, OsOtclientLinux = 10, OsOtclientWindows = 11...
  9. Baxnie

    Question ò_ó

    Yes, there's some tutorials about it. You should start here: cplusplus.com - The C++ Resources Network When you know enough, you can start taking a look at otserv sources, that you'll find in otland.
  10. Baxnie

    Question ò_ó

    Not an easy task. You've to take a look at otserv protocol 7.72 and makes changes on otclient to fit it.
  11. Baxnie

    Question ò_ó

    Yes, there's a way to add any version you want.
  12. Baxnie

    Limit Magic Effect

    Use dump << "lala"; or a breakpoint to check if that's really active. if(g_game.getFeature(Otc::GameMagicEffectU16)) { dump << "u16"; effectId = msg->getU16(); } else { dump << "u8"; effectId = msg->getU8(); } There's a certain place to add...
  13. Baxnie

    [Mod] Mega Hotkeys Development

    You got my like. This is one of the things that were missing. When you complete it, send a pull request to otclient's github page.
  14. Baxnie

    Otclient error

    This will be solved when this is done. https://github.com/edubart/otclient/pull/281 However neither me or bart are working on this atm. Feel free to contribute.
  15. Baxnie

    Displaying/handling creature names

    Use extended opcodes to achieve it.
  16. Baxnie

    get vocation to client and another mana bar for each voc. Possible?

    Then go for it. Study, learn. Come back here with concrete doubts instead of begging bumps.
  17. Baxnie

    Introduction to OTClient.

    I didn't like it at begining also. However it's really great now, your eyes will get used to it.
  18. Baxnie

    Minimap windows resize width?

    Miniwindows have an Resizeable widget attached to its bottom. You shall add it to sides.
  19. Baxnie

    Spells Bar for Tibia.

    Well it must be said. I want an unicorn.
Back
Top