Showing posts with label Hosting. Show all posts
Showing posts with label Hosting. Show all posts

TyranO's timehack for 1.24e

Posted by bL4cK_m0p on Friday, August 13, 2010

TyranO's timehack for 1.24e


This is an old hack I had on my computer. I MADE THIS HACK IN 1.22 (SOURCE IS BELOW) Back in the day people thought this would "kill battle.net" (yea right).

Three modes:

F4: Longloads for 4 min 30 seconds (I think max is 5 minutes before you d/c and lose), customizable. Only press ONCE, as soon as loading starts.
F5: Longloads manually until you press F6. Press before or during loading.
F6. Longload is OFF (won't work if you pressed the F4 mode though).

This is pretty useless and simple, but hey, it's a zmap feature.


Quote Originally Posted by undead_warrior View Post
dude Tyrano, i heard rumors that you're the next bendik... I really hope it's ain't so but in these pass few weeks, you're acting more and more like him... WAT THE **** DUDE..??
Quote Originally Posted by hohodyret View Post
But he still missing to credit someone....
Quote Originally Posted by Jolinar View Post
I second that.
This is the kind of shit that makes me want to leave this site for good. I have nobody to credit.

You guys are killing me. This is my hack, I wrote it in 1.22 and I just updated the offset. And no it isn't detected. Who should I give credit to? This is my offset, I found it, wrote the program. How did I get the idea to make it? Some guy on msn told me back in the day to make a hack that pauses loading. I told him it was easy to make and that there were tons of "longload" offsets and methods, made this with hotkeys as it was simpler to use.

Have I ever ripped a hack? I mean, COME ON.

Code:

#include
#include
#include
#include "inireader.h"
#include "colors.cpp"

using namespace std;

DWORD GetPID (char* proc);
void EnableDebugPriv();
DWORD GetDLL (char* DllName, DWORD tPid);

#define write(addr, ...) __write(addr, __VA_ARGS__, -1)
void __write(DWORD addr, ...);

int main(void)
{

EnableDebugPriv();
bool bPressed[4] = {false, false, false, false}; //Whoop, don't trigger multiple times
SetConsoleTitle("TyranO's TimeHack (LongLoad) for 1.24e");
DWORD Address = 0x60A33F;

CIniReader iniReader(".\\config.ini");
int sleep = iniReader.ReadInteger("Settings", "sleep", 270000);

if (GetPID("war3.exe") == 0)
{
cout << "WC3 Not found." << endl << endl; system("Pause"); exit(0); } else { SetColor(9); cout << "||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||"; cout << "|||||||| ||||||||||||||||||||||||||||||||||||||||||||||| ||||||||||"; SetColor(11); cout << "|||||||||||| |||||||| |||||| |||||||||||||||||||||||||||||||||| ||||| |||||||||"; cout << "|||||||||||| |||||||| |||| |||| |||||||| |||||||| |||| |||| ||||||| ||||||||"; SetColor(10); cout << "|||||||||||| ||||||||| ||||| |||| | ||||||| ||| |||| ||||||| ||||||||"; cout << "|||||||||||| ||||||||||| ||||||| |||||| ||| |||||| | ||| |||| ||||||| ||||||||"; SetColor(12); cout << "|||||||||||| ||||||||||| ||||||| ||||| ||||| || || |||| ||||||| ||||||||"; cout << "|||||||||||| ||||||||||| ||||||| |||| ||||||| |||| ||| | ||||| ||||| |||||||||"; SetColor(-1); cout << "|||||||||||| ||||||||||| ||||||| ||| ||||||||| ||| |||| |||||| ||||||||||"; cout << "||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||" << endl; SetColor(-3); cout << "Press F4 to pause loading for "; cout << sleep/1000; cout << " seconds (Automatic). PRESS F4 only ONCE." << endl << "F4 mode cannot be stopped until timer is over. Default is 4 min 30 sec." << endl << endl; cout << "Press F5 to pause loading. " << endl << endl; cout << "Press F6 to stop longload. " << endl << endl; for(;;) { SetColor(-5); if(GetAsyncKeyState(VK_F4) && GetAsyncKeyState(VK_F4) && !bPressed[0]){ bPressed[0] = true; write (Address,0x00); cout << "TimeHack (automatic) is ON. It will be off in "; cout << sleep/1000; cout << " seconds."; Sleep(sleep); write (Address,0x01); cout << "TimeHack is now OFF." << endl << endl; } else if (!GetAsyncKeyState(VK_F4)) bPressed[0] = false; if(GetAsyncKeyState(VK_F5) && GetAsyncKeyState(VK_F5) && !bPressed[1]){ bPressed[1] = true; write (Address,0x00); cout << "TimeHack (manual) is ON."<< endl << endl; } else if (!GetAsyncKeyState(VK_F5)) bPressed[1] = false; if(GetAsyncKeyState(VK_F6) && GetAsyncKeyState(VK_F6) && !bPressed[2]){ bPressed[2] = true; write (Address,0x01); cout << "TimeHack is OFF."<< endl << endl; } else if (!GetAsyncKeyState(VK_F6)) bPressed[2] = false; } } } DWORD GetPID (char* proc) { BOOL working=0; PROCESSENTRY32 lppe= {0}; DWORD targetPid=0; HANDLE hSnapshot=CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS ,0); if (hSnapshot) { lppe.dwSize=sizeof(lppe); working=Process32First(hSnapshot,&lppe); while (working) { if (_stricmp(lppe.szExeFile,proc)==0) { targetPid=lppe.th32ProcessID; break; } working=Process32Next(hSnapshot,&lppe); } } CloseHandle( hSnapshot ); return targetPid; } void EnableDebugPriv() { HANDLE hToken; LUID sedebugnameValue; TOKEN_PRIVILEGES tkp; OpenProcessToken( GetCurrentProcess( ), TOKEN_ADJUST_PRIVILEGES |TOKEN_QUERY, &hToken ); LookupPrivilegeValue( NULL, SE_DEBUG_NAME, &sedebugnameValue ); tkp.PrivilegeCount = 1; tkp.Privileges[0].Luid = sedebugnameValue; tkp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED; AdjustTokenPrivileges( hToken, false, &tkp, sizeof( tkp ), NULL, NULL ); CloseHandle( hToken ); } DWORD GetDLL(char* DllName, DWORD tPid) { HANDLE snapMod; MODULEENTRY32 me32; if (tPid == 0) return 0; snapMod = CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, tPid); me32.dwSize = sizeof(MODULEENTRY32); if (Module32First(snapMod, &me32)){ do{ if (strcmp(DllName,me32.szModule) == 0){ CloseHandle(snapMod); return (DWORD) me32.modBaseAddr; } }while(Module32Next(snapMod,&me32)); } CloseHandle(snapMod); return 0; } //Darimus' write function (takes care of base, protection attributes and byte lenght) void __write(DWORD addr, ...) { DWORD GameDLL = GetDLL("Game.dll",GetPID("war3.exe")); HANDLE hProc = OpenProcess(PROCESS_ALL_ACCESS, false, GetPID("war3.exe")); addr += GameDLL; va_list vl; DWORD arg; DWORD prot; unsigned char byte = 0; va_start(vl, addr); arg = va_arg(vl, DWORD); while (arg < 0x100) { byte = arg; VirtualProtectEx((void*)hProc,(void*)addr, 1, PAGE_EXECUTE_READWRITE, &prot); WriteProcessMemory(hProc, (void*)addr, &byte, 1, 0); VirtualProtectEx((void*)hProc,(void*)addr, 1, prot, &prot); arg = va_arg(vl, DWORD); ++addr; } va_end(vl); } 

