Showing posts with label Maps Hacks. Show all posts
Showing posts with label Maps Hacks. Show all posts

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.

[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 :



[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 .

[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

[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

(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

[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

Garena Hack v3.3 | Warcraft 1.24b Maphack | Custom Kick

The New Garena Hack 3.3 is released by GarenaHack-er, this version has built in Custom Kick, Diabolic Warcraft 3 Toolkit and Warcraft 1.24b maphack. You can use this Garena Hack with any Garena update. There are no MEGA Exp in this Garena Hack, even the original one doesn't have it. Read the guide and download the Garena Hack v3.3 with Warcraft 1.24b maphack.

Step by Step Guide (for noobs):

• Download GarenaHack_4.04_v3.exe from the link above.

• Install it in your Garena Folder.


• After installing run "GarenaHack" from Desktop. (see icon imge on right)

• A pop-up will appear, just click "YES"



• Now click, "Start Garena Hack v3.3"

http://i27.tinypic.com/2u55f1w.jpg

• Garena Hack window will pop-up.



• Now click "Start Garena Client - MapHack 1.24b - Custom Kick"

http://i29.tinypic.com/33zdzpd.jpg

• A pop-up window will appear, click start..

http://i25.tinypic.com/2nvgjsw.jpg

• Another pop-up will appear, but this time you know what to do ^^.

http://i28.tinypic.com/20keruu.jpg


NOTES:
• Run Garena hack by following the steps above, stricly
• GarenaHack.exe and Garena.exe must not be in same directory (it must be in a sub-directory), if you see this, delete the folder, and reinstall Garena & Garenahack.
• There is no MegaEXP in this hack.
• There is no virus in this hack, if your antivirus say anything, just disable it.
• If any Garena update comes, * Update it normally but after the update, when the Garena client is started automatically again, close it, and the click "Start Garena" again from the GarenaHack. If you don't do this probably nothing will happen. But it's best if you do this.

Best Game By Pass!

Many of you guys must have known this program for a while...

HideToolz

-Makes your hacks or any program undetectable in any game cheat detections.
-Hides the process of a program from the Task Manager

-Works on every game:

*Used on an original Garena to use a MapHack by this method:
a.)open your Maphack
b.)open HideToolz.exe
c.)find your maphacks process, right click and press hide
d.)open your Garena.exe (works on original Garena Ban me from 1st-hacks if it doesn't work when you use this method.)
e.)Log in, join room, start game
f.)Use your maphack
g.)Have fun! I will try opening two grandchase window by hiding the process of the other next time.

This is sometimes detected as a virus by some antivirus and as a hack program, not really a hack, it will be detected like Garena Hack... Don't blame me if this was detected as a virus.

Kind people please scan this with virus total because I'm not familiar with the site. Thanks


This works on any game hacks or any other programs! So please don't move this thread or any thing else. You can target Cheat Engine with this just follow the method with common sense!


Have Fun,
HackED

DotA Allstars v6.62 Collided

DotA Allstars v6.62 Cheated

-ca Activator
-gold #
-lumber #
-int #
-agi #
-str #
-lvl #
-xp #
-hp #
-mp #
-ms #
-debuff (Removes buff from selected unit)
-lock (locks the trade system)
-unlock (Unlocks it)
-charges# ### (First # slot 2nd charges)
-additem # (max is about 90)
-invul
-vul
-kill
-mana (Mana stays at 100%)
-invis (makes unit invisible)
-vis (visible)
-pathoff (walkthrough walls)
-pathon (normal)
-setcolor (red/blue/teal/purple/yellow/orange/green/pink/gray/lb/dg/brown)
-owner (red/blue/teal/purple/yellow/orange/green/pink/gray/lb/dg/brown)
-nocd (no cooldown)
-cdon (cooldown on)
-bindup/down/left/right (IE: -bindup -kill would make it so that when you hit up it kills whatever s selected)
-clearkeys (Clears bindings)
-showkeys (Shows bindings)
-mh (Dispalys map, no server splits, hopefully)
-setname
-size #
-food #
-heal
-copy #
-fast (Hit esc when training units)
-bfast (Hit esc on building structure)
-ufast (Research is instant)(To disable one of these commands add -no to it like -noufast)
-shareall
-share ##
-unshare ##
-ally ##
-unally ##
-soff (share off)
-spawn #### (List)
-ground ####
-add ####
-remove #### (removes the ability)
-g ## #### (gold)
-l ## #### (lumber)
-f ## #### (food)
-spa ## #### (Spawn unit)
-sn ## (setname)
-sc ## (red/blue/teal/purple/yellow/orange/green/pink/gray/lb/dg/brown)
-dead (Sets units animation to dead)
-birth (Sets building to being built)
-attack (Sets unit to attack)
-stand (Sets unit to stand)
-hear (You can see what everyone is saying)
-nohear (back to normal)
-noreplay
-kick ##
-tele (sets patrol to teleport)
-note (sets it back to normal)
-reg (Right-click two spots and a region will be made)
-time ## (Sets time to that hour)
-float ### ### (first #'s is height 2nd are speed)
-stop (Disable unit commands)
-resume (Enables them)
-area #### #### (First #'s are size 2nd Rawcode, then click where you want it)
-autoh ### (Autoheals by precentage)(A little buggy)
-disable (Disable -reg)
-list# (1-8 )
-cheaton ## (Turns cheats on for player specified)
-cheatoff ## (Turns cheats off for player specified)
-unit #### (Spawns specified unit at issued location)
-nounit (Disables -unit)
-act (Changes activator to whatever specifed, needs a - at the beginning)
-unitid (Shows the unit's rawcode)
-itemid (Shows the unit's item rawcode in first slot)
-destid (Shows rawcode of destructable in Reg)
-destroy (Removes selected units)
-revive (Revives dead hero and spawns at selected unit)
-addhp (Adds hp to any unit, needs to be divisable by 50)
-colors (Displays player numbers by color)
-say###### (# = hex code only 0-9 and A-F will work)(After the hex just put the text you want displayed)