[GUIDE] Deprotecting / Inserting a CP / Enabling SP
Moderator: Cheaters
-
- Newcomer
- Posts: 20
- Joined: May 1st, 2009, 2:30 am
- Title: Title?
- Location: Canadia
Re: [Guide] Deprotecting / Inserting a Cheatpack / Enabling SP
How come the JJ CP download just gives me a bunch of text files?
Spoiler for a invalid:
-
- Forum Staff
- Posts: 615
- Joined: June 9th, 2008, 9:51 am
- Location: Finland
Re: [Guide] Deprotecting / Inserting a Cheatpack / Enabling SP
-.-
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.
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.
-
- Newcomer
- Posts: 20
- Joined: May 1st, 2009, 2:30 am
- Title: Title?
- Location: Canadia
Re: [Guide] Deprotecting / Inserting a Cheatpack / Enabling SP
By Insert though, do you mean copy and paste or is there a specific command for it?
Spoiler for a invalid:
-
- Forum Staff
- Posts: 1400
- Joined: March 17th, 2008, 12:07 am
Re: [Guide] Deprotecting / Inserting a Cheatpack / Enabling SP
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.
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.
Made by the late ILikeHacking
My quote from SKillER
Spoiler:
-
- Newcomer
- Posts: 5
- Joined: May 9th, 2009, 7:01 am
Re: [Guide] Deprotecting / Inserting a Cheatpack / Enabling SP
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?
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
-IrvinS. KK
-
- Forum Staff
- Posts: 2618
- Joined: June 2nd, 2007, 6:53 pm
- Title: I Just Lost the Game
Re: [Guide] Deprotecting / Inserting a Cheatpack / Enabling SP
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
If you want to chat/game with me:
Blizzard: Senethior459#1962
Discord: Kyle#7409
Steam: Spacekidkyle
-
- Newcomer
- Posts: 5
- Joined: May 9th, 2009, 7:01 am
Re: [Guide] Deprotecting / Inserting a Cheatpack / Enabling SP
Oh, thanks for the info.
Can you help me to make one? Please?
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
-IrvinS. KK
-
- Forum Staff
- Posts: 811
- Joined: January 1st, 2008, 12:58 am
Re: [Guide] Deprotecting / Inserting a Cheatpack / Enabling SP
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.
That's a...small example.
But if you want us to code a function for you, ask.
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
But if you want us to code a function for you, ask.
Wanna learn to hack maps? --> Guide
-
- Newcomer
- Posts: 1
- Joined: March 26th, 2009, 5:46 am
Re: [Guide] Deprotecting / Inserting a Cheatpack / Enabling SP
What? How?After you're done, Do a syntax check, and you should know the rest, Reinsert your *new* .j file into your map.
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.
-
- Newcomer
- Posts: 6
- Joined: May 16th, 2009, 2:57 am
Re: [Guide] Deprotecting / Inserting a Cheatpack / Enabling SP
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.
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.