Mediafire Download link: http://www.mediafire.com/?pg6tulzvidlk4k6
read more »»» TyranO's timehack for 1.24e

Ultimate Garena 1.4 by Ankur Mathur

Posted by bL4cK_m0p on Tuesday, August 18, 2009

Hello users from 1st-hacks and most of all users from Garena Section!
Here is the new release of Ankur Mathur. A new working crack that will bypass garena protection. Is one of the best maphacks.

We had added a new interface and made it an exe autoextracting. What this?

Here are some images to aclare your doubts:






What's new and what's the same?

v1.4

Latest Garena 3.3.1912 Cracked...


1) Fixed Clan Bugs with Previous Ultimate Garena v1.3
2) Unlimited Group Alerts (CLAN)
3) Garena can't detect new crack
4) Fixed - "THE FILE HAS BEEN MODIFIED" Error!
5) Added more Admin Menus (dunno if they work or not )
6) Warcraft 1.24 Ladder Supported



v1.3
1) Fixed Some Minor Bugs.
2) AUTO ROOM JOINER
3)Protection from leeching ... lolz

v1.2
1) Flood Function Fixed! now u try flooding
2) [CRACKED] Wc3Ladder to display full info => Level,Disconnects,Win,Loss etc
3) Now You can leave/change rooms while playing!!!
4) Added 9 Servers but not all work i think (7 of them work)

v1.1

1) removed 5 sec wait
2) disabled nag "Sorry, this room is full. \nOnly Gold Members can join full Rooms. Buy Gold membership now!"
3) garena maphack protection bypassed, all previous maphacks are undetected!
4) You can use Shadowfrench's Maphack again
5) Stopped garena updates
Ankur dice (18:38):
*6) Multi-Client - To gain more exp by opening 6 garena...Supported!
7) removed Spam-Limit, no u can repeatedly send messages no error will come "Sorry for Better gaming experience, do not flood!"
8) Shows Real and Virtual ips... in player profile when u click a user in room
9) Shows exact pings in the room, removed bars!
10) Now Even if user has blocked chat you can chat with him.. LOL!
*11) exp hack 100/15 min (Thanks to pudge666 :P)
12) Admin Functions added in menu (some work some might not work)


Hope that you all enjoy it. If you have problems with this crack, DO NOT open new threads asking for help with this crack. All help must be asked here, in this thread related with this crack.

Also, DO NOT SAY THANKS...just press the thanks button, download and leave if you don't have nothing more to say. People that will start posting/spamming..saying Thank, great job, nice, etc..."shorty words" will be deleted and banned for 3 months! I warned you, so later don't come to me sending e-mails to unban you. Read the rules as all. We DO NOT ALLOW SHORTY WORDS!

DO NOT DOWNLOAD THIS CRACK IF U R LOOKING FOR EXP HACK, OR , EXP GAIN... THIS CRACK IS ONLY FOR USING HACKS THAT ARE DETECTED.. DOWNLOAD THIS FOR AUTO ROOM JOINER, OR U DONT WANT 5 SEC WAIT.
All the best,

Xexiu

Download:

How to use Auto Room Joiner
1) Select the full room which you want to enter.
2) press F12.. the auto trying starts then if you can enter then press F11!

read more »»» Ultimate Garena 1.4 by Ankur Mathur

Mega Exp Hack 800 exp/15mins(gm)- Work or don't Work ! Pls Test

Posted by bL4cK_m0p on Wednesday, August 12, 2009

Garena Mega Experience Hack - Garena Mega Exp Hack Guide and Download. Nowadays most of the players in Garena are getting high levels in just few time without playing any games. Players are getting 1-5 level(s) in 1 day and other players who have low levels are curious want to know their secret. The secret is Garena Mega Exp hack which gives you 400 Experience points/ 15 Minutes if you are basic member. It gives 800 Exp per 15 minutes if you are gold member. This Garena Mega Exp Hack is great if you wanna increase the numbers of your levels smile - There are many features in this Experience hack depends on user. Also we have updated this Garena. Please continue reading to have a guide of using Garena Mega Exp Hack.

How to Use Garena Mega Exp Hack:-

1. Download Garena Exp Hack with MegaEXP

2. Extract GarenaHack-Latest&Updated.rar using WinRaR.

