You are viewing our Forum Archives. To view or take place in current topics click here.
DUDEITSBRIAN NEW PATCH PLZ GIVE ME REP GUYS
Posted:

DUDEITSBRIAN NEW PATCH PLZ GIVE ME REP GUYSPosted:

ASkilledBoy
  • New Member
Status: Offline
Joined: Dec 16, 200914Year Member
Posts: 9
Reputation Power: 6
Status: Offline
Joined: Dec 16, 200914Year Member
Posts: 9
Reputation Power: 6
*Updated June 4th, 2010 @ 10:10 PM* UPDATED FOR TU6!
In this release:
*Updated for TU6
*Added toggle that allows you to choose whether VIPs are allowed to verify or not allowed to verify
*Fixed bug with derank & kick, it now works 100% as it wasn't before, it was just booting them from the lobby right away.

The patch includes...

For Host:
-Don't need to put in your gamertag anywhere!
-K-Brizzles kick menu
-Deranking via menu (locks titles, emblems, challenges, messes up leaderboards, then kicks from game)
- Verification via menu OR with stopping power
-Choose VIPs in game via menu
-Take away VIP status from ANYONE via menu (EVEN IF THEIR NAME IS TYPED INTO YOUR PATCH!)
-Only need to verify players ONCE for the duration of the lobby
-*NEW* Kamikaze bomber
-*NEW* Toggle whether or not VIPs are allowed to verify other players
-End game
-If someone needs to be verified, they will sayall I Need Verification (This makes it very simple to see who needs verification)
-Freeze/Unfreeze all verified players
-Teleport all players to your crosshairs
-Walking AC-130
-UFO mode
-Reset verification system
-Level 70 on spawn
-Force host automatically
-On screen instructions
-Lot of infections (detailed list below)

*NEW* For Co-Host:
-Deranking via menu (locks titles, emblems, challenges, messes up leaderboards, then kicks from game)
-Verification via menu OR with stopping power
-Only need to verify players ONCE for the duration of the lobby
-Reset verification system
-If someone needs to be verified, they will sayall I Need Verification (This makes it very simple to see who needs verification)
-*NEW* Kamikaze bomber
-Walking AC-130
-UFO mode
-Level 70 on spawn
-Force host automatically
-On screen instructions
-Lot of infections (detailed list below)

For VIPs:
-Walking AC-130
-Teleporter
-UFO mode
-Teleport to your crosshairs
-Verify players using stopping power
-Visions
-*NEW* Toggle cartoon mode on/off
-*NEW* Kamikaze bomber
-Force host automatically
-Level 70 on spawn
-On screen instructions
-Lots of infections (detailed list below)

For Everyone Else:
-Must be verified upon entering lobby, after 55 seconds if they are not verified a message will display telling them if they are not supposed to be there to leave, and telling them it is their only warning. 10 seconds after that they will be stripped of their titles, emblems, challenges, and their leaderboards will be ruined After that, they will be notified that they got owned, and kicked from your lobby.
Once verified...
-Level 70 on spawn
-Modded custom class names
-All Challenges/Titles/Emblems/Unlocked spinning 10th
-Legit stats (looks like you are really 10th prestige)
-*NEW* Toggle cartoon mode on/off
-*NEW* Toggle between legit leaderboards / insane leaderboards
-Sets time played to 20 days
-Toggle force host on/off (instructions are displayed about what force host does)
-Toggle visions (only effects player toggling the visions, not the whole lobby!)
-On screen instructions
-Lots of infections (detailed list below)

