wc3edit.net

United Warcraft 3 map hacking!
It is currently March 28th, 2024, 5:22 pm

All times are UTC




Post new topic Reply to topic  [ 51 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6  Next
Author Message
PostPosted: June 11th, 2010, 7:38 pm 
Offline
Super Moderator
User avatar

Joined: February 24th, 2009, 1:31 pm
Posts: 3815
Location: JEW LAND
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:
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:

(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:
(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:
(15:42:51) Lanaya: can i suck , . . .

Code:
(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:
GeorgeMots: xplain what happens in SP. Why cant you save?
dast.-:i need play with 2 players

Code:
(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:
(10:08:02) Bartimaeus: you do know run I youtube channel for my favorite music, right?


Top
 Profile  
 
PostPosted: June 11th, 2010, 7:57 pm 
Offline
Forum Staff
User avatar

Joined: June 2nd, 2007, 6:53 pm
Posts: 2732
Title: I Just Lost the Game
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:
include "TriggerLibs/NativeLib"

add these lines:
Code:
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:
    InitGlobals();

below this, at the bottom of the file:
Code:
void InitMap () {

_________________
My Warcraft III Tool Collection
If you want to chat/game with me:
Blizzard: Senethior459#1962
Discord: Kyle#7409
Steam: Spacekidkyle


Top
 Profile  
 
PostPosted: June 12th, 2010, 6:32 am 
Offline
Junior Member
User avatar

Joined: November 20th, 2008, 12:32 pm
Posts: 39
Title: x@!n†™²³
okkey tnx men!!
okey... i din'd get the part where you said place the
Code:
InitGlobals();
void InitMap () {

where should i place these 2???


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


Top
 Profile  
 
PostPosted: June 12th, 2010, 8:38 pm 
Offline
Forum Staff
User avatar

Joined: June 2nd, 2007, 6:53 pm
Posts: 2732
Title: I Just Lost the Game
I misspoke when I first said to put void InitGlobals under include TriggerLibs/NativeLib. You should place it below this part:
Code:
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


Top
 Profile  
 
PostPosted: June 13th, 2010, 8:50 am 
Offline
Junior Member
User avatar

Joined: November 20th, 2008, 12:32 pm
Posts: 39
Title: x@!n†™²³
^_^ tnx man....!!!! trying out now...!

_________________
Image

Spoiler:
my'GM'aCcOunt'Image Image Image Image


Top
 Profile  
 
PostPosted: July 27th, 2010, 10:25 pm 
Offline
Forum Staff
User avatar

Joined: April 17th, 2008, 10:04 pm
Posts: 336
Location: Pittsburgh
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


Top
 Profile  
 
PostPosted: July 27th, 2010, 10:36 pm 
Offline
Forum Fanatic
User avatar

Joined: October 26th, 2009, 10:22 pm
Posts: 344
Title: mib^
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.


Top
 Profile  
 
PostPosted: July 27th, 2010, 11:46 pm 
Offline
Grammar King
User avatar

Joined: June 22nd, 2008, 10:11 pm
Posts: 2410
Location: Mostly USEast
Title: Worst human for 4eva
Quote:
all credits go to Senethior459 and Krypto


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

Last edited was 12 days ago, too.

_________________
Quote:
(20:53:52) Bartimaeus: Thank you, Jen.
(20:53:56) Bartimaeus: Truly, you are wise.


Quote:
(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!


Top
 Profile  
 
PostPosted: July 28th, 2010, 3:44 pm 
Offline
Forum Staff
User avatar

Joined: June 2nd, 2007, 6:53 pm
Posts: 2732
Title: I Just Lost the Game
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


Top
 Profile  
 
PostPosted: November 11th, 2010, 2:06 pm 
Offline
Honorary wc3edit.net Traitor
User avatar

Joined: February 1st, 2007, 4:11 pm
Posts: 2513
Location: NEVADA
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.


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 51 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6  Next

All times are UTC


Who is online

Users browsing this forum: Bing [Bot] and 24 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group

phpBB SEO


Privacy Policy Statement
Impressum (German)