Showing posts with label DotA Theme. Show all posts
Showing posts with label DotA Theme. Show all posts

Saturday, August 14, 2010

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

Friday, June 4, 2010

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








.

Thursday, July 2, 2009

Garena Skin Pack (Updated)

Originally posted on Garena - Connecting world gamers | Esports platform| Dota platform| Cod4 platform| CS | CSS | AOE | Garena Fire by "CleX...!":

" This is a pack of 10 Garena skins that can be changed easily using the Garena client. The skins are:


Skin ICE 1.0 -made by TheReaper
Futurist 1.0 - made by iREVELATiON
Garena Blue - made by WyK
Simple Theme - made by iREVELATiON
Garena Zyk-Tech - made by WyK
A7XSkin v1.0 - made by [MoD]_MyStErY
Garena Fufu Ninja Skin - made by Skiverz
Three Stars and a Sun - made by xeon
And of course the Default Red Garena Skin is
included "

+

Ultimate Garena's Skin - by Ankur Mathur

I've just updated the files with game icon's (new g-games didn't have one) plus added UGS skin.

How to install:
1) Download the ZIP archive
2) Extract it
3) Copy all the files from "GarenaSkinsUpdated/GarenaSkins.zip" folder to original/hacked garena's folder
4) Start Garena, log in, go to settings->skin
5) Choose skin and restart Garena

From ~1st-Hacks~ forum

Don't forget to press the THANK xD

Download Link:

Mediafire

Saturday, May 16, 2009

GarenaSection CLEAN/NEWS

As you guys may have noticed i cleaned from this section more than 200 threads , moved them all to void section.

I think it is betters this way , i will make this section a clean section for all .
to make it easier and with easy acess for everybody , and to improve the search system for all members.

I will keep cleaning it a little bit more , gonna move some old threads that doesnt work anymore .

My thought is to make this section with very restricted threads that everybody always replys and take their doughts in the respectives threads and not open new ones like '' pudge666 cant make work v5.0 '' those type of threads should be a post in pudge555v5.0 . and etc.

In the meantime i am working on my crack , but nothing new , just a method to make my crack lot easier to be worked on , as i see there are some ''new'' members that still dont get how to use pudge666.

Wont say much about it because i dont want exicte you all , who have actually their v5.0 working wont have anything new from this.

For now thats it.

By
PudGe666

Tuesday, April 28, 2009

Ladder Tyrano MapCraft 09 23 Released

MapCraft '09 is a Warcraft III maphack brought to you by Crytical and Tyrano, and appoved by Xexiu.

It is completely undetectable and has a two year history of success. It is, however; a private, yet updated and well maintained, product. It's also the maphack that has inspired almost every release in the last year from other authors.

It's a friend based, down to earth, 'always get updates, always be ladder safe guranteed' maphack. If you are interested in downloading it, private message me on this forum as Crytical or contact me at invalid5489@hotmail.com I can't have a download link on this size of public forum, obviously.

Your safety comes first, and we also like to give Blizzard the finger. This works in the most places with absolutely no bugs! It's the last maphack you'll ever need...

ps - > If you don't know who I am, i've been gamehacking for years, am all over google, and most of the top contributors on this actual forum have taken my classes before. Nice to meet you =p I am a friend to all.
  • Trial Features
  • Reveal All Main Map
  • Reveal All Mini Map
  • Remove Main Fog Of War
  • Remove Mini Fog Of War
  • Display Own Cd-Key
  • No Bugs
  • Undetectable
  • Full Features
  • Show Resources
  • Click Units
  • Name Spoofer


Contact Crytical for this.

Monday, April 27, 2009

C-ENGINE 1.0 (for 1.23)

How to start the maphack:

* Load cEngine
* Start WC3
* Press INJECT

Features:

*Maphack
*Reveal invisibles
*Show enemy ping signals
*Colouring enemy & fogged hp-bars
*Show ressources
*Safeclick
*Show skills
*Reveal illusions
*Reveal enemy building queues/timers
*Neutral & Enemy unit hotkeys
*Auto-share
*Auto-mining & worker queue
*Obshack
*Coloured creepnames reveal itemdrops
*DotA -ah bypass
*Use different keysets (-roc NEWKEY and -tft NEWKEY)
*Select windowtitle (-title NEWTITLE)
*Multiple start of Warcraft III

Changes:
*1.0
-Updated for Warcraft III version 1.23


cEngine is safe and unharmful to your computer.