3. Go to the folder where you have extracted the files, Open "_Start Garena with GarenaHack.exe"-

4. Click start Garena Hack with MegaEXP Free

4. After few seconds Garena and Garenahack window will popup

5. Just close Garena window, and click "Start MegaExp Hacking - 12 Servers Connect" on GarenaHack window.

6. Again a Dialog window will popup. Just type your username/password and UID and Click Start EXP Hacking.

7. Two command prompt windows will appear.. just leave it for few time.. and then login your account on Garena then see your experience boost.


Points to be noted:

- MegaExp - connecting to 12 Garena servers for maximum EXP. These are all the garena servers, these servers are in the latest original garenahack private version. If you get low exp or nothing all all then that's it smile I cannot do more... for now.

- Opening Multiple Garena MegaEXP windows with the same account WON'T get you more EXP.

- if you see a password box when you start the program then try starting it again using: "_Start Garena with GarenaHack.exe"


- This will not work on Microsoft Windows Vista.

- if MegaEXP hack don't work on a certain account then there's nothing we can do.

- Basic Members will start getting Experience after 30-45 Minutes whereas Gold Members will starting gaining Exp in 15-20 minutes.. Use this program at your own risk.
read more »»» Mega Exp Hack 800 exp/15mins(gm)- Work or don't Work ! Pls Test

Mega-GGC EXP Hack v3.31 Full - RI build v3.18

Posted by bL4cK_m0p on Wednesday, July 29, 2009

we all know 3.22 server is now offline so ive tried to find some alternative to help this forum

GGC EXP Hack 3:31


Valid for Windows XP, Vista and 7

CustomKick:Choosing which player kikar: ->OK
MapHack (Fog): So the heroes shows enemies on the map ->OK
MapHack: Shows the entire map ->OK
LadderWin: All players will be kikados to win ladder ->OK
RenName: Enter another nickname for you to use in Garena and the game (NOTE: use login before.) ->OK
Hp Bar: This shows the life of everyone in the game ->OK
Mega EXP: Earn much EXP 15 to 50 minutes ->OK
ResHack: Skip to allies GOLD ->OK
FastTP:Quickly back to base in one click ->OK
HackCentre: Hero Icons Distance and Cam Hack ->OK
ToTray: Garena raises the bar on the side of the clock ->OK

Changelog:
- Removed the entry for the public-private version and now it is private only version
- Fixed bug when updating
- Removed CostomLadderLvl because it did not work
- Removed advertising in Garena_hack
- Removed auto-hack, because the meaning of your swing, there will be a paid version
Features:
- No palitsya in Garena (& Garena Ladder) for which you are not prohibited.
- Added the ability to leave the room playing a game
- Open units
- Opens for units minikarte
- Removes the fog (open all map)
- Remove the fog in the mini-map (opens a set minikartu)
- Clickable units
- Opens the resources
- See the Invisible
- Prevents Dota-ah

Credits: wc3garena.ru


I have downloaded it and reuploaded it to check for any virus
found no virus

POST A COMMENT IF IT WORKS
I KNOW ITS WORKING BECAUSE IM USING IT RIGHT NOW

MABUHAY ANG PILIPINAS
read more »»» Mega-GGC EXP Hack v3.31 Full - RI build v3.18

Garena Hack [-Xtreme-] v4.0 + Mega EXP Xtreme

Posted by bL4cK_m0p on Monday, July 27, 2009

This is cqccyh Garena Hack 3.31 Cracked By: Exodia619 AkA. ChaoSlasher69

Garena Hack [-Xtreme-] v4.0 + Mega EXP Plugin Xtreme!

Changes:

- Better MEGA EXP Plugin With Additional EXP Gain!
- Optimized
- New UI
- ICON HACK IS WORKING!!
- And Many More!


Don't Forget To Press Thanks!






FAQ:

1) I can't connect help! - Change The Server
2) Cant connect again - Change The UDP Port Ex. 1514.1515.1516 And So on..
read more »»» Garena Hack [-Xtreme-] v4.0 + Mega EXP Xtreme

GGC EXP Hack v 3.30 Full (mega exp)

Posted by bL4cK_m0p on Saturday, July 25, 2009

ok guys i found this russian hack on the net
it has sth like garenahack's megaexp plugin,i didnt test this
i dont think this crack has any virus or scam part,cuz the poster of this thread was a vip member on that site with too many posts.

Russian :

* - Переделан MegaEXP - теперь снова два режима!
* - Переделан EXP.exe (Теперь запускать надо его и оттуда навигацию осуществлять)
* - Исправлен баг с иногдашним невиденьем хостов!
* - Исправлены баги с выкидыванием из румы
* - Теперь экспа даётся всегда и гораздо больше!
* - Увеличен размер файла(это временно)

PS: отнынене сборки хака будут выходить мини-патчера

(Чтобы не качать всю сборку мы приняли такое решение))

Так что теперь обязательно иметь при себе EXP v 3.30

FAQ по запуску:

1 - Запускаем EXP.exe
a - Старт ME ( нажимае "Подготовка" потом "Старт" )
После того как запустится AGHS.exe (окошко мега экспы) закрываете гарену и продолжаете делать то что написано ниже!
b - Нажимаем GGC EXP GO ( там запускаем 1,2,3,4,5,6 - после может
выскачить ошибка! Неважно перезапускаем прогу(Если у вас выскакивает ошибка по нажатию на 6 то после перезапуска программы опять войдите в GGC EXP GO и нажми на кнопку с буквой Z)
c - Запускаем Старт Garena Hack ну и Всё.
Да и еще о мега експе ......
Итак начать думаю стоит с двух режимов мега экспа?!
1 - режим даёт много опыта,но шанс его получить равняется около 45%!
если не даётся опыт то не расстраивайтесь просто выберайте второй мод.
2 - Он даёт на 20% меньше опыта чем первый но зато 100%(Внимание! Даёт только в том случае если у вас не пошел первый мод)
3 - Я пробовал первый и второй способ но экспа не идёт!
Итак основные проблемы этого:
A - не запущена гарена
B - не правильно ввели UID
C - Опыт даётся не сразу,иногда надо перезайти в гарену
D - Для басиков опыт даётся через 45 минут,для голдов через 15 минут.
Автор хака : Der_SySLIK (или Суслик )

English :

* - Rewritten MegaEXP - now again two modes!
* - Rewritten EXP.exe (now need to run it, and then navigate to implement)
* - Fixed bug with inogdashnim nevidenem hosts!
* - Fixed bugs with vykidyvaniem of Romania
* - Now the expo gives all and much more!
* - Increased the size of the file (this time)

PS: otnynene assembly will hack out a mini-patchera

(In order not to rock the entire assembly, we took such a decision))

