MafiaWars bot tutorial

On martes, 1 de marzo de 2011 0 comentarios

MafiaWars bot tutorial

Tutorial
1)Download
You can download our software from http://www.mafiawarsbot.org/download

2)Install
After downloading you have to run setup and answer on all questions.Then after success installing you will see new shortcut on the desktop.



3)Work with bot
Run program by using shortcut, will appear new window (see below), you can change program settings or just press "Start" and bot begin work.



On the settings page you can do:
a)change url which will used for start game
b)select show or not tray messages
c)select show or not time in the log area before every string
d)set bot interval
e)show or not API function call (it is usefull for developers)

After change setting you have to press "Save settings", and they will apply after this.


Next you have to go to "Main" tab and press "Start" button, page loading will begin. On the authorization page you should enter your login and password and press "Log in".


After sucees authorization bot begin work, at first launching bot will do nothing, it's just get all game settins and let you decide what should it do.All bot functional based on plugins, so if you want do something you should use special plugin. After set plugin settings you can wait "bot interval" time or just go on the main tab and press "Start" button.
All plugins description you can find on their homepages, on the forum http://www.allbots.org/forum.


Another important plugin - "Plugins manager", you can use it for select only that plugins that you need, you also see plugins descriptions, authors and their homepages.




4)Additional
You can use manual mode, and play in bot window


You can create game picture snapshot at any time


You can interrupt bot's work
Read more ...»

Bot for MafiaWars

On 0 comentarios

Bot for MafiaWars

MafiaWars bot is a program which possible you more effective play Mafia Wars.
Bot is easy to use and absolutely free.

Bot features:
1) Perform a jobs (buy the necessary equipment)
2) Fight the mafias. You can set options for choosing an mafias

 
 

Download MafiaWars bot

MafiaWars bot ver1.1
1) first release
Download
 
Read more ...»

Treasure Isle bot tutorial

On 0 comentarios

Treasure Isle bot tutorial

Tutorial
1)Download
You can download our software from http://www.TreasureIsleBot.org/download

2)Install
After downloading you have to run setup and answer on all questions.Then after success installing you will see new shortcut on the desktop.



3)Work with bot
Run program by using shortcut, will appear new window (see below), you can change program settings or just press "Start" and bot begin work.



On the settings page you can do:
a)change url which will used for start game
b)select show or not tray messages
c)select show or not time in the log area before every string
d)set bot interval
e)show or not API function call (it is usefull for developers)

After change setting you have to press "Save settings", and they will apply after this.


Next you have to go to "Main" tab and press "Start" button, page loading will begin. On the authorization page you should enter your login and password and press "Log in".


After sucees authorization bot begin work, at first launching bot will do nothing, it's just get all game settins and let you decide what should it do.All bot functional based on plugins, so if you want do something you should use special plugin. After set plugin settings you can wait "bot interval" time or just go on the main tab and press "Start" button.
All plugins description you can find on their homepages, on the forum http://www.allbots.org/forum.


Another important plugin - "Plugins manager", you can use it for select only that plugins that you need, you also see plugins descriptions, authors and their homepages.




4)Additional
You can use manual mode, and play in bot window


You can create game picture snapshot at any time


You can interrupt bot's work
Read more ...»

Bot for Treasure Isle

On 0 comentarios

Bot for Treasure Isle

TreasureIsle bot is a program which possible you more effective play Treasure Isle.
Bot is easy to use and absolutely free.

Bot features:
1)Auto dig maps
2)Find treasures
3)Find fruit
4)Auto unlock gates
5)Seed and harvest crops
6)Harvest trees
7)Collect neighbors trees, chetsts
8)Bot functional based on plugins, and if you want you can create your own plugin.

 
 
 

Download Treasure Isle bot

TreasureIsle bot ver1.1
1) first release ;)
Download
Read more ...»

SetWindowsHookEx DLL injection.

On viernes, 28 de enero de 2011 1 comentarios

GetProcAddress fails with ERROR_PROC_NOT_FOUND.

What am I overlooking within the DLL?

Inject

Code:
void Injector::Inject(void){
   if(CheckProcess()){
      HMODULE dll  = LoadLibrary(dll_name);
      FARPROC proc = GetProcAddress(dll, "GetMsgProc");
      HHOOK   hh    = SetWindowsHookEx(WH_GETMESSAGE, (HOOKPROC)proc, dll, te.th32ThreadID);
      UnhookWindowsHookEx(hh);
   }
}


DLL
Code:
#include

extern "C" __declspec(dllexport)LRESULT CALLBACK GetMsgProc(int nCode, WPARAM wParam, LPARAM lParam){
   return CallNextHookEx(0, nCode, wParam, lParam);
}

BOOL APIENTRY DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved){
   UNREFERENCED_PARAMETER(hinstDLL);
   UNREFERENCED_PARAMETER(fdwReason);
   switch(fdwReason)
   {
   case DLL_PROCESS_ATTACH:
      MessageBox(0, "Hi", "Sup", MB_OK);
      return TRUE;
   case DLL_PROCESS_DETACH:
      return TRUE;
   }
   return ERROR_SUCCESS;
}

Read more ...»