Starcraft 2 Cheatpack

General talk about editing, cheating, and deprotecting maps.

Moderator: Cheaters

User avatar
haxorico
Super Moderator
Posts: 3190
Joined: February 24th, 2009, 1:31 pm
Location: JEW LAND

Re: Starcraft 2 Cheatpack

Post by haxorico »

no need to do this... make it open "all files" and not "only supported types" (though it should work)..
Image
Spoiler:
(02:24:09)

Code: Select all

ChatBot: FatherSpace logs into the Chat.
(02:24:28) Lanaya: Gtfo ken.
(02:24:33) ChatBot: FatherSpace logs out of the Chat.
(02:24:40) Lanaya: Thought so. bitch.
(02:24:44) ChatBot: FatherSpace logs into the Chat.
(02:24:48) FatherSpace: Can I come back yet?
(02:24:51) Lanaya: What'd i say earlier.
(02:24:51) Lanaya: No.
(02:24:58) FatherSpace: Let's try this...
(02:25:01) ChatBot: Lanaya has been logged out (Kicked).

Code: Select all


(14:33:51) 2Pac: Do you know what'S so funny?
(14:34:01) Lanaya: No, please show me.
(14:34:07) 2Pac: This.
(14:34:09) ChatBot: Lanaya has been logged out (Kicked).
(14:34:10) 2Pac:


Code: Select all

(14:35:59) haxorico: No one will belive me if I say "I got this song from 2pac on MSN" lolz ^^
(14:36:02) Lanaya: lolz.
(14:36:16) 2Pac: I AIN'T DEAD FFS.
(14:36:26) 2Pac: I'm a living legend, y'now.
(14:37:17) haxorico: why is 2Pac a legend?
(14:37:28) Lanaya: He's the worse rapper evar.

Code: Select all

(15:42:51) Lanaya: can i suck , . . .

Code: Select all

(13:55:21) ChatBot: 2Pac rolls 1d100 and gets 1.
(13:55:21) ChatBot: haxorico rolls 1d2 and gets 2.
(13:55:27) haxorico: owned?

Code: Select all

GeorgeMots: xplain what happens in SP. Why cant you save?
dast.-:i need play with 2 players

Code: Select all

(21:53:08) (673237): plzplzplz, im sorry about before.
(21:53:26) FatherSpace: I'm sorry you were born.
(21:53:31) ChatBot: (673237) has been logged out (Kicked).


Code: Select all

(10:08:02) Bartimaeus: you do know run I youtube channel for my favorite music, right?
User avatar
Senethior459
Forum Staff
Posts: 2619
Joined: June 2nd, 2007, 6:53 pm
Title: I Just Lost the Game

Re: Starcraft 2 Cheatpack

Post by Senethior459 »

Haxorico is right. When you go to the folder the map is in in MPQMaster or whatever you choose to use, in the drop-down filetype selection box, just choose All files and it will allow you to see/select the .sc2map.

Okay. If there is no void InitGlobals in the map, then, below this part:

Code: Select all

include "TriggerLibs/NativeLib"

add these lines:

Code: Select all

void InitGlobals () {
}

and just place the parts from the cheatpack where they need to go around that part.
You'll also need to add this:

Code: Select all

    InitGlobals();

below this, at the bottom of the file:

Code: Select all

