[GUIDE] Deprotecting / Inserting a CP / Enabling SP

Cheatpacks and learning how to use them, as well as other guides for manipulating maps.

Moderator: Cheaters

User avatar
ObliivX
Newcomer
Posts: 20
Joined: May 1st, 2009, 2:30 am
Title: Title?
Location: Canadia

Re: [Guide] Deprotecting / Inserting a Cheatpack / Enabling SP

Post by ObliivX »

How come the JJ CP download just gives me a bunch of text files?
[spoiler=a invalid]ImageImageImagePoking them makes you sexy, I know you want to[/spoiler]
Image
User avatar
Hillo
Forum Staff
Posts: 615
Joined: June 9th, 2008, 9:51 am
Location: Finland

Re: [Guide] Deprotecting / Inserting a Cheatpack / Enabling SP

Post by Hillo »

-.-

Of course it does. You insert it to the .j file. First part below globals, second below endglobals and the last one after function main.
Image
User avatar
ObliivX
Newcomer
Posts: 20
Joined: May 1st, 2009, 2:30 am
Title: Title?
Location: Canadia

Re: [Guide] Deprotecting / Inserting a Cheatpack / Enabling SP

Post by ObliivX »

By Insert though, do you mean copy and paste or is there a specific command for it?
[spoiler=a invalid]ImageImageImagePoking them makes you sexy, I know you want to[/spoiler]
Image
User avatar
Kryptonyte
Forum Staff
Posts: 1400
Joined: March 17th, 2008, 12:07 am

Re: [Guide] Deprotecting / Inserting a Cheatpack / Enabling SP

Post by Kryptonyte »

Okay, here's exactly how to do it...

1. DL the files.
2. Open the map you wish to hack in MPQMaster.
3. Find & extract the war3map.j file.
4. Open Jass Craft and open that war3map.j file.
5. Open the first text document and click Ctrl+A and then Ctrl+C
6. Find and click at the end of "globals", hit enter and then Ctrl+V
7. Open the second text document and Ctrl+A then Ctrl+C
8. In Jass Craft, press Ctrl+F and type "endglobals" (one word) and click at the end of it.
9. Hit enter and then Ctrl+V
10. Open the third text document and Ctrl+A then Ctrl+C
11. Click on Jass Craft and use Ctrl+F to find "Function main" (Make sure it's NOT function main2)
12. Click at the end of the function main line OR if there is locals under it (they will be red),
then click at the end of the last of them and hit enter then Ctrl+V.
13. Save the file.
14. Click on MPQMaster and right click, import file and select the newly hacked war3map.j.
15. Check for the file (attributes), if it's there, delete it.
16. Close MPQMaster and enjoy the map.
Image
Made by the late ILikeHacking

My quote from SKillER

Spoiler:
Chat wrote:(19:12:41) SKillER: newfags cant triforce
(19:20:30) SKillER: ▲
▲ ▲
(19:20:35) SKillER: aww
(19:20:37) FatherSpace: FAIL
(19:20:43) Kryptonyte: Wow stop failing.
(19:20:47) SKillER: ▲
▲ ▲
(19:21:41) Kryptonyte: .

. ▲
▲ ▲
(19:22:20) Kryptonyte: I guess you were right, newfags can't triforce.
(19:22:29) SKillER: . . ▲
▲ ▲
(19:23:04) SKillER: OMFG
(19:23:06) SKillER: ... THIS CHAT
(19:23:06) SKillER: !
(19:23:36) SKillER: ▲
▲ ▲
(19:23:46) SKillER: ▲
.▲ ▲


Apparently, SKillER is a newfag.
UltimateRetribution
Newcomer
Posts: 5
Joined: May 9th, 2009, 7:01 am

Re: [Guide] Deprotecting / Inserting a Cheatpack / Enabling SP

Post by UltimateRetribution »

How do we make our own cheat pack?
Briefly, how do we make our own cheatcode of "-<cheatcodename>" that we chose?
Is there a topic on that?
"I have ideas, I have creativity, just don't have the knowledge to create the ideas into innovation."
-IrvinS. KK
User avatar
Senethior459
Forum Staff
Posts: 2619
Joined: June 2nd, 2007, 6:53 pm
Title: I Just Lost the Game

Re: [Guide] Deprotecting / Inserting a Cheatpack / Enabling SP

Post by Senethior459 »

If you don't know at least a bit of Jass, you won't be able to do it. You need to know enough to be able to make the commands do what you want.
My Warcraft III Tool Collection
If you want to chat/game with me:
Blizzard: Senethior459#1962
Discord: Kyle#7409
Steam: Spacekidkyle
UltimateRetribution
Newcomer
Posts: 5
Joined: May 9th, 2009, 7:01 am

Re: [Guide] Deprotecting / Inserting a Cheatpack / Enabling SP

Post by UltimateRetribution »

Oh, thanks for the info.
Can you help me to make one? Please?
"I have ideas, I have creativity, just don't have the knowledge to create the ideas into innovation."
-IrvinS. KK
User avatar
Risen
Forum Staff
Posts: 811
Joined: January 1st, 2008, 12:58 am

Re: [Guide] Deprotecting / Inserting a Cheatpack / Enabling SP

Post by Risen »

Basically, You'll just need to know how to make functions in jass that work. I'll start with a function to kill a unit.

Code: Select all

function kill takes nothing returns nothing
call KillUnit( GetSomeStupidUnit() ) //take note, this doesn't work, you need to give it a correct function to operate with.
endfunction

function init takes nothing returns nothing
local trigger t = CreateTrigger()
call TriggerRegisterPlayerChatEvent( Something,Something,Something, "-killsomestupidunit", something )
call TriggerAddAction( t, function kill )
set t = null
endfunction

That's a...small example.

But if you want us to code a function for you, ask.
Image
Wanna learn to hack maps? --> Guide
BlackRose
Newcomer
Posts: 1
Joined: March 26th, 2009, 5:46 am

Re: [Guide] Deprotecting / Inserting a Cheatpack / Enabling SP

Post by BlackRose »

After you're done, Do a syntax check, and you should know the rest, Reinsert your *new* .j file into your map.

What? How?

EDIT: Just read above, hopefully it works. CRIES! It crashed when I selected the map, before I could even press "Start".

EDIT 2: I googled "Impossible Bosses single player", and found a working one -.-
You do not have the required permissions to view the files attached to this post.
zys
Newcomer
Posts: 6
Joined: May 16th, 2009, 2:57 am

Re: [Guide] Deprotecting / Inserting a Cheatpack / Enabling SP

Post by zys »

I'm having the same above problem with Dark Sun RPG v3.4.2.w3x

The map does not have any singleplayer function, it only has anticheat functions.

Tried to remove the anti cheat but the game declares the modified script file to be corrupt.