[Pure JASS] Aero's Cheat Packs (version 1, 2 and 3)

General talk about editing, cheating, and deprotecting maps.

Moderator: Cheaters

User avatar
Bartimaeus
Tyrannical Drama Queen
Posts: 4427
Joined: November 19th, 2007, 5:05 am
Been thanked: 2 times

Re: [Pure JASS] Aero's Cheat Packs (version 1, 2 and 3)

Post by Bartimaeus »

Well, heck...that should've done it. I'll do some testing tomorrow and get back to you - I don't actually know JASS, I just play by ear. Heading to bed now.
User avatar
Bartimaeus
Tyrannical Drama Queen
Posts: 4427
Joined: November 19th, 2007, 5:05 am
Been thanked: 2 times

Re: [Pure JASS] Aero's Cheat Packs (version 1, 2 and 3)

Post by Bartimaeus »

O.K., I found the problem. Function main stuff...

local integer qaz7=0
loop
exitwhen qaz7>11
call TriggerRegisterPlayerChatEvent(ICHEAT,Player(qaz7),"-cheat",false)
set qaz7=qaz7+1
endloop
call TriggerAddAction(ICHEAT,function CheatUse)
call TriggerAddAction(CHEATS,function Cheatz)

I'm guessing if the activator doesn't start with this, ("-cheat"), then it won't work. Change it to the beginning of whatever activator you're using, in addition to what I said before. Get back to me if it still doesn't work, lol
locusts00
Newcomer
Posts: 19
Joined: March 28th, 2008, 6:50 pm

Re: [Pure JASS] Aero's Cheat Packs (version 1, 2 and 3)

Post by locusts00 »

Bartimaeus wrote:O.K., I found the problem. Function main stuff...

local integer qaz7=0
loop
exitwhen qaz7>11
call TriggerRegisterPlayerChatEvent(ICHEAT,Player(qaz7),"-cheat",false)
set qaz7=qaz7+1
endloop
call TriggerAddAction(ICHEAT,function CheatUse)
call TriggerAddAction(CHEATS,function Cheatz)

I'm guessing if the activator doesn't start with this, ("-cheat"), then it won't work. Change it to the beginning of whatever activator you're using, in addition to what I said before. Get back to me if it still doesn't work, lol
i think this is for version 1,,
my problem is on version 3... LOL

Problem solved,, thanks for this idea
User avatar
Bartimaeus
Tyrannical Drama Queen
Posts: 4427
Joined: November 19th, 2007, 5:05 am
Been thanked: 2 times

Re: [Pure JASS] Aero's Cheat Packs (version 1, 2 and 3)

Post by Bartimaeus »

Oh, in that case, just do it for the version 3 function main.

call TriggerRegisterPlayerChatEvent(cp_ICHEAT,Player(0),"-cheat",false)
call TriggerRegisterPlayerChatEvent(cp_ICHEAT,Player(1),"-cheat",false)
call TriggerRegisterPlayerChatEvent(cp_ICHEAT,Player(2),"-cheat",false)
call TriggerRegisterPlayerChatEvent(cp_ICHEAT,Player(3),"-cheat",false)
call TriggerRegisterPlayerChatEvent(cp_ICHEAT,Player(4),"-cheat",false)
call TriggerRegisterPlayerChatEvent(cp_ICHEAT,Player(5),"-cheat",false)
call TriggerRegisterPlayerChatEvent(cp_ICHEAT,Player(6),"-cheat",false)
call TriggerRegisterPlayerChatEvent(cp_ICHEAT,Player(7),"-cheat",false)
call TriggerRegisterPlayerChatEvent(cp_ICHEAT,Player(8),"-cheat",false)
call TriggerRegisterPlayerChatEvent(cp_ICHEAT,Player(9),"-cheat",false)
call TriggerRegisterPlayerChatEvent(cp_ICHEAT,Player(10),"-cheat",false)
call TriggerRegisterPlayerChatEvent(cp_ICHEAT,Player(11),"-cheat",false)
locusts00
Newcomer
Posts: 19
Joined: March 28th, 2008, 6:50 pm

Re: [Pure JASS] Aero's Cheat Packs (version 1, 2 and 3)

Post by locusts00 »

Got another problem,,
Aero's Cheat Packs V3

i want to remove this text when binding keys without making an error
coz it always appear when binding,, please help
remove.jpg


Thanks
You do not have the required permissions to view the files attached to this post.
User avatar
Bartimaeus
Tyrannical Drama Queen
Posts: 4427
Joined: November 19th, 2007, 5:05 am
Been thanked: 2 times

Re: [Pure JASS] Aero's Cheat Packs (version 1, 2 and 3)

Post by Bartimaeus »

call DisplayTimedTextToPlayer(cp_p,0,0,5,"|cffff0000Key Bindings Cleared.")
call DisplayTextToPlayer(cp_p,0,0,"|cffff0000'"+SubString(cp_s,8,30)+"' was bound to Up Arrow Key")
call DisplayTextToPlayer(cp_p,0,0,"|cffff0000'"+SubString(cp_s,10,30)+"' was bound to Left Arrow Key")
call DisplayTextToPlayer(cp_p,0,0,"|cffff0000'"+SubString(cp_s,11,30)+"' was bound to Right Arrow Key")
call DisplayTextToPlayer(cp_p,0,0,"|cffff0000'"+SubString(cp_s,10,30)+"' was bound to Down Arrow Key")

Delete these lines? Why does yours only display the command you entered to be used when hitting key?
Hacker6948
Newcomer
Posts: 1
Joined: April 6th, 2021, 2:51 pm

Re: [Pure JASS] Aero's Cheat Packs (version 1, 2 and 3)

Post by Hacker6948 »

Hey guys im looking to add the cown command to Aeros v1 cheat pack im not quite sure how to do it