Jump to content
Heads Up! This website is no longer maintained, if your a member from our era, consider joining the discord to say hello.

xsouldeaths

GC Member
  • Content Count

    20
  • Joined

  • Last visited

Community Reputation

0 Neutral

About xsouldeaths

  • Rank
    Member

Previous Fields

  • Battle.net Screen Name
    xsouldeath
  • Something Random
    ya
  • Mood
    Blank
  • Battle.net Server
    USWest
  1. xsouldeaths

    Xsoulz Hack v0.3

    Fixed In-game display of text (telling you which hack you trigered etc.) although I could not find in-game offset... Thanks again Jiggie=#1. Well, converted offsets from old one and couldn't find the new offset for text send even after looking at LCSRXXXX or whatever's post on offsets. Everything should be working nice, couldn't test some things like null drop timer due to supposedly no lag XD. /************************************************ credits to Xsouldeath(me),AgentGod, ulliklliwi,Jiggie=#1 (I had some other single-player features like larvae hack, omitted for now) Unlimited Single Player Pauses. Features: -Host hack ====>Disabled -->Lets you ban people(including the host),kick people,close,open slots -Start game with no opponents =====>Disabled -->game will end in a draw -->You may click continue playing for testing purposes I suppose if you want to test in battle.net without worrying about a computer killing you or something... EVEN if you are NOT the host. -F6 Lag Defender --->Updated -->No drop player box at all. -F7 Null Drop Timer --->Updated -->Drop Timer Set to 0. -F8 Disconnect Hack --->Updated --> It will say others were dropped, but really only you are disconnected --> Doing this before it says "surrender" gives a Draw, if not a Disconnect. --> For the time being this is permanent seeings as how I don't know how to --> undo NOP or save the source lines...and write -F9- Show Credits --->Disabled -->(in-game) -F10 Unlimited Single Player Game Pauses(in multiplayer will drop you after 3 pauses) ===>Updated - Show Download Stats Always(100 etc.) ==>Disabled ===================================================================== To Programmers/ Note to Self: ===================================================================== To you people unfamiliar with C++ notation, to my understanding, compared to Cheat Engine addresses. Cheat Engine address looks like: 004512E8 C++ address looks like: 0x4512E8 (just the '0x' instead of '00') For testing purposes you can use MessageBox(0, "Function called. ", "Title here", 0); ===================================================================== XsoulzHackV0.3_fixed_text_.zip
  2. xsouldeaths

    Xsoulz Hack v0.2

    source DOES work. lol what macro doesnt work... or whate problem anyways new patch see new version.
  3. xsouldeaths

    Xsoulz Hack v0.1 [Open source]

    funny. are you a starcraft player? do you use starcraft hacks? do you program starcraft hacks? this little c++ template allows people to make their own starcraft .dll 's EASILY. I had to work with the stuff from bwhacks.com to come up with this. It's done for you. Enjoy, Ignore if you want but someone will find it useful. (I left out from public a few features for now... in case I decide to pull an agentgod :D and sell a bit ) tho I definitely have a long way to go..
  4. xsouldeaths

    Xsoulz Hack v0.1 [Open source]

    For open source attachment size exceeded. therefore get it here. Mirror 1: http://up-file.com/download/e2b89f317165/C...-trial.zip.html Mirror 2: http://www.megaupload.com/?d=5239U585 I'll tell you right now if anyone dares to release something I put on open source as their own, you better give me credit at the very least. This is an open source 1.15 Hack, and quite simple at least in terms of adding your own code. FULL SOURCE CODE THAT WORKS IN MICRSOFT Visual C++ 6.0. is included. I will release the public version when this is one hell of a hack XD. I posted here of all sites because having MINERAL HACK and NUKE ANYWHERE HACK working for 1.15 starcraft your site is worthy. This is just a very simple .dll that writes to screen to the user. (Useful for all hack makers, to tell the user what hack they are using) Hotkeys F9- shows my message. credits to me(XSOULDEATH),ulliklliwi,AgentGod from bwhacks.com Original Post C++ JmpPatch Problems -.- - BWHacks since bwhacks.com limited my posts so they have to approve and no1 would really see it. you guys can have this. Full working source code in c++ and screenshot included. #define WIN32_LEAN_AND_MEAN #include "stdafx.h" #include <windows.h> #include <stdio.h> #include "detours.h" #include <string> using namespace std; //Important: (after define) in the includes stdafx.h MUST go first or you get errors. const int BWPrintText = 0x48CE70; // Print Text Function void BWPubTextOut(char* text,BOOL MiddleS) { __asm{ MOV ESI, text PUSH ESI } if (MiddleS) // true for add text to the (cheat enabled place), or false for normal placement { // middle of screen _asm MOV EAX, -1 } else { // takes away the player format speak . . . so no "playername: message" (%c: %s) _asm MOV EAX, 8 } __asm{ CALL DWORD PTR [BWPrintText] } } #define InGame (*(int*)0x1505C0A3) DWORD WINAPI StartUp(LPVOID lpara) { char* CopyRight = "Xsoulz Hack 0.1 by Xsouldeath \x10[\x19http://www.xsouls.tk/\x10]"; bool write = true; while (true) { if (InGame == 1) { if (write) { BWPubTextOut(CopyRight,false); write = false; } } else { write = true; } if (GetAsyncKeyState(VK_F9)) { // push f9 add code for hotkeys BWPubTextOut(CopyRight,false); } Sleep(600); // to stop lagg } return 0; } BOOL APIENTRY DllMain( HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) { switch(ul_reason_for_call) { case DLL_PROCESS_ATTACH: DisableThreadLibraryCalls(GetModuleHandle(NULL)); CreateThread(NULL,NULL,StartUp,NULL,NULL,NULL); // create new thread break; case DLL_PROCESS_DETACH: break; } return true; } DLLLoad.zip
  5. xsouldeaths

    Xsoulz Hack v0.2

    In return for my work I'd like real time ownage hack private for my present lol... sigh..anyways.. sure. I'll release the v0.1 open source. I released it on gamefurther.com if you are desperate to see it immediately :=) woudl have released on bwhacks.com but they decided to mute me or something and my posts only approved by moderator so they miss on. From that open source C++ in Microsoft Visual C++, you can compile a working hack for starcraft and using offsets learn your own stuff. I use Cheat Engine to find new exploits , for an offline one try game pause a 'byte' value if I remember correctly you pause the game it says you have 3 pauses start a new game search for 3 pause game unpause use next search for 2 pause game unpause use next search for 1( 1 pause remaining) you will eventually find a pause address you can right click and select show what functions or addresses writes to this address.. from there you can NOP the function in my case I NOPed the function that decrements the number of pauses you have.
  6. xsouldeaths

    Xsoulz Hack v0.2

    lol though I'm pretty up there in terms of undetectable trojans lol.... if you really want to request one be my guest ;) I would probably make it sends victims to me as a catch XD but anyways... this is clean... I just had agentgods thing the background real time ownage hack,so try yourself.
  7. xsouldeaths

    [Hacks] Starcraft Pauser

    lol leave it on overnight when ur losing if u dont have power overwhelming outplay.... okay maybe not. outlast ;) IT WORKS for 1.15 like i said before. so I'll try 1) suspend thread 2) infinite loop (tho technically would freeze just my starcraft :()
  8. xsouldeaths

    Xsoulz Hack v0.2

    [color="#00FF00"]Based on your feedback 1) This file is safe unless in c++ I messed up which at worst could cause you to have to restart your computer or starcraft crashing I suppose if I NOPed wrong address 2) Lag Defender - Although at the time the hack didn't have it under the hotkeys it now does(I found it) [/color] [color="#FF0000"]currently working on drophack[/color], using speedgear to trigger the drop player box faster for testing (it gave me 'draws' at the end game screen where it shows your resourecs and stuff but Current problem: Once I NOP an address, its NOPed for good, until you restart starcraft... will fix once I learn how to save the NOP for undoing or something credits to Xsouldeath(me) for making it to those who helped me: AgentGod, ulliklliwi (I had some other single-player features like larvae hack, omitted for now) Unlimited Single Player Pauses. Features: -Host hack -->Lets you ban people(including the host),kick people,close,open slots -Start game with no opponents -->game will end in a draw -->You may click continue playing for testing purposes I suppose if you want to test in battle.net without worrying about a computer killing you or something... EVEN if you are NOT the host. -F6 Lag Defender -->No drop player box at all. -F7 Null Drop Timer -->Drop Timer Set to 0. -F8 Disconnect Hack --> It will say others were dropped, but really only you are disconnected --> Doing this before it says "surrender" gives a Draw, if not a Disconnect. --> For the time being this is permanent seeings as how I don't know how to --> undo NOP or save the source lines...and write -F9- Show Credits -->(in-game) -F10 Unlimited Single Player Game Pauses(in multiplayer will drop everyone after 3 pauses) - Show Download Stats Always(100 etc.) Admin Notice Please keep in mind that you can download this hack at your own risk, but it was not submitted to our download system and therefor was not officially approved and tested by Ghoztcraft Staff. XsoulzHackV0.2.zip
  9. xsouldeaths

    [Hacks] Starcraft Pauser

    oh really now. It sure seems to . I tried today. mineral hackers backed down to me :P. so check again.
  10. xsouldeaths

    [Hacks] Starcraft Pauser

    does anyoner have idea how this works?
  11. xsouldeaths

    Starcraft Full Download[provided]

    I am not sure what u mean CSS? (in my mind that means conterstrike source) This is starcraft full with broodwars, I made some links earlier by uploading, but they died. I searched for the great working file name I found and bingo! -->direct download links rock.. enjoy starcraft valid cd keys are easier to find then you might think ... all you need is cd key changer http://www.sendspace.com/file/xjh0i2 and google starcraft cd keys ... and after trying you will get some cd keys some may be MUTED but you can still play. I legimitately bought game so I can enjoy mine.
  12. xsouldeaths

    Starcraft Full Download[provided]

    scratched up my starcraft cd and hell the cd install takes too long. and even when my friends burn a copy its lame... so just get this cd crack full version and your LEGITIMATE cd-key you purchased..(or a generated one) if you are good enough to generate.. STARCRAFT FULL WITH BROOD WARS MIRROR 1: (Link removed) MIRROR 2: (Link removed) (Link removed) tends to help 315kb/s on cable. cracks for 1.15 latest due to some secret... here are some executables STARCRAFT NO-CD CRACK NO CD CRACK FOR 1.15 Works Aug 5,2007 Your Download Link: (Link removed) EXECUTABLES (Link removed) Read Rules. Do not post Warez or cracks of ANY kind. ~Lp
  13. xsouldeaths

    Real-Time Ownage hack problem

    another problem press alt+f9 and starcraft says it crashed. probably refresh works but unstable.
  14. File Name :: Annihilation X4 Lite Edition [update] Author :: xsouldeath Category :: 1.14 Description :: Annihilation X4 Lite Edition BETA & Offline Mineral Hack + Custom Loader --------------------------------------------- by AgentGOD Homepage: www.ultimate-filez.com Hotkeys: F5 - Kills all selected units *offline only* Alt+F5 - Kills all units of same type and owner of selected unit *offline only* F6 - Unit Stacking Tool F8 - Vulture Crash (uses a vulture to cause an invalid sprite) F9 - Units killing each other :) F12 - Add minerals and gas to your inventory *offline only* ~ - MultiCommand Toggle Alt+ ~ - MultiCommand SlowMode (can be used to prevent detection) Numpad + - Stack Hack Numpad - - Build Anywhere Toggle (any terrain, when in stacking mode, can be used in stacking UMS maps) Numpad * - Force game start (as host)/Jam game (as guest) Premium only: Numpad 0 - Drop hack list Numpad 1-8 drops corresponding player Numpad / - Drops all opposing forces. Hidden feature(s): -Warden killer :) fully functional in Premium -Build Anywhere is on by default For other hacks included in this "package" please check the other readme(s). How to use the loader --------------- Simply put all your DLL(s) you wish to load in the same folder. Add each DLL's name under the Window Name in config.ini. Do not delete config.ini, simply because you need to keep things in that format. If you did delete it, recreate it with the following lines: WindowName goes Here Dll1.dll Dll2.dll //DO NOT DELETE THIS LINE! That is all you need to do for the config.ini. There are 2 ways to load the DLLs into the app, 1, a simple, classic inject. Launch the app, and press Inject. For the second way, press Auto Inject, and then launch the app, and it will inject the DLL(s) automatically. KcMultiHack for 114 By KcDan Website: www.KcDan.com , click the ads there...e.e; Maphack is screen maphack, not minimap map hack. Theres 3 states, First is the expiremental "Secksy" state, second is stable state, and 3rd is off. So... Hotkeys: F7 - Change maphack state Alt - Set multicommand To use, open up broodwar and then run the load.exe, that simple. Also if your using win9x or whatever youll have to use a different method to inject. Ok the loader was made by SC_Modder http://www.bwhacks.com/forums/showthread.php?t=15385 ---------------- - StatHack v1.14 - by Palomino - 11/8/06 ----------------- Info: - Just a stat hack for StarCraft(Brood War) v1.14 Features: - Minerals / gas / supply infos - Average minerals / gas per second - Network stats (IP, Ping) - Elapsed map time + clock display - Shows who is allied/unallied/ally vic only - Module hiding (anti-anti-hack) (http://forum.gamedeception.net/showthread.php?t=7743) Usage: - F11 to toggle forward through pages - Ctrl+F11 to toggle backwards Notes: - Please inject before entering bnet/game - Not recommended for use in ladder games - Compatible with KcMultihack, have not tried anything else. - If playing a map with non-standard player colours, the box will usually be yellow. This is not a bug, but rather how starcraft interprets that colour. View File
  15. xsouldeaths

    [Other] Gunz hack

    File Name :: Gunz hack Author :: xsouldeath Category :: Other Description :: How to use: 1) Open GunzLauncher 2) Edit Values 3) Click Start Game 4) Activate Hotkeys Quickly 5) Exit Trainer Before Gunz Gets Into Full Screen Fist I made a two-hack trainer, now I made a three-hack trainer! Mabey a four-hack trainer next Credits to Gunner for giving me addesses and values Made by I_AM_1337 View File
×