Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › MultiPlayer Game Hacks & Cheats › Other MMORPG Hacks › Tibia Hacks › Simple Trainer Tibia

Simple Trainer Tibia

Posts 1–8 of 8 · Page 1 of 1
Hacker Fail
Hacker Fail
Simple Trainer Tibia
Hi guys
Today I will share a simple bot that I made a long time ago..
This address is for version 10.79 !!!



main.cpp

Code:
#include "func.h"

int Func[99];

cPlayerInfo *pPlayer = (cPlayerInfo*)(Tibia + PlayerInfo);
cItemHack   *pItem   = (cItemHack*)(Tibia + ItemHack);

void Funcs()
{
	AddKey(VK_NUMPAD1, Func[0]);
	AddKey(VK_NUMPAD2, Func[1]);
	AddKey(VK_NUMPAD3, Func[2]);
	AddKey(VK_NUMPAD4, Func[3]);
	AddKey(VK_NUMPAD5, Func[4]);
	AddKey(VK_NUMPAD6, Func[5]);
	AddKey(VK_NUMPAD7, Func[6]);

	if ( Func[0] )
	{
		Sleep(10);
		keybd_event(VK_F8, 0, 0, 0);
	}

	if ( Func[1] )
	{
		Sleep(10);
		keybd_event(VK_F9, 0, 0, 0); 
	}

	if ( Func[2] )
	{
		Sleep(10);
		keybd_event(VK_F10, 0, 0, 0);
	}

	if ( Func[3] )
	{
		Sleep(10);
		keybd_event(VK_F11, 0, 0, 0); 
	}

	if ( Func[4] )
	{
		Sleep(10);
		keybd_event(VK_F12, 0, 0, 0);
	}

	if ( Func[5] )
		pPlayer->Level = 500; // level hack, just visual

	if ( Func[6] )
	{
		pItem->Amuleto = 3057; // amulet of loss
		pItem->Armadura = 3366; // magic plate armor
		pItem->Bota = 3079; // boots of haste
		pItem->Calça = 3389; // demon legs
		pItem->Capacete = 3387; // demon helmet
		pItem->Espada = 8102; // emerald sword
		pItem->Escudo = 3422; // great shield
		pItem->Mochila = 5926; // pirate backpack
	}
}

DWORD WINAPI MyHook(LPVOID lpArgs)
{
	while(true)
	{
		do{
			__asm CALL [Funcs];
		} while (!Tibia);
	}

	return 0;
}

BOOL WINAPI DllMain( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{ 
    if( dwReason == DLL_PROCESS_ATTACH )
    {
        DisableThreadLibraryCalls( hDll );
		CreateThread( 0, 0, (LPTHREAD_START_ROUTINE)&MyHook, 0, 0, 0 );
    }
 
    return TRUE;
}
func.h

Code:
#include "class.h"

void AddKey( int Key, int &variavel )
{
	if (GetAsyncKeyState(Key)&1)
		variavel =! variavel;
}
class.h

Code:
#include "address.h"

class cPlayerInfo
{
public:
	DWORD EXP; //0x0000 
char _0x0004[12];
	__int32 Level; //0x0010 
	__int32 SoulPoints; //0x0014 
	__int32 MagicLevel; //0x0018 
char _0x001C[100];

};//Size=0x0080

class cItemHack
{
public:
	DWORD SuporteItem; //0x0000 
char _0x0004[28];
	DWORD Anel; //0x0020 
char _0x0024[28];
	DWORD Bota; //0x0040 
char _0x0044[28];
	DWORD Calça; //0x0060 
char _0x0064[28];
	DWORD Espada; //0x0080 
char _0x0084[28];
	DWORD Escudo; //0x00A0 
char _0x00A4[28];
	DWORD Armadura; //0x00C0 
char _0x00C4[28];
	DWORD Mochila; //0x00E0 
char _0x00E4[28];
	DWORD Amuleto; //0x0100 
char _0x0104[28];
	DWORD Capacete; //0x0120 
char _0x0124[796];

};//Size=0x0440
address.h

Code:
#include <windows.h>

DWORD Tibia = (DWORD)GetModuleHandle("Tibia.exe");

#define PlayerInfo      0x4380F8
#define ItemHack        0x671EA8
If you wanna update, just get the address of PlayerInfo and ItemHack.

#1 · 10y ago
PG
PGster
were do i put these codes into and how do i use it
#2 · 9y ago
Hacker Fail
Hacker Fail
Quote Originally Posted by PGster View Post
were do i put these codes into and how do i use it
Study c++ // 2 short
#3 · 9y ago
InfinityGamer01
InfinityGamer01
Hi, uhm is there a thread that shows a tutorial on how to use this hacks?
#4 · 9y ago
Nimboso
Nimboso
Quote Originally Posted by InfinityGamer01 View Post
Hi, uhm is there a thread that shows a tutorial on how to use this hacks?
You'll have to learn C++, plus some basic game hacking. There are lots of resources in the cheat development sub forum here.
#5 · 9y ago
InfinityGamer01
InfinityGamer01
Quote Originally Posted by Nimboso View Post
You'll have to learn C++, plus some basic game hacking. There are lots of resources in the cheat development sub forum here.
I know some about C++, but I use Cheat Engine often. Also Tibia made a new Standalone client update that disabled all working bots and hacks, so, nvm.
#6 · 9y ago
MA
maruan
Looks pretty good.
#7 · 8y ago
FA
Farm4Ace
does it still work?
#8 · 7y ago
Posts 1–8 of 8 · Page 1 of 1

Post a Reply

Similar Threads

  • EXtreme Simple TrainerBy lemonhead in Combat Arms Hacks & Cheats
    23Last post 18y ago
  • Twelve Sky 2 simple trainerBy megaflcl in General Game Hacking
    7Last post 16y ago
  • [HELP]trying to do simple trainer for counter-strikesourceBy cheech123 in Visual Basic Programming
    4Last post 16y ago
  • BS Simple TrainerBy anti_ in Blackshot Hacks & Cheats
    14Last post 16y ago
  • BS Simple Trainer Updated 15.05.2010By anti_ in Blackshot Hacks & Cheats
    15Last post 16y ago

Tags for this Thread

None