[NEW] [1.24e] TyranO's D3Scene Maphack

[1.24e] TyranO's D3Scene Maphack
(DETECTED on ladder, but you can still use in custom games if you drop battle.net)

EDIT June 24, 2010:
Fixed the crash that was happening after every game and the show item/rune feature that was not working. Also added a "crash WC3 after my game" feature for those who liked it since you that you have to restart WC3 every custom game anyway.


Red Colored units seems to be bugged atm... Couldn't update the offsets correctly I guess. Wait for SD333221 to update it or tell me what I did wrong.



Features:

- Save features in config.ini (customizable all features)
- Grab your Cd-Keys
- Reveal units
- See Undead blight
- Build on unexplored ground

- Reveal units on minimap
- Remove fog
- Remove fog on minimap
- Clickable units
- See ressources
- See invisible
- Bypass -ah feature in DotA (Sd333221)
- Show illusions (Sd333221)
- Show enemy pings (Sd333221)
- Clickable invisible units (Sd333221)
- See cooldowns (Sd333221)
- See skills (Sd333221)
- Show invisible units as red (Sd333221)
- Show hero icons ally/enemy/all (Sd333221)
- Enable trade ressources in DotA (Sd333221)
- Show hero icons ally/enemy/all (Sd333221)
- Enable trade ressources in DotA (Sd333221)
- Working Hotkeys (F4,F5 for on/off and NUM+, NUM- for zoom out/in)
- Namespoofer with colors
- Camera Distance Hack (customizable distance)
- Custom trade amounts
- Minimize to tray button
- Show all HP bars (For the HP bars features, you have to have the option always show healthbars in warcraft III DISABLED)
- Show only enemy HP bars (Darimus)
- Show only ally HP bars (Darimus)
- Top view feature (removes the angle so you look over everything at 180 degrees)
- Remove zoom angles (removes the deviation when zooming)
- 90 degree spin (spins camera by 90 degrees)
- Smooth Camera (Max Camera distance that doesn't lock the zoom)

Thanks to:

Darimus, SD333221, and the rest.

TyranO's timehack for 1.24e

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

[Release] Warcraft III v1.24 MapHack

Introduction:

I recently released a namespoofer, and since then I've been working on a maphack. So far it's going ok, but I'm kinda stuck on the more complicated features found in a lot of hacks. Either way, it's completely usable in custom games (I wouldn't advise using this anywhere where a ban is possible). I've decided to release it in its current state, and if I ever add more features, I'll release future versions too.

Once again, I've packed the executable, so if it is detected as a virus, it's a false positive. See the discussion of my namespoofer for details:

Features:

- No fog (main map) - Working
- No fog (minimap) - Not yet implemented
- Show units (main map) - Working
- Show units (minimap) - Working
- Show invisible - Working
- Camera hack - Working
- Enable gold trade - Working
- Show enemy pings - Working

Windows XP users:

It should technically now work on XP as well, (it did on my test machine anyways). If it works for you, I'd appreciate a reply to let me know.

Screenshot:



Detectability:

- This does not (and never will) support Garena
- This is most probably detected

I don't play on official Blizzard servers or Garena, so I have no way of working around any anti-cheats that they provide. I never will either.

Problems:

I've added error logging code. If you have problems, please post the contents of log.txt here


Anyways, enjoy the working maphack

Downloads: 




[Guide] How to use DreamHack on 1.24e

I'm playing on 1.24e using LordTerro's Dreamhack working perfect but sometime lasthit not 100%

First i think you should use 9.4 not 9.5

Do like him to install

Thanks for LordTerror for his try

I'm playing on Garena

Firtly, start Garena, start Warcraft

Firtly, you must host, and start for the firt time... after start, if DreamHack working.. Then you quit and you can join any another host

NOTE: You must host for first time after that, you quit your game and join the other host

Good Luck, it work to me perfect

[NEWWWWWW] DreamCrack

    Requirements
    1) Warcraft III TFT versions 1.24b to 1.24e.
    2) DotA Allstars map 6.63 to 6.67c
    3) Windows 2000, XP, Vista, 7, or higher.
    4) You need the Visual Studio 2010 redistributable package from Microsoft

    If your anti-virus program thinks that DreamDota/DreamLoader/DreamCrack are viruses:
    1) Turn your anti-virus program off.
    2) Download and extract all of the files you need to.
    3) Make sure the files are where they need to be (if you move them later, your anti-virus program may complain).
    4) Add all of the files that you extracted to your exceptions list (if your anti-virus has this feature).
    5) Turn your anti-virus program back on.

    Installation
    1) Download DreamCrack from this post (at the bottom).
    2) Extract DreamCrack files to your TFT folder.
    3) Edit DreamDota.ini if you want to change the button hotkeys. For a list of possible keys, see Keycodes.txt.

    DreamDota should now be automatically started when WC3 starts.


    History
    v9.5:
    -Fixed another major crash bug.

    v9.4:
    Fixed a bug that prevented WC3 from running if the "Frozen Throne.exe" or "Warcraft III.exe" executables were used (as opposed to "war3.exe").

    v9.3:
    -Fixed a major crash bug.

    v9.2:
    -Fixed a bug that preventing DreamDota.ini from being read at all (whoops).
    -If DreamDota.ini can't be read, it will now use the normal default keys (tab and ~).
    -Fixed a bug that caused the login screen to show up occasionally.

    v9.1:
    -Now works for all versions from v1.24b to v1.24e
    -No longer requires administrator privileges
    -No longer need to be loaded every time WC3 is started
    -Removed the login screen
    -Added a config file
    -Fixed several other bugs that caused the crack to fail

    v9.0:
    -First working version

    Download
    DreamCrack v9.5
    DreamCrack v9.4
    DreamCrack v9.3
    DreamCrack v9.2


    If v9.5 doesn't work well for you, try v9.4.

    When using v9.4 or earlier, use the following bug workaround method:
    1) Load Garena (if that's where you want to play)
    2) Start WC3
    3) Click "Single Player" then click "Custom game".
    4) After step 3, you can go ahead and play WC3.