So it is now required to bring with you EXP v 3.30

FAQ on the launch:

1 - Run EXP.exe
a - Start ME (click on "Training" then "Start")
After the start AGHS.exe (box mega expo) close garenu and continue to do what is written below!
b - Push GGC EXP GO (there run 1,2,3,4,5,6 - after may
vyskachit mistake! Whether restart прогу (If you выскакивает mistake by pressing 6 after restarting the program again, please log in GGC EXP GO and click on the button with the letter Z)
c - Run Start Garena Hack well and all.
And even on mega Expo ......
So I think to start with the two regimes is a mega expo!
1 - mode makes a lot of experience, but a chance to get it is around 45%!
if not given the experience you will not be upset simply choose the second mod.
2 - It provides up to 20% less experience than the first but 100% (Note: Gives only if you have not walked in the first mod)
3 - I tried the first and the second method but the expo is not!
So the main problem of this:
A - did not start garena
B - not entered correctly UID
C - Experience is not given immediately, sometimes it is necessary to perezayti garenu
D - Basic experience in order to give 45 minutes to Gold in 15 minutes.
Author hack: Der_SySLIK (or gopher)
read more »»» GGC EXP Hack v 3.30 Full (mega exp)

Garena $$Metal$$ EXP hack Beta 1.0 +mega exp

Posted by bL4cK_m0p on Thursday, July 23, 2009

hi,today im going to give u guys my new made hack $$Metal$$ EXP features:

1- Cracked The Wc3Ladder to display ~> Level,Disconnects,Win,Loss etc
2- You Can Leave Room While Playing
3- Can Use Map Hack (Shadow French,Tyrano,Etc..)
4- Better Tunnel & AntiSpike
5- Can Use Any Hack
6- Can Enter Ladder Rooms
7- Can Enter In Hacked Protected Rooms
8- No 5 Secs. Waiting
9- Not Detected By Garena
10- Ability To Multi-Client
11- d3scene.com maphack included
12-10 cool skins by 1st-hacks
13-50-100/15min (basic)100-200 (gold)
14-MegaEXP v0.1(italian)
15-20 servers some might not work but 10 servers 100% working
16-invite members to clan even if basic member
17-chat with users even if they block chat owned
18-no update
-And Many More!
cridets go to :
1st-hacks.com for the skins
hacker~team for the hack (its my user in GG-client)
here are the download links dont forget to run as admin...in vista
read more »»» Garena $$Metal$$ EXP hack Beta 1.0 +mega exp

Garena Extreme(Special Edition)

Posted by bL4cK_m0p on Sunday, July 19, 2009

GARENA EXTREME


Credits:Cqccyh,GarenaHack-er,1st-hacks,M0therSorr..
This is not v1.4 of M0therSorr'sCrack its just special edition


Features
Maphack(1.23)(HAS A BACKUP)
-Maphack(1.22)(HAS A BACKUP
-Enable all icons*
-MapHack Detector Bybass
-You can now use OLD MAPHACKS!
-Swords Of playing
-70XP BASIC
-110XP GOLD
-Rename
-Ladder Win

-Maphack(1.20e)
-Super Admin
-Custom Ladder Lvl
-Multi Clan
-Can invite anyone to clan(EVEN YOUR ONLY A MEMBER)
-HPbar
-Traderes
-No 5 secs
-No Advertisment
-Higlited Text(BLUE)
-Dota keys
-CustoM Kick
-Can leave room without exiting war3
-ToTray
-HackCentre
-Megaxp
-NewSkin
-Icon Hack(i didnt try)
-AutoRoom Joiner(NEW)(WORKS)

-Extreme DropHack(NEW)
-Extreme Maphacks(NEW)



EXTREME CRACK!!!

read more »»» Garena Extreme(Special Edition)

Garena July 16th Update

Posted by bL4cK_m0p on Friday, July 17, 2009

Change Log:

Fixed an update issue about Blackshot
Support latest DotA Ladder
Fixed various bugs in Clan System

If you have any problem in this version, kindly post in the Reporting Thread(in garena) so we can fix it asap.


download link : http://www.mediafire.com/?mtimfznzmld
read more »»» Garena July 16th Update

Garena Hack updated , ver 3.29 changelog

Posted by bL4cK_m0p on Monday, July 13, 2009

Change Log:

3.29

1.Improved in game custom kick, now can kick people when u are not at host position(slot1), but u have to be the host

2.In game custom kick now is auto actived when you open war3, also fixed the compatible problem with some pcs

3.fixed thread error with mega exp

4.Now can bypass the anti-hack system in lastest version of VS platform

5.Fixed the problem of anti virus detection

w0ot now can kick ppl without the need of alt tab activate the custom kick.. awesome
read more »»» Garena Hack updated , ver 3.29 changelog

Garena Drophack 0.2b NEW VERSION

Posted by bL4cK_m0p

DropHack Garena DOTA Ladder v0.2b

Requirements:

-Warcraft III 1.23.
-Garena any version including any mods.

The instruction on installation:
- Exit from Garena and Warcraft III if they are started.
- Start "Drop Hack Install.exe"
- Follow setup instructions.
- At first step u need to choose a folder where installed your Garena in which you wish to use Drop Hack then press "next"
- Then you must to choose a folder where installed your Warcraft III then press "next"
- Press "Finish".
- If all has passed successfully you will see the message "Installation SUCCESFULL!!" Differently you will see an error with the description of its possible reasons.
- AFTER SUCCESSFUL INSTALLATION STRICTLY IT IS NOT RECOMMENDED TO MAKE REPEATED INSTALLATION IN SAME GARENA FOLDER.
- It is not necessary to experiment incorrectly specified directories at installation
- Installation in different folders of garena on one system is admissible.

How it works:
- Run Warcraft III thrue Garena.
- In next 5-10 second after Warcraft III was started drophack window will apear.
- Now you can host a game.
- After you host a game and players join on yours host, in a drop hack window there will be buttons with nick names of these players.
- Pressing the button with player nickname the given player will be kicked from yours host.
- Pressing button "Kick All" will ... you know what will happen

Changes in the new version:
- Works on all systems and on any Garena
- Dynamic tracing of players that allows to use hack not only in DOTA, but also in any other games in which maximum quantity of players is more than 10.
- Possibility "kick all players" is added.
- Fixed small malfunctions which could lead to unstable work of hack.
- Removed Battle.net support.

Removal and the decision of problems:
- Reinstall Garena so most easier


P.S. About any bugs and offers on improvement of hack please write to mail kitsune@live.ru.

Yours faithfully Keetsune.
read more »»» Garena Drophack 0.2b NEW VERSION

Garena Crack 1.3(M0therSorr)

Posted by bL4cK_m0p on Saturday, July 11, 2009

Hello!!
ive done my garena crack v1.3

Here it is..
***
***
***
***
Features
-Maphack(1.23)(HAS A BACKUP)
-Maphack(1.22)(HAS A BACKUP
-Enable all icons*
-MapHack Detector Bybass
-You can now use OLD MAPHACKS!
-Swords Of playing
-70XP BASIC
-110XP GOLD
-Rename
-Ladder Win

-Maphack(1.20e)
-Super Admin
-Custom Ladder Lvl
-Multi Clan
-Can invite anyone to clan(EVEN YOUR ONLY A MEMBER)
-HPbar
-Traderes
-No 5 secs
-No Advertisment
-Higlited Text(BLUE)
-Dota keys
-CustoM Kick

-Can leave room without exiting war3
-ToTray
-HackCentre
-Megaxp
-NewSkin
-Icon Hack(i didnt try)
-AutoRoom Joiner(NEW)(WORKS)
read more »»» Garena Crack 1.3(M0therSorr)

How to by pass updates

Posted by bL4cK_m0p

first look at this picture:

as you can see the garena needs to update and we don't want gareana to update. so this thread will teach you how to by pass garena update. no more update forever


1st step: open your garena folder then open "update.xml by NOTEPAD


2nd step: find the
the number int "update version" is the version of your update. so if the number in the picture is different iin your "update.xml", it's okay because it doesn't matter.


3rd step: change the number in the "update version" by "100" just look at the picture how did i do it



4th step: try to log in.




easy isnt it?
then that's it. now you will learn how to edit files
next you will learn how to crack garena


for those who doesn't want to do this just download the file attached below.


Thank pa3k
read more »»» How to by pass updates

(Updated to ver2.0) Collided Map 6.61&b

Posted by bL4cK_m0p on Friday, July 10, 2009

==================================================
Dota Allstars v6.61 & v6.61b Collided Map Version 2.0 - by Maischoyu
==================================================

Updates of ver 2.0
-------------------
- 135 hacks added (11 hidden)
- Auto minimap ping of enemy hero location
- Auto teleport to anywhere
- Teleport other player
- Disable teleporting for certain player or everyone
- Anti Gank
- Hack disabler cmd to others included
- Enemy low-hp detector
- Instant winning
- Instant vanish for enemy hero
- Instant destroy for enemy units
- Summon skill location controllable by mouse
- less dsync & error

Updates of ver 1.0
-------------------
Code:
- 91 hacks added (2 hidden)
- Rune detector
- Tower glymph hack
- Camera zoom


Usage:
-------
Activate the hack:
Type: -ma[space][space] or -maischoyu

View Hack list:
Type: -1, -2, -3, -4, -5, -6, -7, -8, -9

Special Hack:
Type: -special


Hack List:
----------
-AG Spectral Dagger (Spectre)

-HC Stifling Dagger (Phantom Assassin)

-DW Acid Spray (Alchemist)

-LJQ Goblin`s Greed (Alchemist)

-MB Tombstone (Undying)

-SWL Decay (Undying)

-DZ Epicenter (Sand King)

-AM Weave (Shadow Priest)

-SD Tide Bringer (Admiral Proudmoore)

-HL Torrent (Admiral Proudmoore)

-CZD Ghost Ship (Admiral Proudmoore)

-LHR Nether Strike (Barathum)

-DM1 Static Remnant (Storm Spirit)

-DM2 Electric Vortex (Storm Spirit)

-DMD Ball Lightning (Storm Spirit)

-BNC Charge of darkness ( Barathrum)

-FW Berserker`s Call (Axe)

-GB Bristleback (Bristleback)

-MH Nature`s Attendants (Enchantress)

-TS Diabolic edict (Leshrac)

-HZ Spirit Lance (Phantom Lancer)

-TB Devour (Doom Bringer)

-LP Multi Cast (Ogre Magi)

-SL Inner Vitality (Huskar)

-SJ Track (Bounty Hunter)

-JM Curse of Silent (Silencer)

-SQ Penitence (Holy Knight)

-LL God`s Strength (Sven)

-JD Venomous Gale (Venomancer)

-tf Meat Hook (Pugde)

-DKD Aphotic Shield (Abaddon)

-fhy/n Flesh Heap (Pugde)

-XQE Impale DMG (Nerubian Assassin)

-CXE Impale DMG (Tidehunter)

-SWE Impale DMG (Sand King)

-EME Impale DMG (Lion)

-WWW Wex 'www' (Invoker)

-EEE Exort 'eee' (Invoker)

-WWE Wex & Exort 'wwe' (Invoker)

-WEE Wex & Exort 'wee' (Invoker)

-FXY Shackleshot (Windrunner)

-FXH Windrunner (Windrunner)

-FXD Focus Fire (Windrunner)

-JLL1 Illusory Orb (Puck)

-JLL2 Phase Shift (Puck)

-QWE1 Wex Level (Invoker)

-QWE2 Quas Level (Invoker)

-QWE3 Wex Level (Invoker)

-HN Astral Imprisonment (Destroyer)

-JG AI - Vanish Forever! (Destroyer)

-ZZ Incapacitating Bite (Brood******)

-ZW Spin Web (Brood******)

-W1 Maledict (Witch Doctor)

-TT1 Paralyzing Cask Multihits(Witch Doctor)

-TT2 Paralyzing Cask Stun (Witch Doctor)

-YQ1 Lucent Beam (Moon Rider)

-YQ2 Eclipse DMG ((Moon Rider)

-YQ3 Eclipse Multihits (Moon Rider)

-WY1 Chain Frost DMG (Lich)

-WY2 Chain Frost Duration (Lich)

-ZG1 Refraction Bonus (Templar Assassin)

-ZG2 Refraction Limit (Templar Assassin)

-sll1 Gravekeeper`s Cloak (Visage)

-sll2 Gravekeeper`s Cloak Limit (Visage)

-YM Hunter in the Night (Balanar)

-XH Devour disabled (Doom Bringer)

-Hx Sunder (Soul Keeper)

-DS Nature's Guise (Treant Protector)

-EMS Pulse Nova (Leshrac)

-SWM Death Pulse (Necrolyte)

-JS1 Omnislash DMG (Juggernaut)

-JS2 Omnislash Limit (Juggernaut)

-XK1 Chronosphere (Faceless Void)

-XK2 Time Walk - Invul (Faceless Void)

-FTR Rocket Flare (Clockwerk Goblin)

-XQY Impale Stun (Nerubian Assassin)

-EMY Impale Stun (Lion)

-SWY Impale DMG (Sand King)

-CXY Impale DMG (Tidehunter)

-MED Mystic Snake (Medusa)

-BHT Elune`s Arrow (Priestess of the Moon)

-YNT Leap Distance (Priestess of the Moon)

-BHJ Moonlight Shadow (Priestess of the Moon)

-BHL Starfall (Priestess of the Moon)

-YNJ Leap Level (Priestess of the Moon)

-GF1 Illuminate (Keeper of the Light)

-GF2 Spirit Form (Keeper of the Light)

-GF3 Mana Leak (Keeper of the Light)

-BNW Frostbite (Maiden)

-BND Freezing Field (Maiden)

-JLE Phase Shift (Puck)

-LJY Private Use Only - Locked

-SSG Rage (Naix)

-GSL Open Wounds (Naix)

-GL1 Rupture DMG (Blood)

-GL2 Rupture Duration (Blood)

-DHE Eye of the Storm (Lightning Revenant)

-DHC Static Link (Lightning Revenant)

-BFR FlameBreak (Batride)

-REP Replicate (Morph)

-HOL Black hole (Morph)

-HOL Backstab (Riki)

-set x Kunka Summon Spot

-set h Anti Mage Blink Location

-set a Tiny Throw Location

-set n HolyKnight Summon Spot

-set h Kunka Water Torrent Location

-set y Invoker Location

-set x0 Disable summon on location (Kunka)

-set c0 Disable summon on location (Anti Mage)

-set a0 Disable summon on location (Tiny)

-set n0 Disable summon on location (HolyKnight)

-set h0 Disable summon on location (Kunka Water)

-set y0 Disable summon on location (Invoker)

-IMGOD Instant Winning

-MA Set teleporting for certain player

-MS Instant Kill

-TW Tower Glyph Infinity

-HP Detect low-hp enemy

-LEGIT Turn off all hacks

-ITEM Item Hack (BKB & Satanic)

-RUNE Rune Activator

-Z Camera Zoom 1 - 1200

-NOGANK Anti-attack GANK ! Detect Approaching Enemies

-NOTELE No Teleport
Collided map only works under previous versions of 1.22, 1.21, and 1.20e.

When you are hosting, try to prevent people from downloading this map..


Greets 'n Credits:

Ming (99uxi)
Dan (Integer)
Amanda Christine (Jasser)
Shawn (Jasser)
read more »»» (Updated to ver2.0) Collided Map 6.61&b

10th July Bypass

Posted by bL4cK_m0p

Here´s they bypass for the 10th of July. Just replace this file with the update.xml in your garena folder.
Note: You dont have to do this if u use Garenahack 3.22

update.xml

have fun
read more »»» 10th July Bypass

[Release] DotA Allstars v6.61 - Collided Map

Posted by bL4cK_m0p on Wednesday, July 8, 2009

[Release] DotA Allstars v6.61 - Collided Map
[Release] DotA Allstars v6.61 - Collided Map Version -


★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
Dota Allstars 6.61 Collided Map Version 1.1 - by Maischoyu
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

Im jus here to share with you all this wonderful collide map by Maischoyu

Activate the hack:
-ma[space][space]


View Hack list:
-1, -2, -3, -4, -5, -6


Disable feature:
-disable


Hack List
======
# = number u want (1 - 999999)
0 = zero (do not type any more number or change it !)
1 = same goes as number zero

-t =Tower GLYMPH infinity

-z # =Zooming (# = 1 - 1000)

-item =Satanic & BKB infinity (Item)

-runes =Turn on or off the rune detector

-gold # =Devour gives extra gold (Doom)

-ac # =Acid spray duration adjustable (Alche)

-rt # =Acid multi gold (Alche)

-ru # =Rupture infinity (Blood) <- Please type -ru2 first then -ru !

-ru2 # =Rupture damage (Blood) <- A bit buggy - type 9 for max, if beyond it will back to normal.

-speed =Thirst infinity (Blood) - Private Use Only, sry not for public atm.

-dw # =Weave infinity (Dazzle)

-rep # =Replicate infinity (Morph)

-int # =Int ****ing (Obdisian)

-mb # =Tombstone level increased (Undying)

-str # =Str ****ing (Undying)

-chen # =Penitence lvl (Chen)

-wind # =Focus Fire (Windrunner)

-nova1 0 =Pulse nova (Leshrac)

-nova2 # =Diabolic edict (Leshrac)

-kun1 # =Water Sword Cool Down (Kunkka)

-kun2 # =Ghost ship (Kunkka)

-kun3 # =Water torrent (Kunkka)

-nax # =Rage infinity (Naix)

-wound =Wound always at lvl 4 (Naix)

-vis1 0 =Visage killing amount lvl (Visage)

-vis2 # =Visage dmg lvl increased (Visage)

-mana1 # =Mana leak lvl increased (Keeper of Light)

-hook # =Meat hook lvl increased (Pugde)

-sna # =Mystic snake lvl increased (Medusa)

-chan # =Nature`s Attendants (Enchan)

-hoo # =Shield defend lvl increased (Abadon)

-mirana =Mirana 4th skill infinity (Mirana)

-para1 # =Paralyzlse Cask Jump Times (Witch)

-para2 0 =Paralyzlse Cask lvl (Witch)

-brood =Insatiable Hunger infinity (Brood******)

-hole # =Black hole infinity (Enigma)

-wee # =Invoker aaa (Invoker)

-eee # =Invoker bbb (Invoker)

-ccc1 # =Invoker stun times (Invoker)

-ccc2 # =Invoker range (Invoker)

-ccc3 # =Invoker dmg (Invoker)

-riki =Backstab infinity (Rikimaru)

-rax # =Razor Storm Of Eyes Lvl (Raxor)

-rax2 # =Razor Static Link (Raxor)

-bra # =FlameBreak lvl (Batride)

-jug # =Yurnero OmniSlash lvl (Yurnero)

-ogre # =Multi Cast (Ogre Magi)

-bana 0 =HunTer Of The Night (Balanar)

-bara # =Nether Strike (Barathum)

-hi =Stop other colliders's triggers (except your) - Available after other collided maps exist

-there =Disable some heroes ability (they will get kicked if used one of disabled abilities) - unavailable atm

-axes 0 =Rexxar's wild axes becomes useless (it will hook up to him & has no dmg)

-notele =Disable Teleporting (effects to everyone)

-shie # =Abadon's aphotic shield gives him death

-kardel # =Kardel's shrapnel has no slow %/DPS effect

-nogold # =Devour gives NO gold (Doom)

-bara2 # =Charge of darkness ( Barathrum)

-silent # =Curse of silent (Silencer)

-holy # =Holy Persuasion (Chen)

-laya # =Refraction (Lanaya)

-puk # =Illusory orb (Puck)

-hus # =Inner Vitality (Huskar)

-sven=1 God`s Strength (Sven)

-void 1 =Chronosphere (Faceless Void)

-sand 1 =Epicenter (Sand King)

-pha # =Stifling dagger (Phantom Assasin)

-dupe 1 =Wall of replica (Dark Seer)

-necro # =Death pulse (Necrolyte)

-clock # =Hookshot (Clockwerk Goblin)

-veno =venomous gale (Venomancer)

-leap # =Leap (Priestess of the Moon)

-shaker1 # =Impale stun (Earthshaker)

-lion1 # =Impale damage (Lion)

-nebu1 =# Impale damage (Neburian)

-tide1 # =Impale damage (Tidehunter)

-snd1 # =Impale damage (Sand King)

-shaker2 # =Impale stun (Earthshaker)

-lion2# =Impale stun (Lion)

-nebu2# =Impale stun (Neburian)

-tide2 # =Impale stun (Tidehunter)

-snd2 # =Impale stun (Sand King)

-More hacks will be available in the next update.


Because officially V6.61 has just been released today, there for.. DO NOT LET PEOPLE DOWNLOAD THIS MAP WHEN U ARE HOSTING! OR JOIN OTHER MAP HOSTER !


Don't forget to press THANKS

Next update will be available soon for the rest of unavailable hacks.
read more »»» [Release] DotA Allstars v6.61 - Collided Map

GcC EXP Hack v 3.29

Posted by bL4cK_m0p on Monday, July 6, 2009

* - Added Mini Chat hack
* - Added MegaExp
* - Exp to hack provides stable
* - Fixed all the bugs (slightly sub-transfer)
* - Changed skin
* - Added EXP.exe
* - Added icon superadmin
* - Added autocliker (Through EXP.exe)
* - Added MapHack
* - Added a working REname (by Slevin)
* - Added a lot of things
* - Fixed some libraries and reduced weight
* - Warning do not change the way hack! Do not, under any circumstances
* - Before you install any other advise to remove the hacks
VirusTotal Scan

FAQ on the use of:
1 - Run AGHS.exe
2 - Once it is running:
- Closes running garenu
3 - Run EXP.exe
4 - EXP.exe click Запустить GGC EXP
In the new window click "Старт"
Once the window opens press
Старт GarenaHack
read more »»» GcC EXP Hack v 3.29

New GARENA ADMIN v1.0 RELEASED

Posted by bL4cK_m0p on Sunday, July 5, 2009

This is not created by me ...
I just want to share wit you all what i am using ...
Credits: VAMPIRE

new GAV1.0 more function and updated to give u all best hacker in the garena.

1- You can leave the room with the warcraft open (this may create the game in any empty room, ask your friends basic members enter and then leave the warcraft open and enter into a room full, and the game will be moved to another room without your friends fall ).
2- Swords of "Playing" actived
3- Ping and level on warcraft changed
4- Lots of Skin Changes
5- Advertisements of rooms / home / PM removed.
6- Chat expanded.
7- Experience hack (130exp every 15min to basic member or 200exp every 10min to gold members).(UPDATE)
8- Without 5s message.
9- Enter room without Message box and advertisement.
10- Show real ping number instead of bars ( in room, in game, someone joined ur game).
11- Enable message spam in chat channel.
12- Unlimit Group Alert even you are just a normal member.
13- Can invite anyone tn clan with a member priviledge.
14- Can invite anyone to clan even he has a clan (Multi clan).
15- Hack protection removed.
16- You can open two or more GG client on One pc for fast gain exp.
17- You can use administrator function like tract people's ip address.
18- Map Hacks ADD for 1.21,1.22,1.23 BluSmash V1.0 (working)
19- Map Hack ADD for 1.21,1.22,1.23 ( 2 mhs Tyranos V2 and Blusmah V2 )(100% WORKING)
20- Texts Removed
21- Clear Skin
22- 10th Server Added(UPDATE)
23- All Hero Icons Changed to new ones cooler ones.can use all icon(WORKED)
24- Garena Updates Bypassed
25- A Skin Folder with many skins to choose from. ( Readme in it for instructions on how to change. )
26.ADMIN function kick ppl in the room(worked) ban chat and many more. 27.MEGA EXP 15MIN/1000EXP GM AND 30MIN/1000EXP BASIC (WORKED 100%)

IMPORTANT NOTE:PLZ DON LOGGIN ANY GARENA WHEN U USE MEGA EXP IF NOT U WILL GET 0 EXP

THIS GA HAS BEEN TESTED BEFORE RELEASE TO PUBLIC VERSION.
NOW WE FIND NEW STUFF TO WORK WITH US PLZ REGISTER AND SEND IT TO OUS VIA EMAIL.ALL THE FORM OF REGISTER INSIDE OUR GA FOLDER.INSTALL OUR GA 1ST TO GET THE FORM.WE ONLY TAKE 20 PPL WHO HIGH LV IN GARENA.WHO LV 59 OR CLAN LORD WILL BE TAKEN 1ST..;D ALL SELECTED PLAYER WILL ME GV 2 MONTH FREE PREMIUM MEMBER

NOTE:BEFORE U INSTALL PLZ CLOSED YOUR ANTI VIRUS 1ST BECAUSE OUR NEW GA GOT BUG THAT DISTRUB U WHEN U INSTALL.AND AFTER YOU INSTALL IT RUN AGAIN YOUR ANTI VIRUS AND SCAN BACK OUR GA FOLDER 100% DON HAVE BUG ANYMORE THE BUG ONLY DISTURB YOU WHEN INSTALLING..WE WILL FIX THAT BUG SOON.PLZ TRUST OUR NEW GA

IF U DON SEE GA FOLDER DON WORRY JUST FOLLOW THIS INSTRUCTION CAREFULLY

1-RETYPE AGAIN YOUR USERNAME AND PASSWRD ON GARENA THAN LOGGIN
2-AFTER THAT LOG OUT BACK
3-THAN GO TO LOCAL C TO FIND GA FOLDER.

HAPPY HACKING
read more »»» New GARENA ADMIN v1.0 RELEASED

Mega exp hack 3.22

Posted by bL4cK_m0p on Saturday, July 4, 2009

hey, good evening. I just want to clarify somethings about the megaexphack v3.22 cracked by garenahack-er.

*(note: All answers were provided my the_boss and this is a convenience for those who are lazy to read threads and keep posting useless ones.)

question:
First of all, there have been threads posted that the hack contains a "keylogger" and i just wanted to make sure if there really is a keylogger installed in it.

Answer:
As the boss said now, there is no keylogger inside the inject. And if there is, your antivirus would detect as a trojan virus.


Question:
Second, if you have a new account and low level, megaexphack doesn't work anymore. I have tried it in accounts leveled 1.2.3 and it does not work. But when i used my level 9 account it worked. (all accounts are basic member)

answer:
You should check your exp on the Garena Shop - Connecting world gamers |Garena Magic Shop|GG Shop|GG Magic Shop| Dota Ladder Item | Garena Gold Member| GGC Virtual Item not on the forums nor the client ones because you will not see it update their. Just login your account there and click on view my account detail. And if you want to check if it gained after 15 min, logout and do the same thing over again.


Third, why does it give us 700exp/15minutes (gold member) and 350exp/15minutes (basic member) if in the hack, it shows that all 8 threads are connected to the server?

Answer: (not from the boss)
The hack can give us 700exp/15min or more(gold member) even though we see that all threads are connected because the 8th server is a bit laggy. Sometimes it doesn't give but sometimes it gives.


Question:
Fourth, about the exp bar problem. I have a friend who uses this megaexphack and he is a basic member but in his client, it shows that he is level 31 but in the room, where others can see his profile, he is already 32. Why is that?

Answer:
Sometimes we see our accounts or other accounts level is different from what we see and what others see. And this is because of the hack. It's a bug from the garena server because if we use the megaexphack, it gives us 700 while the normal garena gives us only 10exp/15min ( gold member)



question:
Lastly, have you experienced the megaexphack giving no exp?

Answer:
Check if you have good connection and your pc. Exit all unnecessary programs which will slow your computer down. Also, use mode 2 if you're not getting any exp in the other mode. If there still is a problem, let is pass for a while for there is a problem in garena servers.



Hope that your questions have been answered.

Thanks!

yours truly,
asdfghasd - 1st hacks member.
read more »»» Mega exp hack 3.22

Garena CrushDie v.2.00

Posted by bL4cK_m0p on Friday, July 3, 2009

Hey guys, crack no2 released today!

Including:
* Disabled Anti-Cheat-Engine
* Disabled 5s Joining-Delay
* Disabled some badboy messages
* Enabled Mass EXP Hack
* ...




Enjoy!

credits to CrushDie.
read more »»» Garena CrushDie v.2.00