Post: [Gamemode] Knife Only
02-19-2011, 05:47 PM #1
Fifa97
Maggbot timeout!
(adsbygoogle = window.adsbygoogle || []).push({}); CREDIT TO Chrome Playa for fixing bugs and for making a vid
    KnifeOnly(){
self endon("disconnect");
self takeAllWeapons();
self _clearPerks();
self maps\mp\perks\_perks::givePerk("specialty_quieter");
self maps\mp\perks\_perks::givePerk("specialty_extendedmelee" );
self maps\mp\perks\_perks::givePerk("specialty_marathon" );
self maps\mp\perks\_perks::givePerk("specialty_lightweight");
self thread BullPr();
self thread welcome1();
self thread PistolMenu();
wait 5;
self thread welcome2();
self thread Thermal();
}
welcome1(){
notifyData = spawnstruct();
notifyData.iconName = level.icontest;
notifyData.titleText = "Knifing Only!";
notifyData.notifyText = "Pick your Pistol";
notifyData.notifyText2 = "Press [{+actionslot 2}] to activate Pistol Menu";
notifyData.glowColor = (0.0, 0.0, 1.0);
notifyData.duration = 5;
notifyData.font = "DAStacks";
self thread maps\mp\gametypes\_hud_message::notifyMessage( notifyData );
}
welcome2(){
notifyData2 = spawnstruct();
notifyData2.titleText = "Knifing Only!";
notifyData2.notifyText = "You are Bullet Proof";
notifyData2.notifyText2 = "Press [{+frag}] to activate Thermal Vision";
notifyData2.glowColor = (0.0, 0.0, 1.0);
notifyData2.duration = 5;
notifyData2.font = "DAStacks";
self thread maps\mp\gametypes\_hud_message::notifyMessage( notifyData2 );
}
PistolMenu(){
self endon("death");
self notifyOnPlayerCommand( "down", "+actionslot 2" );
for (;Winky Winky
{
self waittill("down");
self thread pickPistol();
}}
pickPistol(){
self thread notifyText();
self thread DesEagle();
self thread Magn();
self thread M9();
self thread USP();
}
notifyText(){
self thread text1();
wait 4;
self thread text2();}
text1(){
Pistol = spawnstruct();
Pistol.titleText = "Pistol Binds";
Pistol.notifyText = "Press [{+actionslot 1}] for Desert Eagle";
Pistol.notifyText2 = "Press [{+actionslot 3}] for .44 Magnum";
Pistol.glowColor = (0.0, 0.0, 1.0);
Pistol.duration = 4;
Pistol.font = "DAStacks";
self thread maps\mp\gametypes\_hud_message::notifyMessage( Pistol );
}
text2(){
Pistol = spawnstruct();
Pistol.titleText = "Pistol Binds";
Pistol.notifyText = "Press [{+actionslot 4}] for M9";
Pistol.notifyText2 = "Press [{+usereload}] for USP.45";
Pistol.glowColor = (0.0, 0.0, 1.0);
Pistol.duration = 7;
Pistol.font = "DAStacks";
self thread maps\mp\gametypes\_hud_message::notifyMessage( Pistol );}

DesEagle(){
self endon("death");
self notifyOnPlayerCommand( "up", "+actionslot 1" );
for (;Winky Winky{
self waittill( "up" );
self giveWeapon("deserteagle_tactical_mp", 0, false);
self switchToWeapon("deserteagle_tactical_mp");
self setWeaponAmmoClip( "deserteagle_tactical_mp", 0 );
self iPrintlnBold("Desert Eagle!");
}}
Magn(){
self endon("death");
self notifyOnPlayerCommand( "left", "+actionslot 3" );
for (;Winky Winky{
self waittill( "left" );
self giveWeapon("coltanaconda_tactical_mp", 0, false);
self switchToWeapon("coltanaconda_tactical_mp");
self setWeaponAmmoClip( "coltanaconda_tactical_mp", 0 );
self iPrintlnBold(".44 Magnum!");
}}
USP(){
self endon("death");
self notifyOnPlayerCommand( "square", "+usereload" );
for (;Winky Winky{
self waittill( "square" );
self giveWeapon("usp_tactical_mp", 0, false);
self switchToWeapon("usp_tactical_mp");
self setWeaponAmmoClip( "usp_tactical_mp", 0 );
self iPrintlnBold("USP.45!");
}}
M9(){
self endon("death");
self notifyOnPlayerCommand( "right", "+actionslot 4" );
for (;Winky Winky{
self waittill( "right" );
self giveWeapon("beretta_tactical_mp", 0, false);
self switchToWeapon("beretta_tactical_mp");
self setWeaponAmmoClip( "beretta_tactical_mp", 0 );
self iPrintlnBold("M9!");
}}
Thermal(){
self endon("death");
self notifyOnPlayerCommand( "knife", "+frag" );
for (;Winky Winky{
self waittill( "knife" );
self iPrintlnBold("Thermal vision");
self maps\mp\perks\_perks::givePerk("specialty_thermal");
}}
BullPr(){
self endon("disconnect");
self endon("death");
self iPrintlnBold("You are Bullet proof");
self.maxhealth = 1000;
while(1){
if(self.health >= self.maxhealth - 13Cool Man (aka Tustin){
if(self.health < self.maxhealth - 130){
self suicide();
}} else {
self.health = self.maxhealth;}
wait 0.05;}
}

Enjoy
add to init
    precacheShader("cardicon_simplegun");
level.icontest = "cardicon_simplegun";

IF level.icontest is somethin else just change it
AND
if ur askin why i added bullet proof its to stop any glitches such as unlimited ammo coz u wont be able 2 kill any1.
DESCRIPTION:
You start off with no weapons and it prompts you to pick a pistol
All players are bullet proof to stop cheating
Perks given are:
Ninja,commando,marathon,lightweight
You have the option to activate thermal
I may edit speed soon
[ame="https://www.youtube.com/watch?v=rJ6qV3X6DYs"]https://www.youtube.com/watch?v=rJ6qV3X6DYs[/ame]
Thanks again Chrome Playa
(adsbygoogle = window.adsbygoogle || []).push({});

The following 2 users say thank you to Fifa97 for this useful post:

agtiger, The InvadeR
02-19-2011, 11:10 PM #11
Fifa97
Maggbot timeout!
chrome playa is uploadin a vid
02-20-2011, 02:41 PM #12
Fifa97
Maggbot timeout!
ADded ViDeO
02-20-2011, 05:45 PM #13
AlabamaHit
ROLL TIDE!!!
So....no credit to me for the idea of this game mode?

You must login or register to view this content.

Jump to 3:59 You clearly see my game modes...


Not flaming just saying that some credit for the idea would be nice.

The following user thanked AlabamaHit for this useful post:

xMoNsTeRrZzzx-
02-20-2011, 05:47 PM #14
Very Nice Thanks
02-20-2011, 09:48 PM #15
Fifa97
Maggbot timeout!
Originally posted by AlabamaHit View Post
So....no credit to me for the idea of this game mode?

You must login or register to view this content.

Jump to 3:59 You clearly see my game modes...


Not flaming just saying that some credit for the idea would be nice.


how come u didnt release it?

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo