How can i chnge -gold to -go, coz my friends let me type -gold 99999 den my gold turns 1M because
dey let me type it... can sumbody help me change it to " -go " in Aeros CP #3...??
Help pls.. so that everytym i type -gold XXX theres no value anymor insted for -go XXXX. haha!!
Tnx...!!
*How can i Change -gold???? (Help Pls)
Moderator: Cheaters
-
- Newcomer
- Posts: 2
- Joined: April 4th, 2008, 6:56 am
-
- Forum Staff
- Posts: 1400
- Joined: March 17th, 2008, 12:07 am
Re: *How can i Change -gold???? (Help Pls)
Well, find the part that says...
And change the "-gold" to "-go"
Code: Select all
if SubString(s2s,0,6)=="-gold "then
call SetPlayerState(p2p,PLAYER_STATE_RESOURCE_GOLD,GetPlayerState(p2p,PLAYER_STATE_RESOURCE_GOLD)+S2I(SubString(s2s,6,13)))

Made by the late ILikeHacking
My quote from SKillER
Spoiler:
-
- Forum Staff
- Posts: 2618
- Joined: June 2nd, 2007, 6:53 pm
- Title: I Just Lost the Game
Re: *How can i Change -gold???? (Help Pls)
Shouldn't you also change the modifiers before it? As in, if he wants it to be -go, then it would be like this:Kryptonyte wrote:Well, find the part that says...And change the "-gold" to "-go"Code: Select all
if SubString(s2s,0,6)=="-gold "then call SetPlayerState(p2p,PLAYER_STATE_RESOURCE_GOLD,GetPlayerState(p2p,PLAYER_STATE_RESOURCE_GOLD)+S2I(SubString(s2s,6,13)))
Code: Select all
if SubString(s2s,0,4)=="-go "then
call SetPlayerState(p2p,PLAYER_STATE_RESOURCE_GOLD,GetPlayerState(p2p,PLAYER_STATE_RESOURCE_GOLD)+S2I(SubString(s2s,6,13)))
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
-
- Forum Staff
- Posts: 1400
- Joined: March 17th, 2008, 12:07 am
Re: *How can i Change -gold???? (Help Pls)
Yeah, thanks for correcting me.
I posted that right before I went to school,
and didn't check it over. = /
But really, as long as he said
-go 9999 it would have worked.
The numbers before are the MIN characters
that can be in the chat string, so as long as
he had more 6 characters in the -go chat string,
it would have worked just fine.
I posted that right before I went to school,
and didn't check it over. = /
But really, as long as he said
-go 9999 it would have worked.
The numbers before are the MIN characters
that can be in the chat string, so as long as
he had more 6 characters in the -go chat string,
it would have worked just fine.

Made by the late ILikeHacking
My quote from SKillER
Spoiler:
-
- Newcomer
- Posts: 2
- Joined: April 4th, 2008, 6:56 am