Any computer protection software you may have, might consider cEngine to be something harmful to your PC. There is no need to be alarmed! The cause of cEngine being detected as "harmful" points towards the heuristics scan that a lot of Anti-Malware software performs, which assumes cEngine could be a trojan. The reason for this is because, in order for the maphack to work, cEngine needs to modify your war3.exe files so you can view your opponents units/buildings, etc.

Usually, when executable files modify other files, it is *usually* bad and used to engage in infecting your computer with malware, adware, spyware, viruses, etc. this is why your AV warns you that cEngine *MAY* be harmful.

Clearly, this is not the case. If you insist on not using cEngine, this is *your* choice.

Sunday, April 26, 2009

cEngine maphack for 1.23 [UNDETECTED]

###cEngine v1 by Chaotic###

HowTo:

*Put all files into your Warcraft III dir
*Check the "cEngine.ini"
*Start "cEngine.exe"

Features:

*Maphack
*Reveal invisibles
*Show enemy ping signals
*Colouring enemy & fogged hp-bars
*Show ressources
*Safeclick
*Show skills
*Reveal illusions
*Reveal enemy building queues/timers
*Auto-share
*Auto-mining & worker queue
*Obshack
*Coloured creepnames reveal itemdrops
*Use different keysets (-roc NEWKEY and -tft NEWKEY)
*Select windowtitle (-title NEWTITLE)
*Multiple start of Warcraft III

Commandlines:
-title NEWTITLE
-roc NEWKEY
-tft NEWKEY
-window
-classic
-nocengine
-opengl
-swtnl

Dota 6.59D Your Own CUSTOM HAcks

This collided doesn't include any pings, rune notifier, level-up, stats change notifier, only skill hacks.

Works in 1.22 or lower PvPGN, Garena

