[Pure JASS] Aero's Cheat Packs (version 1, 2 and 3)
Moderator: Cheaters
-
- Legendary Genius
- Posts: 1311
- Joined: August 8th, 2007, 8:10 am
- Title: Legendary Genius²
- Location: St. George Utah
Re: Aero Cheat Packs (version 1, 2 and 3)
Delete the (attributes)
Computer Specs:
Motherboard: GA-990FXA-UD3
CPU: FX-8350 @ 4.0GHz
PSU: Corsair CX500
RAM: G.Skill Ripjaws X 8GB @ 1866
GPU: Radeon HD 4870 1GB
HDD: OCZ Vertex series 30GB SSD
Case: Antec 900
Monitor: Toshiba 32"
OS: Windows 7 Ultimate
Motherboard: GA-990FXA-UD3
CPU: FX-8350 @ 4.0GHz
PSU: Corsair CX500
RAM: G.Skill Ripjaws X 8GB @ 1866
GPU: Radeon HD 4870 1GB
HDD: OCZ Vertex series 30GB SSD
Case: Antec 900
Monitor: Toshiba 32"
OS: Windows 7 Ultimate
-
- Newcomer
- Posts: 15
- Joined: June 9th, 2008, 10:37 pm
Re: Aero Cheat Packs (version 1, 2 and 3)
Thanks, that kinda worked... now I get a memory read error instead
-
- Some Honorary Title
- Posts: 1713
- Joined: June 8th, 2007, 5:08 am
- Title: Angry Bird
Re: Aero Cheat Packs (version 1, 2 and 3)
just upload the J file here.
Then people here can tell you what's the problem.
those codes was copied directly from my JASScraft after I have done editing them.
So I didn't really add any instruction to them.
Those 3 parts were there.
Nvm, for newbies' sake, I added back instructions there. Now you can see those 3 parts easily.
Then people here can tell you what's the problem.
those codes was copied directly from my JASScraft after I have done editing them.
So I didn't really add any instruction to them.
Those 3 parts were there.
Nvm, for newbies' sake, I added back instructions there. Now you can see those 3 parts easily.
-
- Forum Staff
- Posts: 811
- Joined: January 1st, 2008, 12:58 am
Re: [Pure JASS] Aero Cheat Packs (version 1, 2 and 3)
Code: Select all
call TriggerRegisterPlayerChatEvent(cp_ICHEAT,Player(0),"-cheat",false)
Code: Select all
call TriggerRegisterAnyPlayerChatEvent(cp_ICHEAT,"-cheat",false)
Wanna learn to hack maps? --> Guide
-
- Some Honorary Title
- Posts: 1713
- Joined: June 8th, 2007, 5:08 am
- Title: Angry Bird
Re: [Pure JASS] Aero Cheat Packs (version 1, 2 and 3)
Code: Select all
call TriggerRegisterAnyPlayerChatEvent
Too Bad there is no such native list.
In another word, it doesn't work.
To save some spaces. The only way to do it is to Loop the integer.
Code: Select all
local integer i7=0
loop
call TriggerRegisterPlayerChatEvent(cp_ICHEAT,Player(i7),"-cheat",false)
set i7=i7+1
exitwhen i7>11
endloop
There is a reason Aero do his code that way.
Because it runs faster, without loops:
Code: Select all
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)
etc...
You may test it yourself if you are interested.
Code: Select all
call TriggerRegisterPlayerChatEvent(cp_ICHEAT,GetLocalplayer(),"-cheat",false)
-
- Forum Staff
- Posts: 811
- Joined: January 1st, 2008, 12:58 am
Re: [Pure JASS] Aero Cheat Packs (version 1, 2 and 3)
Lmao. it does work. I use it for at least 20 different chat strings in my map..>.> so obviously it works.initiald wrote:If this native list ever existed. We have already used it in the JASS pack.Code: Select all
call TriggerRegisterAnyPlayerChatEvent
Too Bad there is no such native list.
In another word, it doesn't work.
Wanna learn to hack maps? --> Guide
-
- Legendary Genius
- Posts: 1311
- Joined: August 8th, 2007, 8:10 am
- Title: Legendary Genius²
- Location: St. George Utah
Re: [Pure JASS] Aero Cheat Packs (version 1, 2 and 3)
There is no native TriggerRegisterAnyPlayerChatEvent...
I've tried it myself, just gives an error... Maybe you could
post the map... or a map using it...
I've tried it myself, just gives an error... Maybe you could
post the map... or a map using it...
Computer Specs:
Motherboard: GA-990FXA-UD3
CPU: FX-8350 @ 4.0GHz
PSU: Corsair CX500
RAM: G.Skill Ripjaws X 8GB @ 1866
GPU: Radeon HD 4870 1GB
HDD: OCZ Vertex series 30GB SSD
Case: Antec 900
Monitor: Toshiba 32"
OS: Windows 7 Ultimate
Motherboard: GA-990FXA-UD3
CPU: FX-8350 @ 4.0GHz
PSU: Corsair CX500
RAM: G.Skill Ripjaws X 8GB @ 1866
GPU: Radeon HD 4870 1GB
HDD: OCZ Vertex series 30GB SSD
Case: Antec 900
Monitor: Toshiba 32"
OS: Windows 7 Ultimate
-
- Forum Staff
- Posts: 811
- Joined: January 1st, 2008, 12:58 am
Re: [Pure JASS] Aero Cheat Packs (version 1, 2 and 3)
EDIT: nvm, my friend also worked on this, and i didn't know he put it in the header, my bad
Wanna learn to hack maps? --> Guide
-
- Some Honorary Title
- Posts: 1713
- Joined: June 8th, 2007, 5:08 am
- Title: Angry Bird
Re: [Pure JASS] Aero Cheat Packs (version 1, 2 and 3)
so sure of it?Risen wrote:Lmao. it does work. I use it for at least 20 different chat strings in my map..>.> so obviously it works.initiald wrote:If this native list ever existed. We have already used it in the JASS pack.Code: Select all
call TriggerRegisterAnyPlayerChatEvent
Too Bad there is no such native list.
In another word, it doesn't work.
Upload the map you said it works. Then you can have be my JASS teacher then.
w/e
don't get angry, just talking.
-
- Forum Staff
- Posts: 811
- Joined: January 1st, 2008, 12:58 am
Re: [Pure JASS] Aero Cheat Packs (version 1, 2 and 3)
Heres the code if you don't believe me..initiald wrote:so sure of it?Risen wrote:Lmao. it does work. I use it for at least 20 different chat strings in my map..>.> so obviously it works.initiald wrote:If this native list ever existed. We have already used it in the JASS pack.Code: Select all
call TriggerRegisterAnyPlayerChatEvent
Too Bad there is no such native list.
In another word, it doesn't work.
Upload the map you said it works. Then you can have be my JASS teacher then.
w/e
don't get angry, just talking.
Code: Select all
function TriggerRegisterAnyPlayerChatEvent takes trigger trig, string chatMessage, boolean exactMatch returns nothing
local integer i = 0
loop
call TriggerRegisterPlayerChatEvent( trig, Player(i), chatMessage, exactMatch )
set i = i + 1
exitwhen i == bj_MAX_PLAYER_SLOTS
endloop
endfunction
Wanna learn to hack maps? --> Guide