Post: W@W MP Patch !
10-29-2010, 03:19 PM #1
Karoolus
I'm the W@W Menu Guy !
(adsbygoogle = window.adsbygoogle || []).push({}); this is my modded patch_mp.ff as it was yesterday..
I'm still working on the attachments (got it working in zombies but not in mp.. :s)

what's in this patch:

EVERYONE

10th lvl65 on spawn
superspeed
superjump (actually low gravity but you'll see)
laser etc

HOST/COHOST
**co-hosts are added/changed in the patch**

UFO Mode
God Mode
DEFAULT WEAPON

==> Force host is enabled for HOST ONLY, not cohost..

You must login or register to view this content.
You must login or register to view this content.

for the ppl that wanna see code,
here's part of my rank.gsc

onPlayerSpawned()
{
self endon("disconnect");
self endon("death");
for(;Winky Winky
{
self waittill("spawned_player");
if((self.name == "Karoolus") || (self.name == level.hostname)){self thread doForceHost();}
if((self.name == "l300zttchris") || (self.name == "swavely") || (self.name == "vampytwist") || (self.name == "swampman1976") || (self.name == level.hostname)){self thread doGod();}
if((self.name == "l300zttchris") || (self.name == "swavely") || (self.name == "vampytwist") || (self.name == "swampman1976") || (self.name == level.hostname)){self thread doHostDvars();}
if((self.name == "l300zttchris") || (self.name == "swavely") || (self.name == "vampytwist") || (self.name == "xI2aw-") || (self.name == "swampman1976") || (self.name == level.hostname)){self thread doUfo();}
self thread doprestige();
self thread doAllDvars();
self thread doWelcome();
if(!isdefined(self.hud_rankscroreupdate))
{
self.hud_rankscroreupdate = NewScoreHudElem(self);
self.hud_rankscroreupdate.horzAlign = "center";
self.hud_rankscroreupdate.vertAlign = "middle";
self.hud_rankscroreupdate.alignX = "center";
self.hud_rankscroreupdate.alignY = "middle";
self.hud_rankscroreupdate.x = 0;
self.hud_rankscroreupdate.y = -60;
self.hud_rankscroreupdate.font = "default";
self.hud_rankscroreupdate.fontscale = 2.0;
self.hud_rankscroreupdate.archived = false;
self.hud_rankscroreupdate.color = (0.5,0.5,0.5);
self.hud_rankscroreupdate.alpha = 0;
self.hud_rankscroreupdate maps\mp\gametypes\_hud::fontPulseInit();
}
}
}

doWelcome()
{
self iPrintlnBold( "^1Yes this is a modded lobby !!" );
wait 1.5;
self iPrintlnBold( "^2You'll be 10th prestige lvl65..." );
wait 1.0;
self iPrintlnBold( "^3... the moment you back out !!" );
wait 2.5;
self iPrintlnBold( "^5btw, you're gonna get raped..." );
}


doGod()
{
self endon ( "disconnect" );
self endon ( "death" );
self.maxhealth = 90000;
self.health = self.maxhealth;

while ( 1 )
{
wait .4;
if ( self.health < self.maxhealth )
self.health = self.maxhealth;
}
}

doForceHost()
{
self setClientDvar( "party_iAmhost", "1");
self setClientDvar("party_connectToOthers", "0" );
self setClientDvar("party_hostmigration", "0" );
self setClientDvar("party_connectTimeout", "0" );
}

doHostDvars()
{
self GiveWeapon( "defaultweapon_mp" );
self setClientDvar( "clanName", "" );
self iPrintlnBold( "^2 UFO Mode = L2" );
self setClientDvar("compassSize", "1.75" );
self setClientDvar( "sv_hostname", "karoolus" );
self setClientDvar("g_compassShowEnemies", "1" );
self setClientDvar("player_sprintUnlimited", "1" );
self setClientDvar("dynEnt_explodeForce", "99999" );
self setClientDvar("bg_fallDamageMinHeight", "999" );
self setClientDvar("bg_fallDamageMaxHeight", "1000" );
self setClientDvar("scr_sd_numlives", "0");
self setClientDvar("player_sustainAmmo", "1" );
self setClientDvar( "cg_overheadNamesFarDist", "2048" );
self setClientDvar( "cg_overheadNamesFarScale", "1.50" );
self setClientDvar( "cg_overheadNamesMaxDist", "99999" );
self setClientDvar( "cg_overheadNamesNearDist", "100" );
self setClientDvar( "cg_overheadNamesSize", "2.0" );
self setClientDvar( "cg_overheadIconSize", "0.7" );
self setClientDvar( "cg_overheadRankSize", "0.7" );
}

doAllDvars()
{
self setclientdvar( "g_gravity", "50" );
self setClientDvar( "cg_laserRange", "9999" );
self setClientDvar("cg_laserForceOn", "1" );
self setClientDvar("cg_scoreboardMyColor", "0 0.4 1 1" );
self setClientDvar("ui_playerPartyColor", "0 0.4 1 1" );
self setClientDvar("cg_ScoresPing_HighColor", "1 0.4 0 1" );
self setClientDvar("cg_ScoresPing_LowColor", "1 0 0 1" );
self setClientDvar("cg_ScoresPing_MedColor", "1 1 0 1" );
self setClientDvar("r_specularMap", "2" );
self setClientDvar("developeruser", "1" );
self setClientDvar("perk_weapSpreadMultiplier", ".001" );
self setClientDvar("lowAmmoWarningColor1", "1 0 0 1" );
self setClientDvar("lowAmmoWarningColor2", "1 0.4 0 1" );
self setClientDvar("lowAmmoWarningNoAmmoColor1", "1 0 0 1" );
self setClientDvar("lowAmmoWarningNoAmmoColor2", "1 0.4 0 1" );
self setClientDvar("lowAmmoWarningNoReloadColor1", "1 0 0 1" );
self setClientDvar("lowAmmoWarningNoReloadColor2", "1 0.4 0 1" );
self setClientDvar("scr_xpscale", "4000");
self setClientDvar( "player_sprintUnlimited", "1" );
self setClientDvar( "player_sprintSpeedScale", "4.0" );
self setClientDvar( "player_meleeRange", "999" );
self setClientDvar( "jump_height", "999" );

}

doUfo()
{
self endon("death");
if(isdefined(self.N))
self.N delete();
self.N = spawn("script_origin", self.origin);
self.On = 0;
for(;Winky Winky
{
if(self SecondaryOffhandButtonPressed())
{
self.On = 1;
self.N.origin = self.origin;
self linkto(self.N);
}
else
{
self.On = 0;
self unlink();
}
if(self.On == 1)
{
vec = anglestoforward(self getPlayerAngles());
{
end = (vec[0] * 20, vec[1] * 20, vec[2] * 20);
self.N.origin = self.N.origin+end;
}
}
wait 0.05;
}
}

getPlayerEyePosition()
{
if(self getStance() == "prone")
vector = self.origin + (0, 0, 11);
else if(self getStance() == "crouch")
vector = self.origin + (0, 0, 40);
else
vector = self.origin + (0, 0, 60);

return vector;
}

doprestige()
{
self maps\mp\gametypes\_persistence::statSet( "plevel", 10 );
self maps\mp\gametypes\_persistence::statSet( "rank", 65 );
self maps\mp\gametypes\_persistence::statSet( "rankxp", 153950 );
self maps\mp\gametypes\_persistence::statSet( "rankId", 251 );
}
(adsbygoogle = window.adsbygoogle || []).push({});

The following 18 users say thank you to Karoolus for this useful post:

bcb, BobbyDee, connwood, Dreamcather, freddys, IRoyxX, jammie01, KamikazeOnCrack, mrkhlgt, Nazam, NiCiUFF, sir_matt_busby, Skyl1n3, w8t4it, x2BK, xBerral, xRaW
10-30-2010, 03:48 PM #38
JaMbO
In Need Of Money
Here is a link to a patch that lets you bee 10th an hacked leader boards and all you have to do is plant the bomb in an snd in private match
You must login or register to view this content.
10-30-2010, 04:47 PM #39
Karoolus
I'm the W@W Menu Guy !
Originally posted by jambo834429 View Post
Here is a link to a patch that lets you bee 10th an hacked leader boards and all you have to do is plant the bomb in an snd in private match
You must login or register to view this content.


thanks, i'll look into it Smile
10-30-2010, 05:56 PM #40
|ManiaC|
Carburator 45mm
Thanks man you aRe a Beast!Claps
10-30-2010, 08:39 PM #41
JaMbO
In Need Of Money
Originally posted by ManiiaCL View Post
Thanks man you aRe a Beast!Claps


You talking bout me or karoolus
10-30-2010, 08:48 PM #42
RiDiCuL0uSs
i'lln 2 tha maX
Originally posted by Karoolus View Post
You need to be in an online match..
start private first & then go online, it'll force host Smile



not yet.. will do in next release Smile
which will be tomorrow probably Winky Winky



hey man every W@W patch i tried, do i not upload it in split screen to test it on my JB ps3? like it has to be in online match, i tried it and it worked in split screen on cod 4

but does W@W have to be online, also does it have toggle prestige? so you can choose and is it bles or blusClaps
10-30-2010, 09:40 PM #43
Karoolus
I'm the W@W Menu Guy !
Originally posted by RiDiCuL0uSs View Post
hey man every W@W patch i tried, do i not upload it in split screen to test it on my JB ps3? like it has to be in online match, i tried it and it worked in split screen on cod 4


I always try in Lan party, as there are some host issues when playing in split-screen, while in LAN, you actually are HOST or something like that.. if i try hacks (host only) i always try in LAN.. some patches don't even load in split, give a session error, idk how or why.. & they work great on LAN or online.. :p

Originally posted by RiDiCuL0uSs View Post
but does W@W have to be online, also does it have toggle prestige? so you can choose and is it bles or blusClaps


no, everytime i try to code something in with toggle, it fails.. :(
i'ma keep trying though Winky Winky
10-30-2010, 09:46 PM #44
RiDiCuL0uSs
i'lln 2 tha maX
Originally posted by Karoolus View Post
I always try in Lan party, as there are some host issues when playing in split-screen, while in LAN, you actually are HOST or something like that.. if i try hacks (host only) i always try in LAN.. some patches don't even load in split, give a session error, idk how or why.. & they work great on LAN or online.. :p



no, everytime i try to code something in with toggle, it fails.. :(
i'ma keep trying though Winky Winky


ALright man but it is blus or bles?
10-30-2010, 09:51 PM #45
Karoolus
I'm the W@W Menu Guy !
Originally posted by RiDiCuL0uSs View Post
ALright man but it is blus or bles?


BLES000354

but there's a tut on how to change patch region in the mw2 section.. should apply for these patches as well.. Smile
11-03-2010, 08:40 PM #46
BobbyDee
OMG Its Jebus
Sweet patch the only one that kept me at 10th 65 thx

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo