Results 1 to 8 of 8
  1. #1
    Hacker Fail's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    C++
    Posts
    2,136
    Reputation
    242
    Thanks
    12,562

    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.

    Member Level 1 since November, 2011
    Contributor since March, 2015
    Game Hacking Team : 06/14/2017

     

  2. #2
    PGster's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    were do i put these codes into and how do i use it

  3. #3
    Hacker Fail's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    C++
    Posts
    2,136
    Reputation
    242
    Thanks
    12,562
    Quote Originally Posted by PGster View Post
    were do i put these codes into and how do i use it
    Study c++ // 2 short
    Member Level 1 since November, 2011
    Contributor since March, 2015
    Game Hacking Team : 06/14/2017

     

  4. #4
    InfinityGamer01's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Location
    Earth, Probably
    Posts
    94
    Reputation
    10
    Thanks
    103
    My Mood
    Bored
    Hi, uhm is there a thread that shows a tutorial on how to use this hacks?

  5. #5
    Nimboso's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    554
    Reputation
    21
    Thanks
    2,634
    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.

  6. #6
    InfinityGamer01's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Location
    Earth, Probably
    Posts
    94
    Reputation
    10
    Thanks
    103
    My Mood
    Bored
    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.

  7. #7
    maruan's Avatar
    Join Date
    Jul 2018
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    2
    Looks pretty good.

  8. #8
    Farm4Ace's Avatar
    Join Date
    Jan 2019
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    1
    does it still work?

Similar Threads

  1. [Release] BS Simple Trainer
    By anti_ in forum Blackshot Hacks & Cheats
    Replies: 14
    Last Post: 06-10-2010, 10:00 PM
  2. [Release] BS Simple Trainer Updated 15.05.2010
    By anti_ in forum Blackshot Hacks & Cheats
    Replies: 15
    Last Post: 05-17-2010, 10:17 PM
  3. [HELP]trying to do simple trainer for counter-strikesource
    By cheech123 in forum Visual Basic Programming
    Replies: 4
    Last Post: 02-17-2010, 09:29 PM
  4. Twelve Sky 2 simple trainer
    By megaflcl in forum General Game Hacking
    Replies: 7
    Last Post: 12-10-2009, 06:52 AM
  5. EXtreme Simple Trainer
    By lemonhead in forum Combat Arms Hacks & Cheats
    Replies: 23
    Last Post: 08-09-2008, 10:00 AM