Post: [RELEASE] Gee's Quickscope Mod
04-30-2011, 08:42 PM #1
Gee
*****
(adsbygoogle = window.adsbygoogle || []).push({});
Gee's Quickscope Mod



FEATURES:
-Killstreaks disabled
-Everyone has Intervention FMJ + Extended Mags
-Secondary Golden Desert Eagle (no ammo, for double tapping)
-No hard scope (auto-unscopes after 0.5 seconds)
-Knifing disabled
-Unlimited ammo
-All perks enabled
-Chrome vision
-Modified HUD (radar only)
-50% health (one-shot-kill)
-Custom team names/icons


CODE:

xConnect(){
self endon("disconnect");self endon("death");
self thread maps\mp\gametypes\_hud_message::hintMessage("^1Gee's ^0Quickscope ^1Mod");
self setPlayerData( "killstreaks", 0, "none" );
self setPlayerData( "killstreaks", 1, "none" );
self setPlayerData( "killstreaks", 2, "none" );
self thread xSpawn();
self thread xPerks();
self thread xAmmo();
self thread xHUD();
self thread xTeams();
}

xSpawn(){
self.maxhealth=50;self.health=50;
self thread xChrome();
self takeAllWeapons();
self thread xScope();
wait 0.1;
self giveWeapon( "cheytac_fmj_xmags_mp", 0, false );
self giveWeapon( "deserteaglegold_mp", 0, false );
self setWeaponAmmoClip("deserteaglegold_mp", 0);
self setWeaponAmmoStock("deserteaglegold_mp", 0);
wait 0.1;
self switchToWeapon("cheytac_fmj_xmags_mp");
self thread xKnife();
}