Garena + Reshackers

 change the name login,password etc.



have fun & give a try ^^'

Reqs : Garena.com

DL:




Detection Status : unknown

GarenaHack 5.23 - CRACKED BY TDT [ HOT & NEW ]

The latest version GarenaHack free time for you.

Some things have changed, please see the full list of changes to the official website.

How can I use?
You can take the hack you need to register for free.
To do this, click on "Save" button at the court of the login.
They are on a page where you can submit the form to be redirected.
Those who registered the previous version need not register again. Just use the same username and password.

In the new version to change some things. MH Cqccyh links and new features, including the possibility that you know that if you chat hack, and not just "a scourge. All these things can be seen in the resources page.

Version of the button, is now in Version detected automatically. Papers 1.20, 1.21, 1.24c, 1.24d version 1.24ey.

In others, many thanks to all who waited patiently, especially in those who still use the older version Garena lives.

You can easily hack the update on the links above (UO Easy-Share 4shared SendSpace).

Features:
1 - Make all symbols
2 room with no windows and Anna advertising
3-screen real table instead of the bar (in room, game occurred Thursday anyone UR)
4 spam messages in the channel has a cat
EXP increased 5-10 times, they keep it open, Garena, you can get Level
6-Unlimit Watch Group, also a full member
Generation-9 1.20 1.21 1.24 / 1 v. 24d Maphack s-function
12-trace the IP address of the population
15 updates on Garena Garena later and later hack
16 - you can leave the room during the game
17 - is seen as a series of Platinum or the host
18 - War3 name can be changed arbitrarily
19 - the player can watch the game space and the inclusion of a list of members, as well as rooms with facilities and high
rates may be revised in 1920 in the profit and loss account
21st May have a significant high camera
Dota functions:
1922 CUSTOM KICK (kicking and Him)
£ 23 (DELAY of influence on players and not the others)
£ 24 can be silent or mute a player
see 25 computer opponents, IN
1926 poem comes SMS alerts, which describes the Rune down a bit, and even a ping minimap shows a different kind of color runes depond
27 Maphack Detector
28 to give the public a resource
1929 torrent Kunkka see snipers in the final, while charging SB games, etc.
30 bars from the mana
31 Click safe - protecting jerky fog detection (including repeat)
See below 32 units invisible gray bar.






VirusTotal

Garena HACK HOT Features!

Good morning. Today I have decided to participate in this forum, and it was time.

Since I'm new here, I will start a program for a month, including:

) Custom KICK (kicking or him)
2) Hack delay (delay of some players and have no effect on the others)
3) hack you can turn off or silence
Team 4) can read an opponent cat
5) show, a poem: It is a text that describes Rune down a little, and the table is 6) is characterized minimap color depond other country
7) Maphack Detector
8) gives the browser a resource
9) you can see, hear Kunkka has the shooter SB Shop, etc. During the game
10) Mana bar
11) Click Safe - protecting jerky fog detection (including repeat)
12) See the gray bar hidden units

Note: I sold the program and came to 150 people.
Downloads: top.





Crisgon DotA Toolkit - Advanced Toolkit for Warcraft 3 DotA

DotA Crisgon Toolbox - Toolkit for Advanced Warcraft 3 Dota

Crisgon DotA Tools
Below is developed an impressive set of tools, DotA Crisgon. Basically it is a standard toolkit Warcraft 3, but some are especially designed for advanced addons DotA. This program is almost all public services should be a player during the game DotA. These features include how amazing CustomKeys SPF breeder meep Bot Bot Summoner and others.

Now players must not open a number of programs for different activities, because this program has it all!

DotA Crisgon Toolkit features:

Tools Warcraft 3% u2022 Crigson list of keyboard shortcuts
You can define keyboard shortcuts for all the stocks Warcraft 3 keys.

Bind mouse wheel% u2022:
You can set a keyboard and mouse wheel.

% U2022 autocast skills and Selfcast.
This allows you to specify the desired shortcut key skills and then use the option "Auto-cast and Selfcast.

% U2022 CustomKeys Warcraft 3 sort keys ()
Functions to create and can CustomKeys.txt Spell (skill) and other means of transport. For example: Q, W, E, R, etc.

DotA Crigson ToolkitNote: the key to the game Warcraft 3 seats to make it work.

% U2022 Summoner Super Keys (Summoner Bot)
This may allow you to bind hotkeys to Summoner Skills (do Summoner spells by pressing a button to do)

Meep% u2022 Super Keys (meep-bot)

Hmph first start:
Bind the key to all clones meep Ottoman, Turkish geomancer their origin.

Another Earthbind Bot
This function automatically selects the next post-merger Earthbind meep, you activate the link.

% U2022 short message:
Only the spammers .Games for children, allows you to send a message of this manual to enter the key.

