Description:
When a player got headshot, his head will be disappear (detach all)
Name:
Loose head
Credit:
Alistair3149
____________________________________________________________
Description:
Defaultweapon
Name:
Handgun
Credit:
Alistair3149
____________________________________________________________
Description:
Infinite ammo when u are using flamethrower and
force them to use it
Name:
Flamethrower
Credit:
Alistair3149
____________________________________________________________
Description:
You are always second chance and u get a minigun
Name:
Turret
Credit:
Alistair3149
____________________________________________________________
Description:
When you kill an enemy, you can get health
Name:
Meat Eater
Credit:
Alistair3149
____________________________________________________________
Description:
Ur weapon shoot incendiary ammo
Name:
Dragon's breath
Credit:
3arc
____________________________________________________________
Description:
U can attach silencer and detach it all the time
Name:
Special Force
Credit:
Alistair3149
____________________________________________________________
Description:
You always throw weapon or scavenger packs to the ground
Name:
Supply team
Credit:
Alistair3149
____________________________________________________________
Description:
You get different clothes for head, body and leg
Name:
Fashionable
Credit:
Alistair3149
_____________________________________________________________
Description:
You can plant mines on the ground
And set the model to a inverted motion sensor (half underground, half showing)
(The bouncing betty code from MW2)
Name:
Planter
Credit:
kiwimoosical
When a player got headshot, his head will be disappear (detach all)
Name:
Loose head
Credit:
Alistair3149
____________________________________________________________
Description:
Defaultweapon
Name:
Handgun
Credit:
Alistair3149
____________________________________________________________
Description:
Infinite ammo when u are using flamethrower and
force them to use it
Name:
Flamethrower
Credit:
Alistair3149
____________________________________________________________
Description:
You are always second chance and u get a minigun
Name:
Turret
Credit:
Alistair3149
____________________________________________________________
Description:
When you kill an enemy, you can get health
Name:
Meat Eater
Credit:
Alistair3149
____________________________________________________________
Description:
Ur weapon shoot incendiary ammo
Name:
Dragon's breath
Credit:
3arc
____________________________________________________________
Description:
U can attach silencer and detach it all the time
Name:
Special Force
Credit:
Alistair3149
____________________________________________________________
Description:
You always throw weapon or scavenger packs to the ground
Name:
Supply team
Credit:
Alistair3149
____________________________________________________________
Description:
You get different clothes for head, body and leg
Name:
Fashionable
Credit:
Alistair3149
_____________________________________________________________
Description:
You can plant mines on the ground
And set the model to a inverted motion sensor (half underground, half showing)
(The bouncing betty code from MW2)
Code:
mines()
{
level.mineSet = 0;
mineSpot = undefined;
for(;;)
{
if(self usebuttonpressed() && level.mineSet == 0)
{
mineSpot = self.origin;
level.mineSet = 1;
}
foreach(player in level.players)
{
if(distance(minespot, player.origin)<10 && level.mineSet == 1 && player != self && !(level.teamBased && player.team == self.team) && isAlive( player ) && !( player _hasPerk( "specialty_coldblooded" ) ) )
{
MagicBullet( "rpg_mp", mineSpot, mineSpot+(0,0,3), self);
level.mineSet = 0;
wait 3;
}
}
wait 0.05;
}
}
Name:
Planter
Credit:
kiwimoosical