Showing posts with label Kode. Show all posts
Showing posts with label Kode. Show all posts

TyranO's timehack for 1.24e

Posted by bL4cK_m0p on Friday, August 13, 2010

TyranO's timehack for 1.24e


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

Three modes:

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

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


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

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

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

Code:

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

using namespace std;

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

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

int main(void)
{

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

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

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

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

Free GOLD GARENA+WPe pro 22.06.09

Posted by bL4cK_m0p on Saturday, June 27, 2009

Free GOLD GARENA+WPe pro 22.06.09

The archive video is very good on this is very clear that this was done so as yet in the archive + catfish Wpe pro retrofit program to work, we ponadabitsya any kryaknutaya garena
All successful free, I have not yet banned i will do at the Gold half a year has already passed the 3 weeks as I did!
read more »»» Free GOLD GARENA+WPe pro 22.06.09

DotA 6.60b Collided Map!! [ NEW ] !!

Posted by bL4cK_m0p on Tuesday, June 16, 2009

By the way, this is the first DotA 6.60b collided map working for public!
I'm Just Sharing this though and don't blame me for leeching or wateva.
I found that 6.60b is a new map and the collided version of v6.60 is very hard to get.
So, here is it..

Commands:
Cheats are activated by certain passwords. They are in the following format: "-heroname" to activate
and "-heroname" to deactivate. Includes commands for hero pinging, rune notifications and items.
Password for pinging "ping"
Password for runes "rune"
Password for BKB and Satanic "item"

Hero - Skill - Password

Obsidian Destroyer - Astral Imprisonment - int
Doom Bringer - Devour - devour
Ogre Magi - Multicast - ogremagi
Bloodseeker - Rupture -bloodseeker
Dark Seer - Wall of Replica -darkseer
Invoker - Alacrity - invoker
Lifestealer - Open Wounds -naix
Lord of Avernus - Borrowed Time - abaddon
Spiritbreaker - Charge of Darkness - barathrum
Prophet - Sprout - prophet
Broodm(o)ther - Spin Web - broodm(o)ther <---without the quote
Pudge - Flesh Heap - pudge
Juggernaut - Omnislash - yurnero
Priestess of the Moon - Moonlight Shadow - mirana
Faceless Void - Chronosphere - facelessvoid
Witch Doctor - Maledict - witchdoctor
Moon Rider - Eclipse - luna
Night Stalker - Hunter in the Night - balanar
Captain Imba - Torrent - kunkka
Sand King - Epicenter - sandking
Tiny - Avalanche - tiny


Credits go to ---Hillo---

I think this is a balance map compared to those prohunter's because it contain less cheats and dc-free!
read more »»» DotA 6.60b Collided Map!! [ NEW ] !!

GarenaSection CLEAN/NEWS

Posted by bL4cK_m0p on Friday, May 15, 2009

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
read more »»» GarenaSection CLEAN/NEWS

About 'Exp bugs'

Posted by bL4cK_m0p

Taken from some Garena administrator :

Offiicial Explanation of abnormal Experience Issue

Hello Garena Users,

Some of our users might notice that, in the past few days, we have encountered abnormal experience increasing cases, even Garena Admins. Just few days, they have reached level 59 rapidly without any explained reason.

We apologize for any inconvenience caused by this, and the following is the explanation of the abnormal experience issue:

QUOTE:
Most of them are Garena Staffs and so far working for Garena, including the accounts GG.Shaka, Chjesu. There was an update in chinese site, so that we could merge the chinese data into our global system.

After we finished the merge, the experience of some staffs are increasing rapidly and unstoppablely. They have reported the issue to us once it's found. Also we are working on that issue now.

Once it's fixed, all the abnormal experience will be removed from them, and also we will update all users in this article with the latest process.

Thanks.

Garena Team




Hope you guys understand what's happening now, instead of spamming everywhere about the exp bugs.

Please kindly wait for Garena to fix this

Thanks.
read more »»» About 'Exp bugs'

FREE CD-KEYS (*Some Working Ladder )

Posted by bL4cK_m0p on Friday, February 6, 2009

I know a lot of people are always looking for cd-keys.

So i think it will be a good contribution to SecureGamers

Dont forget to thank me +++

(*Some of them Work in Ladder ) and the rest just can connect to battle net and play custom games .




pudge666
read more »»» FREE CD-KEYS (*Some Working Ladder )