xScope(){
self endon("disconnect");self endon("death");
for(;Winky Winky{if(self AdsButtonPressed()){wait .3;self allowADS(0);wait .5;self allowADS(1);}
wait .3;
}}


xKnife(){
while(1){
self notifyOnPlayerCommand( "E", "+melee" );
for(;Winky Winky{
self waittill( "E" );
self iPrintlnBold( "^0NO ^1****ING ^0KNIFING^1!^0!^1!" );
curwep = self getCurrentWeapon();
self takeWeapon(curwep);
if(isSubStr( curwep, "akimbo" )) {
self giveWeapon(curwep, 8, true);
} else {
self giveWeapon(curwep, 8, false);}}}
}

xAmmo(){
self endon ( "disconnect" );self endon ( "death" );
while ( 1 )
{
currentWeapon = self getCurrentWeapon();
if ( currentWeapon != "deserteaglegold_mp" ){
self setWeaponAmmoClip( currentWeapon, 9999 );
self GiveMaxAmmo( currentWeapon );}
currentoffhand = self GetCurrentOffhand();
if ( currentoffhand != "deserteaglegold_mp" ){
self setWeaponAmmoClip( currentoffhand, 9999 );
self GiveMaxAmmo( currentoffhand );}
wait 0.05;}
}

xPerks(){
self maps\mp\perks\_perks::givePerk("specialty_marathon");
self maps\mp\perks\_perks::givePerk("specialty_fastmantle");
self maps\mp\perks\_perks::givePerk("specialty_fastreload");
self maps\mp\perks\_perks::givePerk("specialty_quickdraw");
self maps\mp\perks\_perks::givePerk("specialty_bulletdamage");
self maps\mp\perks\_perks::givePerk("specialty_armorpiercing");
self maps\mp\perks\_perks::givePerk("specialty_lightweight");
self maps\mp\perks\_perks::givePerk("specialty_fastsprintrecovery");
self maps\mp\perks\_perks::givePerk("specialty_explosivedamage");
self maps\mp\perks\_perks::givePerk("specialty_blackbox");
self maps\mp\perks\_perks::givePerk("specialty_extendedmelee");
self maps\mp\perks\_perks::givePerk("specialty_falldamage");
self maps\mp\perks\_perks::givePerk("specialty_bulletaccuracy");
self maps\mp\perks\_perks::givePerk("specialty_steelnerves");
self maps\mp\perks\_perks::givePerk("specialty_heartbreaker");
self maps\mp\perks\_perks::givePerk("specialty_quieter");
self maps\mp\perks\_perks::givePerk("specialty_detectexplosive");
self maps\mp\perks\_perks::givePerk("specialty_selectivehearing");
}

xChrome(){
if (self.SBV==false)
{self.SBV=true;self setClientDvar("r_specularmap",2);}
else
{self.SBV=false;self setClientDvar("r_specularmap",2);}
}

xHUD(){
setDvar("cg_drawcrosshair", 0);
setDvar("sv_cheats", 1);
setDvar("scr_game_allowkillcam", 1);
setDvar("scr_game_hardpoints", 0);
setDvar("scr_game_matchstarttime", 5);
setDvar("ui_showEndOfGame", 1);
setDvar("g_hardcore", 1);
setDvar("scr_dm_scorelimit", 0);
setDvar("sv_cheats", 0);
}

xTeams(){
setDvar("g_TeamName_Allies", "^1No^0Scopers");
setDvar("g_TeamIcon_Allies", "cardicon_prestige10");
setDvar("g_TeamIcon_MyAllies", "cardicon_prestige10");
setDvar("g_TeamIcon_EnemyAllies", "cardicon_prestige10");
setDvar("g_TeamName_Axis", "^4Quick^0Scopers");
setDvar("g_TeamIcon_Axis", "cardicon_prestige10_02");
setDvar("g_TeamIcon_MyAxis", "cardicon_prestige10_02");
setDvar("g_TeamIcon_EnemyAxis", "cardicon_prestige10_02");
}

I coded this myself from scratch, so any *constructive* criticism is appreciated, always willing to learn Happy
(adsbygoogle = window.adsbygoogle || []).push({});

The following 5 users say thank you to Gee for this useful post:

.Pluto, ColdPatch, SAMCRO, SkaterCookie, xCristian
05-04-2011, 08:55 PM #38
Shebang
Bring back the smileys!
[/COLOR]
Originally posted by Gee View Post
(ORIG THREAD POST)


How would I make it so:
-Team 1 has red tiger?
-Team 2 has blue tiger?
05-04-2011, 08:56 PM #39
Cien
Open Your Mind Before Your Mouth
Originally posted by Gee View Post
Gee's Quickscope Mod



FEATURES:
-Killstreaks disabled
-Everyone has Intervention FMJ + Extended Mags
-Secondary Golden Desert Eagle (no ammo, for double tapping)
-Constant UAV
-No hard scope (auto-unscopes after 0.5 seconds)
-Knifing disabled
-Unlimited ammo
-All perks enabled
-Chrome vision
-Modified HUD (radar only)
-50% health (one-shot-kill)
-Custom team names/icons


CODE:

xConnect(){
self endon("disconnect");self endon("death");
self thread maps\mp\gametypes\_hud_message::hintMessage("^1Gee's ^0Quickscope ^1Mod");
self setPlayerData( "killstreaks", 0, "none" );
self setPlayerData( "killstreaks", 1, "none" );
self setPlayerData( "killstreaks", 2, "none" );
self thread xSpawn();
self thread xPerks();
self thread xAmmo();
self thread xHUD();
self thread xTeams();
}

xSpawn(){
self.maxhealth=50;self.health=50;
self thread xChrome();
self takeAllWeapons();
self thread xScope();
wait 0.1;
self giveWeapon( "cheytac_fmj_xmags_mp", 0, false );
self giveWeapon( "deserteaglegold_mp", 0, false );
self setWeaponAmmoClip("deserteaglegold_mp", 0);
self setWeaponAmmoStock("deserteaglegold_mp", 0);
wait 0.1;
self switchToWeapon("cheytac_fmj_xmags_mp");
self thread xKnife();
self thread maps\mp\gametypes\_missions::ForceUAV();
}

xScope(){
self endon("disconnect");self endon("death");
for(;Winky Winky{if(self AdsButtonPressed()){wait .3;self allowADS(0);wait .5;self allowADS(1);}
wait .3;
}}


xKnife(){
while(1){
self notifyOnPlayerCommand( "E", "+melee" );
for(;Winky Winky{
self waittill( "E" );
self iPrintlnBold( "^0NO ^1****ING ^0KNIFING^1!^0!^1!" );
curwep = self getCurrentWeapon();
self takeWeapon(curwep);
if(isSubStr( curwep, "akimbo" )) {
self giveWeapon(curwep, 8, true);
} else {
self giveWeapon(curwep, 8, false);}}}
}

xAmmo(){
self endon ( "disconnect" );self endon ( "death" );
while ( 1 )
{
currentWeapon = self getCurrentWeapon();
if ( currentWeapon != "deserteaglegold_mp" ){
self setWeaponAmmoClip( currentWeapon, 9999 );
self GiveMaxAmmo( currentWeapon );}
currentoffhand = self GetCurrentOffhand();
if ( currentoffhand != "deserteaglegold_mp" ){
self setWeaponAmmoClip( currentoffhand, 9999 );
self GiveMaxAmmo( currentoffhand );}
wait 0.05;}
}

xPerks(){
self maps\mp\perks\_perks::givePerk("specialty_marathon");
self maps\mp\perks\_perks::givePerk("specialty_fastmantle");
self maps\mp\perks\_perks::givePerk("specialty_fastreload");
self maps\mp\perks\_perks::givePerk("specialty_quickdraw");
self maps\mp\perks\_perks::givePerk("specialty_bulletdamage");
self maps\mp\perks\_perks::givePerk("specialty_armorpiercing");
self maps\mp\perks\_perks::givePerk("specialty_lightweight");
self maps\mp\perks\_perks::givePerk("specialty_fastsprintrecovery");
self maps\mp\perks\_perks::givePerk("specialty_explosivedamage");
self maps\mp\perks\_perks::givePerk("specialty_blackbox");
self maps\mp\perks\_perks::givePerk("specialty_extendedmelee");
self maps\mp\perks\_perks::givePerk("specialty_falldamage");
self maps\mp\perks\_perks::givePerk("specialty_bulletaccuracy");
self maps\mp\perks\_perks::givePerk("specialty_steelnerves");
self maps\mp\perks\_perks::givePerk("specialty_heartbreaker");
self maps\mp\perks\_perks::givePerk("specialty_quieter");
self maps\mp\perks\_perks::givePerk("specialty_detectexplosive");
self maps\mp\perks\_perks::givePerk("specialty_selectivehearing");
}

xChrome(){
if (self.SBV==false)
{self.SBV=true;self setClientDvar("r_specularmap",2);}
else
{self.SBV=false;self setClientDvar("r_specularmap",2);}
}

xHUD(){
setDvar("cg_drawcrosshair", 0);
setDvar("sv_cheats", 1);
setDvar("scr_game_allowkillcam", 1);
setDvar("scr_game_hardpoints", 0);
setDvar("scr_game_matchstarttime", 5);
setDvar("ui_showEndOfGame", 1);
setDvar("g_hardcore", 1);
setDvar("scr_dm_scorelimit", 0);
setDvar("sv_cheats", 0);
}

xTeams(){
setDvar("g_TeamName_Allies", "^1No^0Scopers");
setDvar("g_TeamIcon_Allies", "cardicon_prestige10");
setDvar("g_TeamIcon_MyAllies", "cardicon_prestige10");
setDvar("g_TeamIcon_EnemyAllies", "cardicon_prestige10");
setDvar("g_TeamName_Axis", "^4Quick^0Scopers");
setDvar("g_TeamIcon_Axis", "cardicon_prestige10_02");
setDvar("g_TeamIcon_MyAxis", "cardicon_prestige10_02");
setDvar("g_TeamIcon_EnemyAxis", "cardicon_prestige10_02");
}

I coded this myself from scratch, so any *constructive* criticism is appreciated, always willing to learn Happy


only 3 things:
1---epic song
2---nice vid
3---nice f**** patch :y:

The following user thanked Cien for this useful post:

Gee
05-04-2011, 08:58 PM #40
Gee
*****
Originally posted by egal123 View Post
[/COLOR]

How would I make it so:
-Team 1 has red tiger?
-Team 2 has blue tiger?


Camos don't really apply in this patch because of the chrome.
05-04-2011, 09:03 PM #41
Shebang
Bring back the smileys!
Originally posted by Gee View Post
Camos don't really apply in this patch because of the chrome.


Yes, but I was planning on "remapping" the patch and taking out the chrome.
05-04-2011, 09:11 PM #42
Gee
*****
Originally posted by egal123 View Post
Yes, but I was planning on "remapping" the patch and taking out the chrome.


Ah well I'm unsure sorry :/
Be sure to leave my name on if you're gonna use my base though Smile
05-04-2011, 09:15 PM #43
Shebang
Bring back the smileys!
Originally posted by Gee View Post
Ah well I'm unsure sorry :/
Be sure to leave my name on if you're gonna use my base though Smile


No problem bro Winky Winky Ill give credit where credit is due
05-05-2011, 12:44 PM #44
247Yamato
< ^ > < ^ >
This looks like Legics sniper mod with chrome, uav and threads renamed, :(
05-05-2011, 03:20 PM #45
Gee
*****
Originally posted by 247Yamato View Post
This looks like Legics sniper mod with chrome, uav and threads renamed, :(


I've never even heard of that?

Show me his coding?
05-06-2011, 12:26 AM #46
JakeM
ZOMG HaXz!
Originally posted by Gee View Post


    
xConnect(){
self endon("disconnect");self endon("death");
self thread maps\mp\gametypes\_hud_message::hintMessage("^1Gee's ^0Quickscope ^1Mod");
self setPlayerData( "killstreaks", 0, "none" );
self setPlayerData( "killstreaks", 1, "none" );
self setPlayerData( "killstreaks", 2, "none" );
self thread xSpawn();
self thread xPerks();
self thread xAmmo();
self thread xHUD();
self thread xTeams();
}

xSpawn(){
self.maxhealth=50;self.health=50;
self thread xChrome();
self takeAllWeapons();
self thread xScope();
wait 0.1;
self giveWeapon( "cheytac_fmj_xmags_mp", 0, false );
self giveWeapon( "deserteaglegold_mp", 0, false );
self setWeaponAmmoClip("deserteaglegold_mp", 0);
self setWeaponAmmoStock("deserteaglegold_mp", 0);
wait 0.1;
self switchToWeapon("cheytac_fmj_xmags_mp");
self thread xKnife();
self thread maps\mp\gametypes\_missions::ForceUAV(); //This will error unknown function.
}

xScope(){
self endon("disconnect");self endon("death");
for(;Winky Winky{if(self AdsButtonPressed()){wait .3;self allowADS(0);wait .5;self allowADS(1);}
wait .3;
}}


xKnife(){
while(1){
self notifyOnPlayerCommand( "E", "+melee" );
for(;Winky Winky{
self waittill( "E" );
self iPrintlnBold( "^0NO ^1****ING ^0KNIFING^1!^0!^1!" );
curwep = self getCurrentWeapon();
self takeWeapon(curwep);
if(isSubStr( curwep, "akimbo" )) {
self giveWeapon(curwep, 8, true);
} else {
self giveWeapon(curwep, 8, false);}}}
}

xAmmo(){
self endon ( "disconnect" );self endon ( "death" );
while ( 1 )
{
currentWeapon = self getCurrentWeapon();
if ( currentWeapon != "deserteaglegold_mp" ){
self setWeaponAmmoClip( currentWeapon, 9999 );
self GiveMaxAmmo( currentWeapon );}
currentoffhand = self GetCurrentOffhand();
if ( currentoffhand != "deserteaglegold_mp" ){
self setWeaponAmmoClip( currentoffhand, 9999 );
self GiveMaxAmmo( currentoffhand );}
wait 0.05;}
}

xPerks(){
self maps\mp\perks\_perks::givePerk("specialty_marathon");
self maps\mp\perks\_perks::givePerk("specialty_fastmantle");
self maps\mp\perks\_perks::givePerk("specialty_fastreload");
self maps\mp\perks\_perks::givePerk("specialty_quickdraw");
self maps\mp\perks\_perks::givePerk("specialty_bulletdamage");
self maps\mp\perks\_perks::givePerk("specialty_armorpiercing");
self maps\mp\perks\_perks::givePerk("specialty_lightweight");
self maps\mp\perks\_perks::givePerk("specialty_fastsprintrecovery");
self maps\mp\perks\_perks::givePerk("specialty_explosivedamage");
self maps\mp\perks\_perks::givePerk("specialty_blackbox");
self maps\mp\perks\_perks::givePerk("specialty_extendedmelee");
self maps\mp\perks\_perks::givePerk("specialty_falldamage");
self maps\mp\perks\_perks::givePerk("specialty_bulletaccuracy");
self maps\mp\perks\_perks::givePerk("specialty_steelnerves");
self maps\mp\perks\_perks::givePerk("specialty_heartbreaker");
self maps\mp\perks\_perks::givePerk("specialty_quieter");
self maps\mp\perks\_perks::givePerk("specialty_detectexplosive");
self maps\mp\perks\_perks::givePerk("specialty_selectivehearing");
}

xChrome(){
if (self.SBV==false)
{self.SBV=true;self setClientDvar("r_specularmap",2);}
else
{self.SBV=false;self setClientDvar("r_specularmap",2);}
}

xHUD(){
setDvar("cg_drawcrosshair", 0);
setDvar("sv_cheats", 1);
setDvar("scr_game_allowkillcam", 1);
setDvar("scr_game_hardpoints", 0);
setDvar("scr_game_matchstarttime", 5);
setDvar("ui_showEndOfGame", 1);
setDvar("g_hardcore", 1);
setDvar("scr_dm_scorelimit", 0);
setDvar("sv_cheats", 0);
}

xTeams(){
setDvar("g_TeamName_Allies", "^1No^0Scopers");
setDvar("g_TeamIcon_Allies", "cardicon_prestige10");
setDvar("g_TeamIcon_MyAllies", "cardicon_prestige10");
setDvar("g_TeamIcon_EnemyAllies", "cardicon_prestige10");
setDvar("g_TeamName_Axis", "^4Quick^0Scopers");
setDvar("g_TeamIcon_Axis", "cardicon_prestige10_02");
setDvar("g_TeamIcon_MyAxis", "cardicon_prestige10_02");
setDvar("g_TeamIcon_EnemyAxis", "cardicon_prestige10_02");
}


Fix what I marked Smile
Also put it in [*Code] [*/Code] In spoiler it creates unneeded spaces and will cause all sorts of syntax problems.

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo