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, 07:31 PM #29
Gee
*****
Originally posted by .Pluto View Post
alright i'll make a video


How are you using the code?

You have to put it into a patch which uses a game mode menu, e.g my patch, e.g a derek trotter patch.

That standalone code will not work without a menu structure.
05-04-2011, 07:31 PM #30
.Pluto
Splicer
Originally posted by Gee View Post
How are you using the code?

You have to put it into a patch which uses a game mode menu, e.g my patch, e.g a derek trotter patch.

That standalone code will not work without a menu structure.

it will work in mossy v9
05-04-2011, 07:33 PM #31
Originally posted by .Pluto View Post
100% code.
The code works I personally use it on my 360 lol.

The following user thanked Charmander. for this useful post:

.Pluto
05-04-2011, 07:33 PM #32
Gee
*****
Originally posted by .Pluto View Post
it will work in mossy v9


Send me a patch and I'll put it in for you. Assuming it already has a gamemode menu, else I'm not spending the time to add one -.-

The following user thanked Gee for this useful post:

.Pluto
05-04-2011, 07:37 PM #33
.Pluto
Splicer
Originally posted by Gee View Post
Send me a patch and I'll put it in for you. Assuming it already has a gamemode menu, else I'm not spending the time to add one -.-


later my pc internet wont work :derp:

---------- Post added at 03:37 PM ---------- Previous post was at 03:36 PM ----------

Originally posted by SirBadAss View Post
The code works I personally use it on my 360 lol.


will u record my 1.11 patch?
05-04-2011, 07:40 PM #34
Gee
*****
Originally posted by .Pluto View Post
later my pc internet wont work :derp:

---------- Post added at 03:37 PM ---------- Previous post was at 03:36 PM ----------



will u record my 1.11 patch?


For your 50k vBux and credit in the comment of the video I'll record for you in 1080p Winky Winky
05-04-2011, 07:59 PM #35
.Pluto
Splicer
Originally posted by Gee View Post
For your 50k vBux and credit in the comment of the video I'll record for you in 1080p Winky Winky


deal.. ill send it

---------- Post added at 03:56 PM ---------- Previous post was at 03:54 PM ----------

Originally posted by Gee View Post
For your 50k vBux and credit in the comment of the video I'll record for you in 1080p Winky Winky


i send it =D patch is here download update 8 You must login or register to view this content.
and 50k more for recording my 1.12?

---------- Post added at 03:59 PM ---------- Previous post was at 03:56 PM ----------

Originally posted by xCristian View Post
Very nice bro + Rep but.. can you put a download? lol


i'll make a patch for this if u want?
05-04-2011, 08:28 PM #36
Gee
*****
Originally posted by .Pluto View Post
deal.. ill send it

---------- Post added at 03:56 PM ---------- Previous post was at 03:54 PM ----------



i send it =D patch is here download update 8 You must login or register to view this content.
and 50k more for recording my 1.12?

---------- Post added at 03:59 PM ---------- Previous post was at 03:56 PM ----------



i'll make a patch for this if u want?


I'm confused.

You've sent me 50 vBux, not 50,000.

Also if you're putting my quickscope mod in my patch, I want credit in it.

EDIT: I don't have time to record the patch, it doesn't matter.
Don't bother sending me the vBux :p
05-04-2011, 08:53 PM #37
Shebang
Bring back the smileys!
Mods delete, post messed up (said my message was too long, but posted anyway.)

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo