GSC GSC Code List

Inactive Account

Old CCM Member
Premium Member
Messages
480
Reaction score
240
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 :
You do not have permission to view link Log in or register now.


Invisible :
You do not have permission to view link Log in or register now.


Give Money :
You do not have permission to view link Log in or register now.


Vector Scale :
You do not have permission to view link Log in or register now.


Jet Pack :
You do not have permission to view link Log in or register now.


Save&Load :
You do not have permission to view link Log in or register now.


Skull Protection :
You do not have permission to view link Log in or register now.


Forge Mod :
You do not have permission to view link Log in or register now.


Drunk Mod :
You do not have permission to view link Log in or register now.


UFO Mod :

You do not have permission to view link Log in or register now.


Freeze zombies :
You do not have permission to view link Log in or register now.


Kill Zombies :
You do not have permission to view link Log in or register now.


Headless Zombies :
You do not have permission to view link Log in or register now.


Zombies to Crosshair :
You do not have permission to view link Log in or register now.


Zombies Count :
You do not have permission to view link Log in or register now.


Zombies Slow :
You do not have permission to view link Log in or register now.


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
240
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
240
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
240
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