All Projects → OTCv8 → otclientv8

OTCv8 / otclientv8

Licence: other
Clean, ready to use version of OTClientV8 - Alternative, highly optimized Tibia client

Programming Languages

lua
6591 projects
GLSL
2045 projects

Projects that are alternatives of or similar to otclientv8

OpenCoreMMO
Open-source MMORPG server emulator written in C#
Stars: ✭ 157 (-21.89%)
Mutual labels:  tibia
OTMapGen
Uses random noise to generate realistic OTBM terrain with auto-bordering.
Stars: ✭ 29 (-85.57%)
Mutual labels:  tibia
tibia-map-data
🔰 Fully explored Tibia maps in a human-readable format.
Stars: ✭ 61 (-69.65%)
Mutual labels:  tibia
Tibia-Wireshark-Plugin
Former development Repo for the now merged Tibia Wireshark Dissector
Stars: ✭ 17 (-91.54%)
Mutual labels:  tibia
exevo-pan
Exevo Pan is a better experience for Tibia Char Bazaar.
Stars: ✭ 73 (-63.68%)
Mutual labels:  tibia
pytibia
🤖 Fastest Tibia PixelBot. A great bot for Auto, Cavebot, Healing, Macro, Refill and Targeting! (Ready To Global)
Stars: ✭ 120 (-40.3%)
Mutual labels:  tibia
tibiawiki-sql
Python script that generates a SQLite database from TibiaWiki articles
Stars: ✭ 19 (-90.55%)
Mutual labels:  tibia
NabBot
Discord bot for Tibia servers
Stars: ✭ 51 (-74.63%)
Mutual labels:  tibia
OTBM2JSON
OTBM2JSON - A generic framework for programmatic modification of OTBM files.
Stars: ✭ 42 (-79.1%)
Mutual labels:  tibia
myaac
A free and open-source Automatic Account Creator (AAC) written in PHP
Stars: ✭ 94 (-53.23%)
Mutual labels:  otserv
electro
A free and open-source Automatic Account Creator (AAC) written in Javascript Stack;
Stars: ✭ 20 (-90.05%)
Mutual labels:  otserv
otservbr-global-archived
Archived, read-only repository. New repository: https://github.com/opentibiabr/otservbr-global
Stars: ✭ 340 (+69.15%)
Mutual labels:  otserv

OTClientV8

OTClientV8 is highly optimized, cross-platform tile based 2d game engine built with c++17, lua, physfs, OpenGL ES 2.0 and OpenAL. It has been created as alternative client for game called Tibia, but now it's much more functional and powerful. It works well even on 12 years old computers. In April 2021 it reached 290k unique installations, including 80k android installations.

Supported platforms:

Forum: http://otclient.net

Discord: https://discord.gg/feySup6

Website: http://otclient.ovh

Wiki: https://github.com/OTCv8/otclientv8/wiki

Version for developers

In this repository, you can find clean, always up-to-date, ready to use version of OTClientv8. Most commits from version 3.0 are automatic using GitHub Actions. If you want to help with development, please visit repository for developers - https://github.com/OTCv8/otcv8-dev

FEATURES

  • Rewritten and optimized rendering (60 fps on 11 years old computer)
  • Better DirectX9 and DirectX11 support
  • Adaptive rendering (automated graphics optimizations)
  • Rewritten and optimized light rendering
  • Rewritten path finding and auto walking
  • Rewritten walking system with animations
  • HTTP/HTTPS lua API with JSON support
  • WebSocket lua API
  • Auto updater with failsafe (recovery) mode
  • New filesystem
  • File encryption and compression
  • Automatic diagnostic system
  • Refreshed interface
  • New crash and error handler
  • New HTTP login protocol
  • Ingame shop
  • Updated hotkey manager
  • Updated and optimized battle list
  • Crosshair, floor fading, extra health/mana bars and panels
  • Much more client options
  • Removed a lot of useless and outdated things
  • Advanced bot
  • Linux version
  • Full tibia 11.00 support
  • Layouts
  • New login server (with ingame account and character creation)
  • Support for proxies to lower latency and protect against DDoS (extra paid option)
  • Bot protection (extra paid option)

And hundreds of smaller features, optimizations and bug fixes!

Check out Wiki page to see how activate and use new features

Old tools, like updater and tutorials has been moved to: OTCv8/otcv8-tools

There's github repo of tfs 1.3 with otclientv8 features: OTCv8/otclientv8-tfs

Quick Start for players

Download whole repository and run one of binary file.

Quick Start for server owners

Open init.lua and edit:

-- CONFIG
APP_NAME = "otclientv8" -- important, change it, it's name for config dir and files in appdata
APP_VERSION = 1337      -- client version for updater and login to indentify outdated client
DEFAULT_LAYOUT = "retro"

-- If you don't use updater or other service, set it to updater = ""
Services = {
  website = "http://otclient.ovh", -- currently not used
  updater = "http://otclient.ovh/api/updater.php",
  news = "http://otclient.ovh/api/news.php",
  stats = "",
  crash = "http://otclient.ovh/api/crash.php",
  feedback = "http://otclient.ovh/api/feedback.php"
}

-- Servers accept http login url or ip:port:version
Servers = {
  OTClientV8 = "http://otclient.ovh/api/login.php",
  OTClientV8proxy = "http://otclient.ovh/api/login.php?proxy=1",
  OTClientV8classic = "otclient.ovh:7171:1099",
  OTClientV8cwithfeatures = "otclient.ovh:7171:1099:25:30:80:90",
}
ALLOW_CUSTOM_SERVERS = true -- if true it will show option ANOTHER on server list
-- CONFIG END

Also remember to add your sprite and data file to data/things

That's it, you're ready to use OTClientV8.

DirectX version requires 3 dlls: libEGL.dll libGLESv2.dll d3dcompiler_47.dll

If it can't start (missing dlls) then user need to install visual studio 2019 redistributable x86: https://aka.ms/vs/16/release/vc_redist.x86.exe

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].