How do I know that a map is cheat included?
Moderator: Cheaters
-
- Newcomer
- Posts: 10
- Joined: April 24th, 2011, 7:30 am
How do I know that a map is cheat included?
If I download the map from epicwar.com or the other source
How do I know that a map is cheat included?
Sry for my bad grammar
How do I know that a map is cheat included?
Sry for my bad grammar
-
- Forum Spammer
- Posts: 610
- Joined: March 30th, 2009, 9:02 pm
Re: How do I know that a map is cheat included?
There's several ways. The easiest two would be to
1) open the map yourself with an mpq editor and check out the .j file or
2) post it here and make a request
if you chose number 1,
download an mpq editor (like mpqmaster), run it, open the map, extract "war3map.j" or "scripts/war3map.j", open the .j file, and search for cheats.
I usually search for "chat" cuase most cheats are activated or triggered when someone types something.
if you find a suspicious chat command (like -cheats<space><space>), search the trigger variable and follow it to find the action function.
Ex:
it gets easier if you learn jass first though o.o
1) open the map yourself with an mpq editor and check out the .j file or
2) post it here and make a request
if you chose number 1,
download an mpq editor (like mpqmaster), run it, open the map, extract "war3map.j" or "scripts/war3map.j", open the .j file, and search for cheats.
I usually search for "chat" cuase most cheats are activated or triggered when someone types something.
if you find a suspicious chat command (like -cheats<space><space>), search the trigger variable and follow it to find the action function.
Ex:
Code: Select all
TriggerRegisterPlayerChatEvent(TRIGGER VARIABLE,PLAYER TO DETECT CHAT FROM,CHAT COMMAND, TRUE OR FALSE)
the third argument is what you wanna check. if it seems suspicious search the first argument to find TriggerAddAction(TRIGGER VARIABLE, function SOME FUNCTION)
then search for the SOME FUNCTION and see what it does. the true or false doesn't really matter in this situation.
-
- Newcomer
- Posts: 10
- Joined: April 24th, 2011, 7:30 am
-
- Super Moderator
- Posts: 3197
- Joined: February 24th, 2009, 1:31 pm
- Location: JEW LAND
- Been thanked: 1 time
Re: How do I know that a map is cheat included?
a trigger cannot do anything without.
call TriggerAddAction(NameOfTrigger, function NameOfFunction)
or
call TriggerAddCondition(NameOfTrigger, function NameOfFunction)
call TriggerAddAction(NameOfTrigger, function NameOfFunction)
or
call TriggerAddCondition(NameOfTrigger, function NameOfFunction)
-
- Member
- Posts: 55
- Joined: August 26th, 2009, 3:55 am
Re: How do I know that a map is cheat included?
but what is if the files are all called filexxxx and there is no war3map.j?
-
- Super Moderator
- Posts: 1943
- Joined: February 3rd, 2009, 11:28 pm
- Been thanked: 1 time
-
- Junior Member
- Posts: 32
- Joined: March 21st, 2009, 4:09 am
- Location: Nebraska
Re: How do I know that a map is cheat included?
I recommend using Ozzapoo's Cheatpack Detector. It's worked for me countless times, increasing the fun of some maps that BGN and MMH host.
"Looking for your pocketknife? You left it in my back." - Young Shawn Spencer
-
- Junior Member
- Posts: 32
- Joined: March 21st, 2009, 4:09 am
- Location: Nebraska
Re: How do I know that a map is cheat included?
You do not have the required permissions to view the files attached to this post.
"Looking for your pocketknife? You left it in my back." - Young Shawn Spencer
-
- Member
- Posts: 55
- Joined: August 26th, 2009, 3:55 am
Re: How do I know that a map is cheat included?
that doesnt work with most of the maps.. what else could i do?
and if i need a good listfile where can i get those?
and if i need a good listfile where can i get those?
-
- Crusader
- Posts: 4236
- Joined: January 27th, 2007, 4:46 pm
- Location: Greece, Veria
Re: How do I know that a map is cheat included?
Here try this.
You do not have the required permissions to view the files attached to this post.