This only works with 1.22 and lower (Doesn't work in 1.23, like most collided maps. They fixed it in latest version)

** You may get out-of-sync sometimes.

This map is modified/collided by The4Got10. (Not by me)

Just backup your original 6.59d somewhere else (Move original map out of Download folder) and then put collided map here.


First, type -ms(space bar) and you will see that it's activated
now type those commands (The best way is to set chat to observer to prevent ppl from seeing it)

Update : 04/04/52 Luna Infinity Ulti Added
Update : 05/04/52 Luna Infinity Ulti Unit hIT ADDED
Update : 05/04/52 Lich Infinity Chain Frost Added
Update : 07/04/52 Obsidian Destroyer 2nd skill int modify fixed.
Update : 07/04/52 Pudge's Flesh Heap Added
Update : 08/04/52 Undying 's Decay
Update : 10/04/52 Re-Cache Some Un-Necessery caused Exploit/Disconnected
Update : 16/04/52 Private Edition Released Final !!

Feature
- Basher 2sec stun delay removed.

Before using any of the cheats you have to type :
Code: [Select]
-ms[spacebar] to activate the cheats.

Modify Damage Hack (This doesn't modify your BASE DAMAGE but it modifies your skill damage as mentioned below)
Code: [Select]
-setdm [x]
Quote

Example, -setdm 10 = Damage x 10


- Impale (Neru,Sand,Tide,Demon Witch)
- Chaos Meteor (Invoke)
- Sunstrike (Invoke)
- Death Coil deals less to self (Abandon)
- Aphotic Shield more life (Abandon)
- Power shot (Wind Runner)
- Skill [1] (Necrolyth)

Modify Times Hack
Code: [Select]
-settm [x]
Quote

Example -settm 30 = Attack 30 times


- Omnislash (Yurnero)
- Eclipse totalhit (Moon)
- Eclipse targetlimit (Moon)
- Multicast (Orge Magi)
- Refraction (Templar)
- Chain frost (Lich)
- Decay (Undy)
- Astral Improvision (Obsidian Destroyer)
- Skill[2] (Necrolic) [MultiCount to maximum]

Modify Pudge Hack
Code: [Select]
-setpd [x]
Quote

Example -setpd 2 = Kill 1 creep and you gain STR +2


- FleshHeap (Pudge)

Modify Money Hack
Code: [Select]
-setlv [x]
Quote

Example -setlv 5000 = Use skill 1 time and you gain 5000 golds


- Devour Gold (Doom)
- Epicenter (Sand King)
- Epicenter 1 level = +2 pulses (Sand King)
- Lighting Remant(Lighting Panda)
- Penitence(chen)

How to Install
Replace with original map

Caution
Modifying Impale type skills will get you disconnected unless you're the host.

Saturday, April 25, 2009

TFTLocal 1.23

TFTLocal's finally been updated for 1.23, and has a new feature (silent auto-refresher). Some features have been extensively tested, others haven't, be sure to report any crashes or whatnot.

---


TFTLocal is a utility which makes many useful features available to you. The features added are listed below.

IMPORTANT:
To use the program, run inject2.exe
The program accepts input in the form of slash commands in a Battle.net channel or in the game itself.

The commands and results are as follows:

"/refresh",
/refresh x
When used in the game lobby (while hosting), it will silently auto-refresh every x seconds. This is different from most auto-refreshers in that you don't see "Autorefresher has joined the game." messages, but it still refreshes.
Type /refresh 0 or /refresh to turn off.
Press hotkey [Page Up] to do a single manual refresh.

"/cam",
Control your camera with these features, in case the map you joined allows no camera control:
/cam dist x
Distance
/cam aoa x
Angle of Attack
/cam farz x
Far Z
/cam rot x
Rotation
/cam roll x
Roll
/cam lock
This locks your camera view somewhat so that games can't change it. It is not all-inclusive, some things will change your camera view at the moment. I may make this more inclusive at a later date.
/cam unlock
Allows your camera to be manipulated.

"/name",
Allows you to change your name as it appears when you host or join a game online.
/name x
Changes name to "x".
/name
Changes name to the name you had on logon.

"/camlock",
/camlock enable
/camlock disable
Allows maps to lock the camera to a unit. If the camera is already locked and you disable it, you can press control-c in-game to unlock the camera (this key combo is standard).

"/hp",
The 1.22 patch can show health bars, but you don't have the option of ally or enemy, just all.
/hp show
/hp show ally
/hp show enemy
/hp hide ally
/hp hide enemy
/hp hide

"/clear",
Clears all "Game" text messages on your screen. Useful for some maps.

"/map",
/map show
Shows the map's features, removing black mask/fog of war/etc.
/map hide
Hides the map's features, enabling black mask/fog of war/etc.

"/nokick",
/nokick on
/nokick off
Prevents yourself from being kicked from games via standard kicking means. This will not prevent custom kick programs that kick using lower-level methods.
NOTE: I believe that if you select a unit or issue an order for a currently selected unit, you will desync and be disconnected anyway. You may still chat after being "kicked", however...
NOTE: If you do not press F8 on the "Defeat!" dialog that appears, pressing the Quit button results in everyone getting kicked...

"/nofade"
/nofade on
Disables fade filters. Do not use this if there is currently an active fade filter.
/nofade off
Enables fade filters

"/noalpha"
/noalpha on
Disables transparency and minimap icon changes (i.e., disables Defense of the Ancient's -ah command)
/noalpha off
Allows transparency, etc.

Hotkeys:
[F8]
Press this to escape from cinematics and dialogs, and other such things.
(This works on the Players Lagging window as well, but you are limited to queuing up actions or moving the camera until the player stops lagging)
[Page Up]
Use in the game lobby while hosting to refresh the game (updates the game in players lists, making it more likely people will join your map). Limited to once every 2 seconds.

-Darimus

Garena Unban v1.2

Hi Guys this is My 2nd work.......


This Is Called Garena Unban v1.2 For Public..

I know Many here Are getting ban by system,Moderator,Etc of Garena

well As a hacker I want to share my work here in this forum

I know many player here are using garena client ............

Well for now this is public But soons its be a private..............................

Feature For Public :

1. Unban player by using icon hack
2. Unban player In Highlevel room (m0derator ban)
3. unban player by using Maphack

Friday, April 24, 2009

Garena UPDATE [The End],

I was talking to cqccyh this past days , and he said garena coders already made the new update that will encrypt the garena client . Making all normal garena cracks unvailable .

So enjoy while you still can / multi client exp hack / and using my client.
Because when new patch comes out i wont crack it anymore because i will loose too much time learning how to and etc.
Maybe i will release just a normal bypass or something but i wont work on it anymore.

I will start working on other things in this meantime.

But dont worry for the future , hack what you guys can hack until the last breath of Garena Crack.
Maybe others will replace my crack and make it hackable in new version.

The Best , PudGe666.

Wednesday, April 22, 2009

Garena Splinter | V2.0

Cqccyh Garena Hack crack added!!

Took me long to crack this one..

The new website address
Garena Custom Kick(GCK) Added for both public ver&private ver for test
Hello, here's my work
1 What it is about
With Garena Hack playing on Garena is much Like having a Gold Membershop with no 5 seconds wait and 10 tims Experience and many other features .....

just download the patch and enjoy Free Gold Membership by cqccy01

2 Features

1- Enable all the icons
2-Enter room without Message box and advertisement
3- Show real ping number instead of bars ( in room, in game, someone joined ur game)
4-Enable message spam in chat channel
5-increase EXP 10 times, just left the garena open, you will be level up
6-Unlimit Group Alert even you are just a normal member
7-can invite anyone tn clan with a member priviledge
8-caninvite anyone to clan even he has a clan (Multi clan)
9-Build in 1.22 and 1.21 Maphack feature special thx to these ppl Darimus,Sd333221,gaypimp for their offsets
- Undetected in ladder/garena,
- Reveal units
- Reveal units on minimap
- Remove fog
- Remove fog on minimap
- Clickable units
- See ressources
- See invisible
- Bypass -ah feature in DotA (Darimus)
- Show illusions (Darimus)
- Clickable invisible units (Sd333221)
- See cooldowns
- See skills
- Enable trade ressources in DotA (Sd333221)
- UI mode (gaypimp)
- Show hero path (gaypimp)

10-Show hp bar, tie hack feature(for dota ladder room)
11-You can open two or more GG client on One pc for fast gain exp
12-You can use some administrator functions like tract people's ip address
13-You can logon the same ID by Two or more GG client which means you will gain 2 or more times extra EXP!(but not in same room)
14- all the illegle program are actived,eg: sf1.21b5,sfdropkicker
15-auto update system to ensure your garena hack is always fit the lastest garena
16- you can leave room while playing
17 - you can view gamer's ladder record while you host or join a host
18 - you can change war3 name as what ever you want
19- can see gamer record in game& in room member list in both high level room & normal room
20 Can check win &lose rate multipier
21 Can get ladder record in high level room


in addition, This program has been checked by d3scene mod. :biggrin: thx for support

The Reason for Private Hack

My orginal purpose is to put my work and everyone have fun with it, but since someone STOLE my code from my old version and create their hack, I have changed my mind from that moment.
Private hack is the only way to protect my hardwork and improve my motivation. The public version is still avalible and I will put some features in it, but the more other features will only avaliable in Private version


Credits to G0d..

Tuesday, January 13, 2009

Dota Theme Manager *NEW* v3

Dota Theme Manager V3 is a update to the old ''Dota Theme Manager''.

Features:

2 new terrains to choose :

-snow

-barrens

And 2 new structures of windows to choose ( just windows change not map)

-Demon ( its like hell one )

-Pandaren

Monday, January 12, 2009

*WC3 Background changer*

For everyone that is bored of the standard wc3 look. It allows you to easily change your Warcraft 3 background.

You can change your WC3-Background to Undead, Human, Orc and Nightelf.

Instructions :

MAKE SURE YOUR WARCRAFT 3 IS CLOSED!!!!

1. Open the "bgchanger.rar" file and extract it to your WARCRAFT 3 FOLDER.
2. Open your warcraft 3 folder and click the folder "bg changer".
3. Run Rutheme.exe by clicking it. If you get an error check: Here
4. Choose your background and open warcraft 3 to test it.

Friday, December 19, 2008

Dota Theme Manager V3 Add New theme 2

===1.3 Changelog===
[since DTM V2]
-added Barrens Theme
-removed bushes from Snow Theme
-added UI-only-versions (not completely tested! If you find a bug, please inform me)
-added a readme file due to massive questions about things already answered


===2.1 Installing===
1. If you have used the Theme Manager before, make sure to restore to original!
2. Unpack the file IN your warcraft folder - in most cases it will be C:\Program Files\Warcraft III*
3. DO NOT move or rename any of the files you unpacked. The path must be: "\Warcraft III\DotA Theme Manager V3\DTMV3.exe"
4. If you want it on your desktop, create a shortcut of the exe file, but do not move the exe itself.
5. make sure both your WC3 and your World Editor are closed!
6. Start the exe and select the Theme

*) Paths (thanks to martirsadota!)
"Warcraft III Folder\Dota Theme Manager V2
-The moment you open your WC3 folder, you should see this folder.
Warcraft III Folder\Dota Theme Manager V2\DTMV2.exe
-The main executable. Don't lose this! (Oh, yeah: you should create a shortcut to this on your desktop.)
Warcraft III Folder\Dota Theme Manager V2\Data
-This is a folder located inside the DTMV2 folder. It contains:
Warcraft III Folder\Dota Theme Manager V2\Data\Background.jpg
-The app's background. If I'm to be asked, I'll open it and edit it in Photoshop or something...
Warcraft III Folder\Dota Theme Manager V2\Data\beach.mpq
Warcraft III Folder\Dota Theme Manager V2\Data\beach.txt
-Two files for the beach theme.
Warcraft III Folder\Dota Theme Manager V2\Data\hell.mpq
Warcraft III Folder\Dota Theme Manager V2\Data\hell.txt
-Two files for the hell theme.
Warcraft III Folder\Dota Theme Manager V2\Data\MSCOMCTL.OCX
Warcraft III Folder\Dota Theme Manager V2\Data\org.txt
Warcraft III Folder\Dota Theme Manager V2\Data\SFmpq.dll
-I still don't know what these doodads do, but they're essential, I know
Warcraft III Folder\Dota Theme Manager V2\Data\Snow.mpq
Warcraft III Folder\Dota Theme Manager V2\Data\snow.txt
-Two files for the snow theme.
Warcraft III Folder\Dota Theme Manager V2\Data\WinMPQ.exe
-This is the app that does the real magic. See how it appears when you install a theme?"


===2.2 FAQ===

Q: It starts, but gives an error when clicking a theme, how can I fix it?
A: Probably WinMPQ does not work. WinMPQ is in the "Data"-folder, try to run it. You can get help here:
http://shadowflare.samods.org/dwnload.html#WinMPQ

Q :Can this be made as a command like -ts?
A: No, because the cliffs can not be changed ingame.

Q: How does the DTM work?
A: It replaces the textures of terrain and trees in the MPQ.

Q: Can you add a theme-fitting minimap?
A: After trying this in several different ways, I came to the conclusion that it is not possible to do that at all.

Q: I use MAC, does it work for me?
A: No.

Q: The War3Patch.mpq's size grows each time I change the Theme
A: This is a bug I have not managed to fix yet. Use the backup from time to time to get rid of this problem.


===2.3 Troubleshooting===
This should help you fixing most problems...

Problem 1:
The DTM starts and installs a theme (WinMPQ opens and runs through a script), but the theme does not change.
=>Check the paths again (you can find them under 2.1).
If you have mutliple version of WC3 installed, check on which version you used the DTM.

Problem 2:
The DTM starts, but does not start WinMPQ when I click a Theme.
=>WinMPQ does not work, get help here: http://shadowflare.samods.org/dwnload.html#WinMPQ

Problem 3:
After I installed a theme and tested it, I got a fatal error while/after loading the map
=>first, try to restore to original and test again.
If it does not crash:
Problem should be fixed, you can install a Theme again.
If it crashes again:
Restore your War3Patch.mpq by using the backup (War3Patch.mpq.bak).
Delete the War3Patch.mpq then rename the War3Patch.mpq.bak to War3Patch.mpq,
copy it and rename the copy War3Patch.mpq.bak - then you can try again without risking a reinstall.

Dota Theme Manager V3 Add New Theme



Downloads Miror1Click Here
Downloads Miror2Click Here


Install Theme
- Extract .Zip
- Move folder dota theme manager V3 to folder warcraft3 in com yourself.
- You can't change Theme on playing games which can change before to start only.
- You can restore the original theme by press original button.



New Theme in V.3


===DotA Theme Manager V3 - Readme===
1.1 Basic information
1.2 Credits
1.3 Changelog

2.1 Installing
2.2 FAQ
2.3 Troubleshooting


===1.1 Basic information===

The DotA Theme Manager changes the appearance of the Warcraft III world.
It works on most maps and might make them look quite bad because it is created for DotA,
changing that is not possible.
The changes are made by adding textures and models in the War3Patch.mpq,
which is prior to the War3.mpq and War3x.mpq. They are of purely visual nature,
you do not gain any advantage in gameplay using the themes!
When you start the DTM the first time, a backup of the War3Patch.mpq called War3Patch.mpq.bak is created.
If you have any problems after changing something, you can delete the War3Patch.mpq and remove the .bak from the backup.
In case you want to use the Theme Manager again, do not forget to create a new backup ;-)

The following changes to the appearance are possible:
-Beach Theme
-Hell Theme
-Snow Theme
-Barrens Theme
-"Pandaren" User Interface for every race
-"Demon" User Interface for every race
"Original" restores the Theme to original.

You can find the DotA Theme Manager in the internet; If you have questions that are not answered here
or if you have suggestions, you may ask in the forums of dota-allstars.com:
http://forums.dota-allstars.com/index.php?showtopic=185881


===1.2 Credits===
-Infrisios: idea and developement
-Yak: huge support, blight texture for the Beach Theme
-laku_0o for his help with the GUI (he created the first one!)
-ereskigal, murdoc_rocks, Revil0, 4nTr4xX the ones above (stability tests)
-Unwirklich, for the Panda (Beach) and Demon (Hell) UIs (User Interfaces)
-Betatesters for supporting it and kinda reviving the idea of a custom DotA
-martirsadota and Anti-Maphacker for their ongoing support in the forums
-last but not least IceFrog for his constantly good work on DotA

Popular Posts