• 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!

Recent content by MagicWall

  1. MagicWall

    Any good mobile servers?

    NoxiousOT Android client
  2. MagicWall

    Good server w/ randomized attributes loot?

    Maybe Noxiousot.com? Otland Noxiousot
  3. MagicWall

    is it possible to make otclient on web browser?

    Have you tried using these security headers: Cross-Origin-Opener-Policy: same-origin Cross-Origin-Embedder-Policy: require-corp More info: SharedArrayBuffer security requirements stackoverflow Vercel docs
  4. MagicWall

    is it possible to make otclient on web browser?

    (Client) JavaScript/TypeScript (or WebAssembly + JavaScript/TypeScript) + Canvas + WebSocket + WebAPI + knowledge of binary data in a web browser + (optional) HTML + CSS + web framework. (Server) WebSocket support in TFS (or WebSocket proxy in web account maker/microservice).
  5. MagicWall

    OTClient How do people edit their fonts

    This tool is used to create new font, so you may upload font file and create new font image + .otfont. If you want to edit current font, you will need try to configure .otfont for your edited font (probably change space-width: old space-width - stroke width). Example fonts what you can use in...
  6. MagicWall

    OTClient How do people edit their fonts

    1) Edit height, glyph-size, space-width in .otfont file, example file: sans-bold-16px.otfont 2) Create new font: - Use GIMP script from main OTClient repository: gimp-bitmap-generator - A long time ago I created a simple web app for create OTClient fonts (.png + .otfont)...
  7. MagicWall

    OT Client

    You need to find these libraries (somewhere in your Visual Studio/vcpkg libraries folder) and place them in the main otclient folder (next to the .exe file).
  8. MagicWall

    Using Bing AI DALL-E to create Tibia like items

    @matiszek30 Can you share the queries you use to generate these images? Can leonardo.ai generate 32x32px images?
  9. MagicWall

    Using Bing AI DALL-E to create Tibia like items

    Trying to create a full set with a similar style (Bing AI DALL-E): Query: Example query: Result with compare (96x96/64x64/32x32): Examples:
  10. MagicWall

    Using Bing AI DALL-E to create Tibia like items

    Update: When I download directly from bing: Or with full resolution:
  11. MagicWall

    Using Bing AI DALL-E to create Tibia like items

    Hi, today I tested new Bing AI functionality for generated images focusing on its possible use for creating Tibia sprites, effects: If anyone wants to try: 1) Open Microsoft Edge browser. 2) Go to site bing.com 3) Login in bing to Microsoft account. 4) Open Chat 5) Then write in chat something...
  12. MagicWall

    mysql query updates all columns

    Because you use "SET hunt_id" statement instead "WHERE hunt_id": SET `hunt_id` = %d instead: WHERE `hunt_id` = %d Probably you want change all columns with id "hunt_id", so use "WHERE" statement for variable "hunt_id": db.query(string.format("UPDATE exclusive_hunts SET `guid_player` = %d...
  13. MagicWall

    [OTClient Mod] Loot stats

    This module is based on .dat and .spr files, but it need to change item names (loot informations) to id, so it's need additional items.xml file to parse names to server id, and then to client id, to get images from .spr file. Of course it's possible to create a module with a server script, who...
  14. MagicWall

    [OTClient Mod] Loot stats

    Do you mean change item name from stored data to client item id? You can get item name, then change it to item object, and then get client item id. To use it, you need to load item.otb and item.xml (module default load these files). findItemByName = g_things.findItemTypeByName(ITEM_NAME) local...
  15. MagicWall

    Polski Role Play OTS

    Pomysł ciekawy, choć to raczej nie moje klimaty, to jednak sentyment do Tibii sprawiłby że mógłbym spróbować. Zapewne kluczem do sukcesu jest zebranie odpowiedniej grupy ludzi. Fajnie gdyby projekt był open source, i każdy gracz mógł wpływać na rozwój serwera, tym samym przyciągałby dev'ów...
Back
Top