Tip: You can use the code, for example,
All: "Your text here" - is the entire message.
Our "Your text here" - he sends his allies.

Fast% u2022
At the beginning of the other selected program or copy and paste the path and click on the market.

% U2022 Health Bar / CustomKeys
You can use the health bars and CustomKeys change or turn off during the game, you use the keyboard shortcut.

% U2022 resolution changes:
You may want to change the resolution Warcraft 3 This is the users of public display, resolution should not appear in the film, in accordance with the regulations.

% U2022 improve FPS:
This will improve the Warcraft 3 frames per second, so you can play without problems.

Warcraft 3% u2022 Field:
Play Warcraft 3 in windowed mode, no problems with the cursor.
Download:.








.

[DotA] Invoker Auto-Hotkey Script Ver.3

Wynthar's DotA Invoker Auto-Hotkey Script
Version 3

Okay, so version three! Man. I have just spent many hours writing this script. I really don't feel like making a tutorial. But, I'm so happy with the way the script turned out ath I'm going to try to create a nice looking well rounded tutorial to support the script.

Credits
kill5link : Code for turning on and off the script in chat rooms/hitting enter/escape.
CerberPl : Pointed out a major flaw in my last script which made this script so much better.
Valarauka : Got some stuff for version one, including the Enter key to toggle.

Newest Feature
So, the thing that I spent hours on this revision is the ability to "remember" which spell or spells are currently invoked. The first tactic I used was to detect what the current spells were by grabbing a pixel at a point of the screen for the spells. I realized I had to get a different color for the spell if it was on the left side or the right side. I also realized I had to get a different color if the spell was currently in cooldown. So, I spent perhaps an hour writing up some code to detect the colors, then one by one I had to cast each spell, get the color, cast next spell get the color, invoke next spell. You get the idea. Eventually it was kind of tricky to get a few of the spells to be on the right side or the left side in order to record the colors.

After spending a long time doing this, I was in window'd mode, and I resized the window. I suddenly noticed that all my colors were off. I did a little bit more experimentation and found out that the colors change at various resolutions. Very upsetting. So I was stumped for a while, but then I thought about something I had seen once. Each time a spell is invoked record it. But there is a problem here too. Because, sometimes the spell doesn't get invoked if the invoke spell is on cool down. So, I grab the colors and determine if the invoke spell actually got casted. If it does, I keep track of the last two spells to be successfully invoked. Rotating in the newly invoked spell and cycling out the spell invoked two times ago. It's working pretty well now.

Known Bug
I know already that there will be one bug. The bug is going to be that if you are only at level 1 of Invoke, and you have invoked two spell so far, the script will think that you have two spells invoked. For example, let's say we've only got one level of invoke, and we invoke sunstrike, and then forge spirits. Well, we want to go cast sunstrike again. The script thinks that we have sun strike, since we can have two spells at higher levels. This will fail then when you try to use F7 to cast sunstrike. Until you have two ranks of invoke, you will have to manually invoke sunstrike (7) before you can cast it with F7.