void InitMap () {
My Warcraft III Tool Collection
If you want to chat/game with me:
Blizzard: Senethior459#1962
Discord: Kyle#7409
Steam: Spacekidkyle
User avatar
xain819
Junior Member
Posts: 27
Joined: November 20th, 2008, 12:32 pm
Title: x@!n†™²³

Re: Starcraft 2 Cheatpack

Post by xain819 »

okkey tnx men!!
okey... i din'd get the part where you said place the

Code: Select all

InitGlobals();
void InitMap () {

where should i place these 2???


Code: Select all

include "TriggerLibs/NativeLib"

bool[21] gv_tele;
bool[21] gv_fast;
playergroup gv_CHEATER;
string gv_Activator;

void InitGlobals () {
}
    int init_i;

    init_i = 0;
    while (init_i <= 20) {
        gv_tele[init_i] = false;
        init_i = init_i + 1;
    }
    init_i = 0;
    while (init_i <= 20) {
        gv_fast[init_i] = false;
        init_i = init_i + 1;
    }
    gv_CHEATER = PlayerGroupEmpty();
    gv_Activator = "-cheats  ";
   
   InitGlobals();
   void InitMap () {


sorry kinda no0b here... but thanks really..^_^
Image

Spoiler:
my'GM'aCcOunt'Image Image Image Image
User avatar
Senethior459
Forum Staff
Posts: 2619
Joined: June 2nd, 2007, 6:53 pm
Title: I Just Lost the Game

Re: Starcraft 2 Cheatpack

Post by Senethior459 »

I misspoke when I first said to put void InitGlobals under include TriggerLibs/NativeLib. You should place it below this part:

Code: Select all

void InitLibs () {

    libNtve_InitLib();

}


Here's the MapScript.galaxy you uploaded, with the changes I suggested in red. If you add these changes, it will allow you to insert the cheatpack.
Spoiler:
//==================================================================================================
//
// Generated Map Script
//
// Name: Big Game Hunters
// Author: manmoths
//
//==================================================================================================
include "TriggerLibs/NativeLib"

void InitGlobals () {
}


//--------------------------------------------------------------------------------------------------
// Library Initialization
//--------------------------------------------------------------------------------------------------
void InitLibs () {
libNtve_InitLib();
}

//--------------------------------------------------------------------------------------------------
// Trigger Variables
//--------------------------------------------------------------------------------------------------
trigger gt_MeleeInitialization;

//--------------------------------------------------------------------------------------------------
// Trigger: Melee Initialization
//--------------------------------------------------------------------------------------------------
bool gt_MeleeInitialization_Func (bool testConds, bool runActions) {
// Actions
if (!runActions) {
return true;
}
MeleeInitResources();
MeleeInitUnits();
MeleeInitAI();
MeleeInitOptions();
return true;
}

//--------------------------------------------------------------------------------------------------
void gt_MeleeInitialization_Init () {
gt_MeleeInitialization = TriggerCreate("gt_MeleeInitialization_Func");
TriggerAddEventMapInit(gt_MeleeInitialization);
}

//--------------------------------------------------------------------------------------------------
// Trigger Initialization
//--------------------------------------------------------------------------------------------------
void InitTriggers () {
gt_MeleeInitialization_Init();
}

//--------------------------------------------------------------------------------------------------
// Map Initialization
//--------------------------------------------------------------------------------------------------
void InitMap () {
InitLibs();
InitTriggers();
InitGlobals();
}

I also uploaded a cheated copy of the file you uploaded, though I didn't insert it back into the map, as I'm on Linux and don't trust the programs to work right through WINE.
You do not have the required permissions to view the files attached to this post.
My Warcraft III Tool Collection
If you want to chat/game with me:
Blizzard: Senethior459#1962
Discord: Kyle#7409
Steam: Spacekidkyle
User avatar
xain819
Junior Member
Posts: 27
Joined: November 20th, 2008, 12:32 pm
Title: x@!n†™²³

Re: Starcraft 2 Cheatpack

Post by xain819 »

^_^ tnx man....!!!! trying out now...!
Image

Spoiler:
my'GM'aCcOunt'Image Image Image Image
User avatar
Pyro7778
Forum Staff
Posts: 321
Joined: April 17th, 2008, 10:04 pm
Location: Pittsburgh

Re: Starcraft 2 Cheatpack

Post by Pyro7778 »

Senethior, dunno if you know but someone posted this @ d3scene. Just figured I'd give you the heads up. Didn't see who the post was by.
For Info on PCI, Haxorizor, and upcoming project check out:
Team-Pyro's HomePage
User avatar
Madara
Forum Fanatic
Posts: 311
Joined: October 26th, 2009, 10:22 pm
Title: mib^

Re: Starcraft 2 Cheatpack

Post by Madara »

It was posted by "xain819" without credits either v.v

the guy that posted above u pyro :P
Spoiler:
(06:05:25) UndeadxAssassin: SLANDER
(06:05:32) Bartimaeus: See you later, Undead. I miss talking to you. Message me once in a while, :<
(06:05:37) UndeadxAssassin: /quit Bartimaeus!
(06:05:40) ChatBot: Madara logs into the Chat.
(06:05:49) ChatBot: Madara has been logged out (Kicked).
(06:05:54) Bartimaeus: >>
(06:06:02) Bartimaeus: He doesn't deserve to see my good bye to you, :D
(06:06:23) UndeadxAssassin: I'm still here because I wanna see his response
(06:06:29) UndeadxAssassin: :D
(06:06:31) ChatBot: Madara logs into the Chat.
(06:06:31) Bartimaeus: Oh.
(06:06:35) Bartimaeus: lol
(06:06:43) Madara: So should i say something dramatic
(06:06:48) Madara: or what satisfies u ?
(06:06:48) Bartimaeus: Nope.
(06:06:50) Bartimaeus: Because nobody cares.
(06:06:52) Bartimaeus: :3
(06:06:57) UndeadxAssassin: What a let down
(06:06:58) UndeadxAssassin: I'm leaving.
User avatar
UndeadxAssassin
Grammar King
Posts: 2115
Joined: June 22nd, 2008, 10:11 pm
Title: Worst human for 4eva
Location: Mostly USEast

Re: Starcraft 2 Cheatpack

Post by UndeadxAssassin »

all credits go to Senethior459 and Krypto


I see credits if you're talking about this one.

Last edited was 12 days ago, too.
(20:53:52) Bartimaeus: Thank you, Jen.
(20:53:56) Bartimaeus: Truly, you are wise.


(23:44:12) Bartimaeus: I was in pubic school until middle school...


Learn how to extract and read RAW Codes here!

Need help? Click here and ask your question!
User avatar
Senethior459
Forum Staff
Posts: 2619
Joined: June 2nd, 2007, 6:53 pm
Title: I Just Lost the Game

Re: Starcraft 2 Cheatpack

Post by Senethior459 »

So long as they give credit to us, I don't really mind.
My Warcraft III Tool Collection
If you want to chat/game with me:
Blizzard: Senethior459#1962
Discord: Kyle#7409
Steam: Spacekidkyle
User avatar
Xantan
Honorary wc3edit.net Traitor
Posts: 2507
Joined: February 1st, 2007, 4:11 pm
Location: NEVADA

Re: Starcraft 2 Cheatpack

Post by Xantan »

this is very useful to learn from

thank you in advanced for making this sc2 map / code

I will be learning/using from this, if that is alright with you.

I can't wait to start SC2 mapping with my brother, he already made this pretty interesting racing map with pretty real gravity/slide to it, I guess... I/my bro may post it eventually to get feedback on it.

I'm surprised how long its been since a SC2 post has been made.

This game is played by million(s)! It's brand new, and its flourishing like crazy; sc1 is already dying.

Man Asia specifically loves doing SC2 $ tournaments and stuff.