GSC GSC Code List

Inactive Account

Old CCM Member
Premium Member
Messages
480
Reaction score
241
Points
913
Hi CCM Comunity !
Today, I release this post for all who search to create a menu and search option !
(ZM)
Total Options : 22

God Mod :


Toggle_God()
{
if(self.God==false)
{
self iPrintln("^3GodMod ^2ON^7");
self.maxhealth=999999999;
self.health=self.maxhealth;
if(self.health<self.maxhealth)self.health=self.maxhealth;
self enableInvulnerability();
self.godenabled=true;
self.God=true;
}
else
{
self iPrintln("^3GodMod ^1OFF^7");
self.maxhealth=100;
self.health=self.maxhealth;
self disableInvulnerability();
self.godenabled=false;
self.God=false;
}
}

Infinite Ammos :

Toggle_Ammo()
{
if(self.unlammo==false)
{
self thread MaxAmmo();
self.unlammo=true;
self iPrintln("^3Unlimited Ammo ^2ON^7");
}
else
{
self notify("stop_ammo");
self.unlammo=false;
self iPrintln("^3Unlimited Ammo ^1OFF^7");
}
}
MaxAmmo()
{
self endon("stop_ammo");
while(1)
{
weap=self GetCurrentWeapon();
self setWeaponAmmoClip(weap,150);
wait .02;
}
}
3rd Person :

toggle_3ard()
{
if(self.tard==false)
{
self.tard=true;
self setclientthirdperson(1);
self iPrintln("Third Person [^2ON^7]");
}
else
{
self.tard=false;
self setclientthirdperson(0);
self iPrintln("Third Person [^1OFF^7]");
}
}
Double Jump :
DoubleJump()
{
if(self.DoubleJump==false)
{
self thread doDoubleJump();
self iPrintln("Double Jump [^2ON^7]");
self.DoubleJump=true;
}
else
{
self notify("DoubleJump");
self.DoubleJump=false;
self iPrintln("Double Jump [^1OFF^7]");
}
}
doDoubleJump()
{
self endon("death");
self endon("disconnect");
self endon("DoubleJump");
for(;:wink:
{
if(self GetVelocity()[2]>150 && !self isOnGround())
{
wait .2;
self setvelocity((self getVelocity()[0],self getVelocity()[1],self getVelocity()[2])+(0,0,250));
wait .8;
}
wait .001;
}
}

Super Speed :

doMiniSpeed()
{
if(self.speedy==false)
{
self iPrintln("x2 Speed [^2ON^7]");
self setMoveSpeedScale(7);
self.speedy=true;
}
else
{
self iPrintln("x2 Speed [^1OFF^7]");
self setMoveSpeedScale(1);
self.speedy=false;
}
}

Clone Me :
Please, Log in or Register to view URLs content!


Invisible :
Please, Log in or Register to view URLs content!


Give Money :
Please, Log in or Register to view URLs content!


Vector Scale :
Please, Log in or Register to view URLs content!


Jet Pack :
Please, Log in or Register to view URLs content!


Save&Load :
Please, Log in or Register to view URLs content!


Skull Protection :
Please, Log in or Register to view URLs content!


Forge Mod :
Please, Log in or Register to view URLs content!


Drunk Mod :
Please, Log in or Register to view URLs content!


UFO Mod :

Please, Log in or Register to view URLs content!


Freeze zombies :
Please, Log in or Register to view URLs content!


Kill Zombies :
Please, Log in or Register to view URLs content!


Headless Zombies :
Please, Log in or Register to view URLs content!


Zombies to Crosshair :
Please, Log in or Register to view URLs content!


Zombies Count :
Please, Log in or Register to view URLs content!


Zombies Slow :
Please, Log in or Register to view URLs content!


More coming !
Sources :Coming


 
Last edited:

[nobody@CCM:]

Member
Messages
95
Reaction score
86
Points
18
why are half of them pastebin links?
you should put them in spoilers so people need to sign up for the website to see them.
 

Inactive Account

Old CCM Member
Premium Member
Messages
480
Reaction score
241
Points
913
I can't add more spoiler because If I put code in spoiler,I'm going to touch limit of words in post and to consequence,can't modify the post ^^
 

Inactive Account

Old CCM Member
Premium Member
Messages
480
Reaction score
241
Points
913
I'm going to delete this post and create a new with an other method to don't have this problem :tongueclosed:
 

Inactive Account

Old CCM Member
Premium Member
Messages
480
Reaction score
241
Points
913
yeah I wasn't trying to be a dick or anything it will just help the site grow and get more members since they would want the functions.
It's not be a ... ,it's just help all CCM members ,and it so cool,I go send message to CabCon and say your name,your request ... :smile:
Thank's for your feedback and help :grinning:
 
Top