Features:
  • ` Enable the script. You must run this at least once.
  • F1-F10: Cast Spells (Invoke if needed)
  • 1 - 0 : Invoke Spells
  • = : rotate current power balls
  • F11, F12 : click the left and right spots of the invoker spells.


How It Works


In this screen shot: F11 would cast EMP, F12 would cast Sun Strike

"Power Ball"
This is the term that I use to refer to the balls that fly around invoker. When you press "E" three times (for Exort) you will see three red balls floating around invoker. You will also notice his damage goes up +3 each power ball. So +9 at level one. If you have trained up to level 7 Exort you will have a maximum of +63 damage if all three "power balls" are red (Exort). This is why it is handy that when the spells are invoked, it reverts back to the "current" power ball. Sometimes you have the Wes power balls set because you want increased move speed. Say maybe you are trying to run away, or get to a battle. Then you want to cast ice wall and keep running, well then it's nice to just press the number 3, and have it invoke ice wall so you have that spell prepared, then it also reverts back to three Wes balls so that you can keep running quickly. Same goes for the other power balls, like with Exort you want to keep the DPS high.

In order to activate your "power balls" for the script to know which set you have, you must use the = key. You can find in the script where this key is mapped and change it if you want. It just is where I like to have it.

Even if you don't have a particular power ball, pressing = will attempt to "press" that button three times. Just press [=] again and it will move to the next "power ball." Hope that makes sense. Just get into a single player game, pick invoker. Type -lvlup 25 and level up his spells and try playing around with the script.

Invoke Spell Keys
Pressing the following numbers will invoke the spell, then it will revert back to your current "power ball."

1 Deafening Blast
2 Chaos Meteor
3 Ice Wall
4 EMP
5 Forge Spirits
6 Ghost Walk
7 Sun Strike
8 Tornado
9 Alacrity
0 Cold Snap

For Example
If your current power ball is Quas, and you press the number 5. The script will quickly "Click" the Exort, Exort, Quas button, then Invoke, then Quas, Quas, Quas. This will result in preparing the forge spirits spell, and then going back to your quas "powerball."

Of course you can remap all these keys by changing the letters in the script. Should be easy enough to find.
(Hint: *1:: PrepBlast() is where it sets they number 1 to cast the Deafening Blast Spell)

Cast Spell Keys
Same numbering sequence, and similar idea to the Invoke spell script. This spell willa ctually cast the spell as well as invoke it if needed. Remember this will have a bug if you only have one rank of the invoke spell. But once you have the second rank of invoke spell it works pretty well.

F1 Deafening Blast
F2 Chaos Meteor
F3 Ice Wall
F4 EMP
F5 Forge Spirits
F6 Ghost Walk
F7 Sun Strike
F8 Tornado
F9 Alacrity
F10 Cold Snap

Attached code as well. (Obviously rename it from Invoker3.txt to Invoker3.ahk)
Downloads:



DreamDota - advanced micro hack for DotA. version 8

Dreamdota is an advanced micro tool for Dota Allstars.
Can be used on Battle.net and Garena.

You can use free features in multiplayer game, or try out VIP features in single player game without paying.
For VIP features, DreamDota is a private hack and is only available when purchased VIP.

Requirements
Warcraft III: The Frozen Throne with version 1.24b ~ 1.24e.
DotA Allstars map 6.63 ~ 6.67c

Where to download
http://get.DreamDota.com
Latest version: v8

How to use
Download and extract 3 dlls, put them into your warcraft folder.
Start game (no matter with exe or with garena), there appears a login window.
You can login with VIP account, or click on trial to test.

If you dont see the login window, check your antivirus setting (probably false kill)
or contact me on MSN: nachtelfen@hotmail.com

How to buy VIP
Price, Payment and contact informations:
http://buy.dreamdota.com/

We are in cooperation with Garenahack.
You may also purchase it on Garenahack, check the following page:
Dream dota - Dota last hit/auto dodge hack


DreamDota Features:

Free Features - UI related functions
- Press Pause to turn on / off all functions.

- Hotkey to toggle score board on / off (hotkey: tab)

- Shows hero damage taken / healing value over unit with different colors:
white - enemy hero takes physical damage
yellow - enemy hero takes critical / spell damage
red - your own hero takes damage
(toggle feature on/off with hotkey: Home)

- Shows your hero's attack range while holding key
(hotkey: ~)

- Camera feature
Increase camera distance: hotkey "-" on numpad, max 3000
Decrease camera distance: hotkey "+" on numpad, min 1650
Change angle of attack between normal and vertical: hotkey "*" on numpad

- Unit model improvement:
slightly modified several hero's 3d model for easier selection / targeting
they are : Venomancer, Atropos, Rooftrellen

- Detection of other player maphack clicking not visible item / rune
- Detection of other player exchange gold using maphack



VIP Features - micro related functions

You can define custom key for last hit and score board toggle.
By default: 256 (tilde) for last hit, and 515 (tab) for score board.
For further informations about key value, please visit:
http://www.dreamdota.com/web/2010/05...pping/?lang=en


* Auto last hit / deny hit (default hotkey "~") *

Hold down the key to use auto hit, release it to move freely.
Ranged hero only hits targets in its range, melee hero will auto move and hits units within 700 range.
Your hero will also last hit towers and neutral creeps

Extra functions while holding down the key:
- when an enemy hero enters your attack range, your hero will automatically
attack it, but last hit action has higher priority.
- if your hero is going to be attacked by creep units, it will try to distract their attack
using attack command on a friendly unit for very short time.

* Auto avoiding spells *

- Pudge meat hook
- PotM arrow
- Windrunner arrow
- kunnka torrent
- use Kelen's Dagger to avoid Tidehunter's ulti skill if available
there will be more in the future !


* Map hacking *
unlike many maphacks, these functions are simple but safe and undetectable.
Both are default off, you can turn on with key End

- Shows enemy hero location on minimap with ping signal
with red or player color depending on ally filter setting
- Rune spawn message
reports location and type of rune when spawned


* Micro improvements *
improves user's action and gameplay.

- Spectre's advanced routing:
when Spectre enters no-collision mode, its move action will be reinterpreted
as a straight path toward destination.

- Pandaren Brewmaster's auto usage of spells:
when your brewmaster uses ultimate skill, the Earth panda will automatically
throw bolt to stun an enemy hero (best target) in its spell range.
Storm panda will cyclone another (stronger one) enemy hero.

- Storm spirit(raijin) combo:
after each spell cast, your storm spirit attacks a best target (enemy hero) within range
this will make best usage of 3rd skill ( overloading)

- Shadow shaman's serpent ward surrounding:
when you cast its ulti skill: serpent ward to location that is very close to an enemy hero,
the action will be adjusted and there is high chance to surround the target directly with wards.

- Advanced 4-units surrounding:
whenever you control at least 4 units that have collisions, select them and
keep using "(M)ove" command rapidly on an enemy unit, just the same as the common surrounding micro,
your each unit goes to the right position and surrounds the target.

DotA 6.68 Preview Video Coming Soon!

IceFrog in my last blog, which published an update on new developments in the next DotA 6.68. As we know, IceFrog ready to introduce a balanced result, a perfect balance between characters is proposed brings communities in the new version of DotA to help. He also said DOTA 6.68 is a video preview on the witch, highlighting new content and changes we will see 6.68


That is, his words IceFrog:

I'm still 6.68. We will post a video preview in the near future to see new content. There are a few new heroes, so that the time to ensure high quality. It is also the current contents of the balance between work and many other improvements and features.

If there is something that can be seen and subsequent amendments, please let me know.


Yes guys, it affects our IceFrog comprehensive, balanced and of course, new episodes of Heroes (, cosmetics, etc.). Be prepared to experience something new dota 6.68, video preview soon!.

BuffMePlz Retires From Developing DotA AI Maps!

BuffMePlz, developer of DotA AI map recently in his blog that he sensing AI known. It is very sad news for DotA community, there has been established that the author of the version of DotA AI map life in the past two years. DotA fans have a great job and thank him for it and good luck in the future!

It is the latest update BuffMePlz:

After much thought and consideration, I decided not to go with the AI Dota maps. My other work got in the next phase of my life, very little interest in DotA, frustration and meets the needs of the community and the community to cope with my absence, I think it's better for me to drive this project and move.

It is nice for two years, and almost all the updates since version 6.49 (This is the sixth 66b crazy now!) How lazyfiend / RGB, said that when he went out, I think this work more fun, the card is for me and is actually a bit difficult.

God, we Tony (Killerbee) turn to take the lead, and he decides, I'll try to help them as much as possible. Otherwise, I hope that my party like the last two years learning the complexity of the engine and the WC3 is the site-specific.

My passion has always been fun bars, and although it develop from time to time to some of the maps on my old blog trademarks and / or the original, so page website and comments will be betrayed by my continued here.

Thanks guys and have fun!

As mentioned above, methionine ask God, Tony (Killerbee) nor DotA AI. I hope that someone start BuffMePlz and Development DotA 6.67c AI and AI 6.68 DotA map.

Agin, BMP Thank you for your time!.

Skillhackers WUtil Maphack

Features:

* Reveal units
* Remove fog (full or partitial)
* Manabars
* TP-reveal
* Safe-Click
* Reveal abilitys of enemy units.
* Different hp-bar color for non-own units.
* Show move speed of hero units in tooltip
* Press tab to show player resources box.
* Ingame maphack settings menu (Game menu --> Options --> Maphack)
* Anti-Detection code
How To:
* Extract all files from the zip archive to your Warcraft root directory.
* Close Warcraft if already running
* Run WUtil_Loader.exe and wait until Warcraft 3 launches.

Can I get banned for using this?

Currently not. There is some code to hide the hack from Warden. But as always, I can't guarantee anything so use it on your own risk.

Note:
It is intended to work only with newest official Warcraft client on Battle.net. So no support for Garena or similar.
Downloads :



[Updated] Garena Cracked By TDT_

He was the last version released GarenaHack: 5.28 *!

This new version works only with the new update is not Garena cqccyh resources.


Entire message bet cqccyh damage has been corrected a mistake, opening the main window of the delay.

Updated only hack update links (UO Easy-Share 4shared SendSpace).


Hi all CYA.

* PS: I dismiss 5:27 but after a while I noticed that an updated version I have is 5.28.

These words are the same TDT_
Downloads:




[Dota] MeepoBot v1.1

Good. Since many users can not use a written AlexandertheGreat MeepoBot recode decided.

Well, I have a little problem with my code, so I, the two works (you choose between them must, for the review.).



So far I have taken a search engine such decisions:
1024 * 768
1280 * 1024

Resolutions, which are under construction:
640 * 480
20 * 576
800 * 600
1152 * 864
1280 * 960

Instructions:
WC3 Top / bots (- Links to Configuration>)
Bot Home / WC3 (-> set of keys)
Join games
Press the key combination
own

Downloads:




I hope all these resolutions, a way to add bot to be found will be selected against.
Excuse me a moment.

So far, I hope you offered.
If you have questions or problems, please send this thread in this context.

Sincerely, Tracky
Enjoy .

Ladder DropHack v 0.3d

by MyGarena

only 1.24
Requires:
Warcraft III-E, or 1.24 1.24D
Garena (3.3 or 4.0 works GarenaM4ST3)


If you want to install

1 - Make sure Garena closed and Warcraft
2 - Click on the drop-hack - MYGarena.Co.CC.rar "
3 - u 2 and the files garena.exe war3.exe
4 - Bad garena.exe ur Garena folder
5 - ur war3.exe bath for a target folder of Warcraft

-How does it work?

1 - NO in Garena Warcraft
2 - u, if the game just opens Drophack
3 - (most), click on the name of the tire

* All pull the ladder does not work

1.24DR * Works 02/24/2010

- "Kick Push is not working at all levels.
Make sure that the backup and WC3 War3Hook.dll Garena is, and if you hack for fun, want to ".
Downloads :





this

[DETECTED][1.24e] FunsDotaHack v1.2

Hey guys,

So here is my hack for 1.24e.

Everything should be explained by itself.
Just extract the archive to some folder and run FunsDotAHack_v1.2.exe


Don´t forget to press dropbnet botton!




I really need feedbacks, since this wasn´t tested very wide -> there may be issues.
So write exactly what is working and what not and dont forget to mention your OS.

Please dont write comments like "thx sooo niccee" just press Thanks if you like it


I don´t have so much time at the moment, writing a bunch class tests -.-´
So when i got time i will make this thread more detailed with some pics and visual changes.
Downloads:




here

[NEWS] Hacked Garena V3

Hacked Garena V3





* GarenaGods Hacked Garena 100% Safe Not Causes Ban



V3:Changelog
  1. CrashSender Modified
  2. Default Skin ArmyGreen
  3. Fixed Update Bug
  4. Fixed Room Capacity Bug
  5. Removed Garena Protection
  6. Fixed MTV Asia Bug

About: Older Versions
-Game Will Crashed Be4 Reporting
-Fixed UnKnow Players Name Problem (in Game)
-deleted some ADS

-First Release-
*Size Decreased By 1MB
*Enter any room without 5 seconds limitation popup
*Remove Garena Ads
*Change ur name without any problems
*mAKES U FEEL lIKE A gold member
-SeCond Release-
*Ladder Details (Showing u Ping Winning Games .....)
*Real time Ping
Downloads:



[DETECTED] aMap v1.0 (1.24e)

[DETECTED] aMap v1.0 (1.24e)

There's much trouble about "Bendiks" bMap,
To the honest it is my, renamed hack, but that will stop right now.

I'll release the real aMap right now.

Picture:


You can only activate and deactivate the Hack while Ingame.
Activate: Press the "HOME"-Button
Deactivate: Press the "END"-Button

Update: v2.0 is Released now.

Changelog:

-- aMap v1.0 --
Beta-Release:
MainMap
- Remove Fog
- Reveal Units
- Show Action Buttons
- Show Skills
- Show StatusQueue
- Show Cooldowns
MiniMap
- Remove Fog
- Reveal Units

-- aMap v2.0 --
Added Features:
MainMap:
- Reveal Invisible Units
- Reveal Illusions
MiniMap:
- Reveal Inivisible Units

War3Lib:
Fixed an Issue causing the TextOut function to always use Player 1 as speaker (Now always you speak the
On/Off msg, won't be seen by the Enemy)

Credits goes to kolkoo for helping me alot
Downloads:




here
GL & HF
aCid

Manabars 1.4

Manabars 1.4

Manabars 1.4
working for all versions 1.24 and 1.24e also
how to use:
1) launch Manabars1.4.exe
2) launch wc3
and you are done
also works for garena

 
Virustotal
Download: 




here

[DETECTED] CryptHack v1.24e

Crypthack is Back!
With simple UI and awsome features (or maybe i got that backwards...)

I wish I could say that this is the first 1.24e maphack out, but due to me being a idiot and doing a total system recovery on my computer and forgetting about all my files from crypthack v1.24d, this is a little late..

Features-
Mainmap units
Minimap units(NEW!)

I know adding minimap units to the extensive list of features wont impress many people but im still a noob at hacking and a terrible programmer(dont let the UI fool you). I'll continue to learn and try to add more features, so please don't post asking for me to add some new feature because i know that my hack is lacking and i know what features are in other hacks.

Speaking of what not to post, please do not post things like..

Thanks
If you wish to thank me then please hit the thank button at the bottom of this post.
or
This is the worst hack ever
This is not the kind of constructive feedback that I wish and if you dont like my hack then feel free to use another.
Downloads:





Here
Thanks,
cryptl0rd

EDIT: HACK ONLY WORKS WHEN IT FEELS LIKE IT, GO FIGURE (NO WARDEN PROTECTION, USE AT YOUR OWN RISK

Garena Master Solution

Guys, I solved the problem about Garena Master(not finding Garena process) on Windows XP with Deep Freeze weeks ago.

Here I'll show you how it works:
1.Open Control Panel(Classic View)
2.Open the Administrative tools
3.Open Local Security Policy (Now you will be on the Local Security Settings)
4.On the left side, click Local Policies, after you click it you will then see the User Rights Assignment.
5.Click User Rights Assignment then find Debug Programs on the right side.
6.Right click on Debug Programs then click properties.
7.After you click properties you can now click Add User or Group,click advanced then click find now then choose administrator.
8.For those who don't have administrator password, right click my computer, click Manage, under Local Users and Groups click Users on the right side then right click administrator then set password.
9.After you've done the method from 1-8, you can now right click the garena master and run as administrator.
10. It is time for you to thank me now if I helped you. LOL
Hint: This method also works with other Garena Hacks which require debug privileges on Windows XP with Deep Freeze.




Thank  kistah

How to stop drop hack

How to stop drop hack

I have found a method that is working for me right now that stops the drop hackers. This only works with the share controll drop hack that i know of. It may not always work but im 3-0 with this method right now and I want to help people avoid it without needing the anti drophack. First thing your going to need is your router, this wont work for wireless people sorry When the other person shares controll with you first pull your internet cord out of the router and wait about 10 seconds and put it back in. Then hit Ctrl Alt Delete to bring up your task manager. I then pull my internet cord again for about 10 seconds and ctrl alt delete again. Then i click on wc3 give it a second to load and if your still frozen just repeat this process. Just try and type somthing to check and see if the lag is gone, you might have some delay but you wont lag out, and other person should leave and you will win. Im not 100% sure is this is a solution but its working for me and i just wanted to help some people out!!! Please respond to this if it works for you.

Regards,
Animad




THANK   Animad 

(DETECTED) [1.24e] TyranO's D3Scene Maphack

[1.24e] TyranO's D3Scene Maphack
(DETECTED)

I have disabled camera distance and red invisible units temporarly, should be back soon. Smooth Camera is still there though and should do the job. If there is a crash, report the faulty feature or crash log.


Old thread for dropbnet instructions, etc.
:
[1.24c] TyranO's D3Scene Maphack


Features:

- Save features in config.ini (customizable all features)
- Grab your Cd-Keys
- Reveal units
- See Undead blight
- Build on unexplored ground

- Reveal units on minimap
- Remove fog
- Remove fog on minimap
- Clickable units
- See ressources
- See invisible
- Bypass -ah feature in DotA (Sd333221)
- Show illusions (Sd333221)
- Show enemy pings (Sd333221)
- Clickable invisible units (Sd333221)
- See cooldowns (Sd333221)
- See skills (Sd333221)
- Show invisible units as red (Sd333221)
- Show hero icons ally/enemy/all (Sd333221)
- Enable trade ressources in DotA (Sd333221)
- Show hero icons ally/enemy/all (Sd333221)
- Enable trade ressources in DotA (Sd333221)
- Working Hotkeys (F4,F5 for on/off and NUM+, NUM- for zoom out/in)
- Namespoofer with colors
- Camera Distance Hack (customizable distance)
- Custom trade amounts
- Minimize to tray button
- Show all HP bars (For the HP bars features, you have to have the option always show healthbars in warcraft III DISABLED)
- Show only enemy HP bars (Darimus)
- Show only ally HP bars (Darimus)
- Top view feature (removes the angle so you look over everything at 180 degrees)
- Remove zoom angles (removes the deviation when zooming)
- 90 degree spin (spins camera by 90 degrees)
- Smooth Camera (Max Camera distance that doesn't lock the zoom)
Downloads:





TyranO's D3Scene Maphack

Thanks to:

Darimus, SD333221, and the rest.

Become a fan on facebook Search Names: tyrano | Facebook

and d3scene.

Simple Namespoofer v3

Description:
A simple namespoofer, which features a GUI to type your name in and a button to patch. It couldn't be easier to use!
It works with all the latest versions of Warcraft, including 1.24e which is the most recently.

Requirements:
- .NET framework most likely as it is coded in C++.

How to add color codes to your name [Guide by MaRcDk]

Changelog:
> v3
> - Added namespoofer for Garena (you will automatically be asked whether to patch Garena or not when clicing on patch)
> v2.0b
> - Added a button which links to this page
> v2.0
> - Did a total rewrite of it which made me able to add a UI to it


Download:
Simple Namespoofer v3

VirusTotal check: Pass

Guide To Colour Codes

What are Colour Codes? What are They for?

Colour codes are just a code placed in a tool tip or description in the Warcraft WE. Colour codes allow you to colour your text.
With it you can make many different colours. It is great when you want to highlight a specific thing.

Now. Before I get any further you must know one thing. The colour code is shown like this: |cTTRRGGBB"Ooo! Nice Text!"|r
-----------------------------------------------------------------
What Does it mean?

|c - This is extremely important! It tells Warcraft that it needs to use the colour code after it. Without it your text would look like this: "005599FFOoo! Nice Text|r"

TT - This is less important. This is the transparency of the text. Type FF or 00 or what you want. They game doesn't use it, but it checks to see if its there, if not, then the colour code wont work.

RR - This is how much red is in the colour you are mixing up.

GG - This is how much green is in the colour you are mixing up.

BB - This is how much blue is in the colour you are mixing up.

Getting the | - to get the | you can press shift+\, or to get the |, you must press Alternative Gr. + 6 : |
(Alt Gr if you don't understand, at right of the espace button)
~depends on keyboard

|r - This is important too. It tells Warcraft that the colour code is done and to stop colouring text, it is not needed if you want all after the code to be coloured.
--------------------------------------------------------------------------
The Code

So, now you know what a colour code is and the basic layout. But, you don’t know what you replace "TTRRGGBB" with. I will explain that here.

The colour code is split into 4 sections, transparency, red, green, and blue. You know that but you replace them with numbers and a few letters in increase the amount of that colour. Like when you change blue and green on a unit in the object editor to 0, it will be red. So, when the blue and green in the colour code are empty the text will be red.

There is 15 numbers used in the colour code that replace the "TTRRGGBB" .But, there is only 10 single diget numbers, looks like you need to improvise. They are replaced with 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A(10), B(11), C(12), D(13), E(14), F(15). Each section is made up of two of the digets combined to make a tint or tone of the colour.

Colour Code........0-255
00.....................0
11.....................17
22.....................34
33.....................51
44.....................68
55.....................85
66.....................102
77.....................119
88.....................136
99.....................153
AA.....................170
BB......................187
CC.....................204
DD.....................221
EE.....................238
FF.....................255


 --------------------------------------------------------------------------
Some Helpful Colours

That show help you with creating those nice tooltips. But here are some that you would probably use most.

Red FFFF0000
Lime FF00FF00
Blue FF0000FF
Orange FFFFA500
Green FF008000
Purple FF800080
Pink FFC0CB
Gold FFFFD700
Black FF000000



White FFFFFFFF

[New]-[1.24e]YourName's Maphack v3b

!Version 3b!

Description:
A easy maphack, featuring:
-Reveal units mainmap, minimap
-Remove fog mainmap, minimap

-Reveal illusions
-Reveal invisible
-Show items mainmap

-Clickable units under fog (CAN BE SEEN IN REPLAYS!)
-Reveal skills and cooldowns
-Bypass DotA -ah


-Namespoofer for BNet and Garena
-CameraHack

-Disable Garena antihack protection
-Warden safety as of 19.03.2010

People are saying the offsets are detected, I however cannot test it, but to be sure, use the DropBNet method.

Download:
YourName's MapHack.rar


VirusTotal check

Changelog:
v3b
-Improved camera hack
v3
-Readded warden safety
v2c
-Temporarily removed Warden safety
v2b
-Added Warden safety
-Added Garena namespoofer (a dialog will popup when using the namespoofer button, asking you to patch Garena or not)
-Fixed file size
v2
-Reworked UI to add a few things
-Added checkboxes to make things from the MapHack optional
-Added namespoofer
-Added camera hack
-Added button to disable Garena antihack protection
v1
-Initial release

Requirements:
-.NET framework

FAQ:
Q: The maphack says it couldn't patch into Warcraft's memory, what's wrong? QQ
A: There are several solutions for this.
1 - You are using Windows Vista/7, run it as administrator.
2 - You are using Garena, you have to patch garena before you start the game to make it work.
3 - You are having an ATI video card, update your driver. If it still doesn't work, your problem, sir.


Screenshots:


(Note: If you uncheck patch, you will remove the maphack from memory)


Puck Invulnerability Bug, DotA 6.67c

After the Linken's Sphere Rune Bug, there is another bug found in the DotA 6.67c. This time the bug is pretty interesting. You can become invulnerable on Puck if you abuse this bug correctly. However, you need to co-ordinate with your opponent which is impossible but you can do it with your friends. This bug can be game-breaking if it's done right way.



Steps:
1. Pick Puck.
2. Get Tower to hit your Hero.
3. While the Tower hit projectile is in air get charged by Baratharum.
4. Immediately click Phase Shift.
5. What? Just see yourself :p

Note: After becoming Invulnerable you can't pick up or use any items but you can get damage items so you can pwn during invulnerability :)

Credits to Kuarinofu & Zhuk.zu

[DETECTED] CrashFix2

Description
This program fixes two CrashHack exploits (described below).

CrashHack Exploit 1
Description: The hacker (or exploiter) plays Night Elf. He unroots his Tree of Life, reroots it, then repeateldy starts and cancels construction of an Entangled Gold Mine. This exploit causes your computer to lag over time. After a few minutes, your computer will freeze completely.
Usage: This exploit is public.

CrashHack Exploit 2
Description: The hacker shares control of his units to you (even though you are an enemy of his). He then builds a building over and over. This exploit lags (or even freezes) WC3 right away.
Usage: This hack hasn't been released publicly, yet, but it is likely being used by over 100 people.

Instructions
Inject this DLL file using RemoteDLL (any DLL injector will work) into your Warcraft III v1.24e process. If you inject this file into anything besides a Warcraft III v1.24e process, it will have no function. If you close Warcraft III and start it up again, you will need to inject this program again. If RemoteDLL gives you any errors when do the injection, then you are NOT protected from the CrashHack exploits. Please make sure you are trying to inject into a Warcraft III v1.24e process. If you still get an error, please let me know.

Replays
I have uploaded an example of each crash hack so you can test that CrashFix2 is actually working.

The replays are for RoC. You can still view these with TFT installed: just use the "Warcraft III.exe" file instead of the "Frozen Throne.exe" file to start WC3.

CrashHack1 Example:
Without CrashFix2, you should be able to run the replay at 1x speed for a while, but WC3 will freeze within a minute.
With CrashFix2, you should be able to run the replay at 1x speed for the entire length of the replay. You may have a bit of lag by the end.

CrashHack2 Example:
Without CrashFix2, WC3 should freeze at 0:06 and give an error after a while.
With CrashFix2, you should have a few seconds of lag at 0:06 and then be able to watch the rest of the replay without problems.


History
v2.02:
-Completely rewrote CrashFix2.
-Fixed two more compatibility problems. It should now work without errors on Windows Vista and Windows 7.
-CrashFix2 is now open source.
-Added some basic error checking (checks to make sure it's loaded into WC3 v1.24e).

v2.01:
-Fixed a bug that caused this program to not work correctly on computers with ASLR enabled. (Most new computers).

v2.00:
-Initial v1.24e release.



!!!Warning!!!
Blizzard is banning for CrashFix instead of CrashHack!

If you use this program on battle.net, YOU WILL BE BANNED!
!!!Warning!!!

DOWNLOAD

DotA 6.67c AI | DotA Allstars 6.67c AI Map

Dota 6.67c AI Map will be the upcoming DotA AI map instead of 6.67, 6.67b AI because IceFrog has recently released the official Dota 6.67c map which has fixed all the bugs of previous patches. So, BuffMePlz will follow IceFrog and he will start working on DotA 6.67c AI.

This page is created to provide you all the updates of Dota 6.67c AI map by BuffMePlz.

Update #1 by BuffMePlz "No map until June at the earliest":

Absolutely swamped, likely won't have time until June to even look at the maps and script. I've been getting the changes from IceFrog and will update to whatever version is recent when I have time, but don't expect anything for at least two months.


This is bad news for fans who are waiting for DotA 6.67c AI but we should not lose our hope and be patience until the map releases, BuffMePlz will not disappoint us :)

So guys be patient untill BMP posts an update of DotA 6.67c, Don't worry it will be posted right on this page.

Warcraft 3 Manabars

Warcraft 3 Manabars is a tool which allow players to see Manabars of their Heroes and units in game, just underneath HP Bar. Normally, Warcraft 3 does not have option to view the Manabars of the units. This tiny piece of program will surely help DotA-Allstars players to check the manapool of their opponents during Battles, chasing, ganking etc. Check the Warcraft 3 Manabars 1.4 Download & guide.


Guide:
• Download Manabars 1.4.zip and extract the files.
• Run Warcraft 3 and switch to desktop using Alt+Tab.
• Now run Manabars.exe from the extracted files.
• Now play a map, you will see Manabars of allied and enemy units/heroes.

Note:
- All credits goes to Lynn for creating this program.
- If you disable "Show HP Bars" option in Warcraft 3, the manabars will also disable.
- Don't forget to visit DotA-Utilities.com for more updates :)

Download Warcraft 3 Manabars:
Manabars 1.4.zip