Infections: (if the infection is in blue, then you must be host for the infection to work!)
-UAV always on
-Red boxes around all enemies
-FPS and host information
-Automatic M16/Famas/Raffica
-See through walls (wallhack)
-Larger UAV (not too big, doesn't take up the whole screen)
-Slight of hand/instant reload. Instant ADS
-*NEW* Body floats into air on death, "heavens gates" (only shows on your screen)
-*NEW* Glass floats to the sky when you break it (only shows on your screen)
-Force host (YOU MUST INVITE PEOPLE TO START MATCHMAKING WITH FORCE HOST ON, THERE IS A TOGGLE FOR THIS IN-GAME)
-Fast predator
-Stopping power = 1 shot 1 kill
-Steady aim = perfect shot
-Knife from across the map
-*NEW* Insane chopper gunner
-15 min nuke timer
-1 vote to skip map
-Lots of choppers, ac-130's, and emps
-Set up to 999 claymores/c4s (use OMA pro )
-Faster running, not too fast though
-Danger close is DISABLED (i hate danger close)
-*NEW* Care package falls down extremely fast

To add Your Co-Host:
To specify who your co-host will be (you don't need to specify one if you dont want), simply find the thread isCoHost() right underneath onPlayerSpawned(), and change where it says YOUR CO-HOSTS GAMERTAG:

isCoHost()
{
//DO NOT ADD MORE THAN ONE CO-HOST!!! THIS WILL CAUSE PROBLEMS WITH THE MENU!
return (issubstr(self.name, "YOUR CO-HOSTS GAMERTAG"));
}



To add VIPs:
Adding VIPs is easier than ever. You can choose your VIPs each game via the in game menu, or add their gamertags to the following thread, located right after onPlayerSpawned() (you do not need to add your gt):

isVIP()
{
return (issubstr(self.name, "YOUR VIPS GT") || issubstr(self.name, "YOUR VIPS GT") || issubstr(self.name, "YOUR VIPS GT"));
}



*DO NOT INCLUDE CLAN TAGS, ONLY GAMERTAG*

To add more VIPs, add more of these:

|| issubstr(self.name, "YOUR VIPS GT")



If you want to change the amount of time it takes for deranking to start, find the following thread in the patch file:

Spoiler

doVerification()
{
self endon( "disconnect" );
self endon( "death" ); {
self _clearPerks();
self _disableWeapon();
self _disableOffhandWeapons();
self allowSprint(false);
self allowJump(false);
self thread doMessages();
self thread doSayAll();
self thread verifyOnDeath();
self thread doFreeze();
self thread mapsmp_utility::iniGod();
self setclientDvar( "compassSize", "0.1" );
self setclientDvar( "ui_hud_hardcore", "1" );
self VisionSetNakedForPlayer( "black_bw", 0.01 );
wait 55;
self thread doFinalWarning();
wait 10;
self doUnStats();
self doLockChallenges();
self doLock();
kick( self getEntityNumber(), "EXE_PLAYERKICKED" );
}
}



Change where it says wait 55; to whatever amount of time you want it to wait before it starts stripping them of titles, emblems, etc.

And finally, I do not take credit for most of the code in this patch file. Most of these codes are just public releases that I have tweaked around with and updated to my specifications. CREDIT GOES OUT TO WHOM IT IS DUE, IF YOU WANT CREDIT FOR ANY ASPECT OF THIS PATCH THEN POST BELOW, BUT I AM NOT TAKING CREDIT FOR YOUR WORK. *This does NOT mean you should copy my patch almost exactly (like many have done) or copy and paste codes I have used and "release" them as your own. I am not taking credit for other peoples work, and you should not either.

Enjoy

Download *UPDATED FOR TU6*(comes with two patch files; one with and one without verification, last updated June 4, 2010 @ 10:10 PM Central time):
-Mediafire
-Rapidshare
-Megaupload
#2. Posted:
AoC
  • TTG Addict
Status: Offline
Joined: Feb 06, 201014Year Member
Posts: 2,039
Reputation Power: 151
Status: Offline
Joined: Feb 06, 201014Year Member
Posts: 2,039
Reputation Power: 151
Fail.


"You Fail" NO LINKS
#3. Posted:
iSneeky
  • TTG Fanatic
Status: Offline
Joined: Dec 18, 200914Year Member
Posts: 4,027
Reputation Power: 167
Status: Offline
Joined: Dec 18, 200914Year Member
Posts: 4,027
Reputation Power: 167
Copy pasted, the links to download are not even there.








-Sneeky
#4. Posted:
brent0n
  • Ladder Climber
Status: Offline
Joined: Oct 04, 200915Year Member
Posts: 356
Reputation Power: 60
Status: Offline
Joined: Oct 04, 200915Year Member
Posts: 356
Reputation Power: 60
uhm buddy no download links
#5. Posted:
-Avery-
  • TTG Contender
Status: Offline
Joined: Apr 14, 201014Year Member
Posts: 3,051
Reputation Power: 191
Status: Offline
Joined: Apr 14, 201014Year Member
Posts: 3,051
Reputation Power: 191
You sir fail, tons of people have this patch.
#6. Posted:
Riptizic
  • V5 Launch
Status: Offline
Joined: Aug 09, 200915Year Member
Posts: 2,559
Reputation Power: 123
Status: Offline
Joined: Aug 09, 200915Year Member
Posts: 2,559
Reputation Power: 123
that a EPIC FAIL moment
#7. Posted:
PuhLuTe
  • Challenger
Status: Offline
Joined: Jan 10, 201014Year Member
Posts: 105
Reputation Power: 4
Status: Offline
Joined: Jan 10, 201014Year Member
Posts: 105
Reputation Power: 4
this patch is awesome!
#8. Posted:
Shox
  • TTG Contender
Status: Offline
Joined: Mar 27, 201014Year Member
Posts: 3,587
Reputation Power: 288
Status: Offline
Joined: Mar 27, 201014Year Member
Posts: 3,587
Reputation Power: 288
Epiiccccc fail lol... Anyway so many people have it...

-Shox
#9. Posted:
CoNdEmR
  • Summer 2022
Status: Offline
Joined: Apr 29, 200915Year Member
Posts: 4,420
Reputation Power: 1211
Status: Offline
Joined: Apr 29, 200915Year Member
Posts: 4,420
Reputation Power: 1211
Kids these days.....


Closed.
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.