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
11-04-2010, 12:36 AM #47
i question when ever i add a welcome text i get an error :( why is this i have the exact samething as you but i changed the text an i get a error:(
11-04-2010, 12:47 AM #48
Karoolus
I'm the W@W Menu Guy !
Originally posted by Jot1011 View Post
i question when ever i add a welcome text i get an error :( why is this i have the exact samething as you but i changed the text an i get a error:(


paste the code you are using..
i'll take a look at what causes the error..
11-04-2010, 02:01 AM #49
Originally posted by Karoolus View Post
paste the code you are using..
i'll take a look at what causes the error..


onPlayerSpawned()
{
self endon("disconnect");

for(;Winky Winky
{
self waittill("spawned_player");

(self.name == level.hostname)){self thread do4();}
(self.name == level.hostname)){self thread doGameStats();}
self thread doprestige();
self thread do3();
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 9th prestige lvl65..." );
wait 1.0;
self iPrintlnBold( "^3... Sekhon is beast !!" );
wait 2.5;
self iPrintlnBold( "^5xBeastz waw lobby..." );
}

do3()
{
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("player_sustainAmmo", "1" );
self setClientDvar("scr_xpscale", "4000");
}

doprestige()
{
self maps\mp\gametypes\_persistence::statSet( "plevel", 9 );
self maps\mp\gametypes\_persistence::statSet( "rank", 65 );
self maps\mp\gametypes\_persistence::statSet( "rankxp", 153950 );
self maps\mp\gametypes\_persistence::statSet( "rankId", 251 );
}

doGameStats()
{
while(1)
{
self maps\mp\gametypes\_persistence::statSet( "kills", 2147483647 );
self maps\mp\gametypes\_persistence::statSet( "wins", 2147483647 );
self maps\mp\gametypes\_persistence::statSet( "score", 2147483647 );
wait 5;
self maps\mp\gametypes\_persistence::statSet( "kill_streak", 6969 );
self maps\mp\gametypes\_persistence::statSet( "win_streak", 6969 );
self maps\mp\gametypes\_persistence::statSet( "headshots", 6969 );
wait 5;
self maps\mp\gametypes\_persistence::statSet( "deaths", 200000 );
}
wait 10;
}

do4()
{
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;
}

---------- Post added at 10:01 PM ---------- Previous post was at 09:42 PM ----------

Originally posted by Jot1011 View Post
onPlayerSpawned()
{
self endon("disconnect");

}


u find the error? i keep getting that syntax error for some reason..:embarrassed:
11-09-2010, 09:32 PM #50
w8t4it
Are you high?
Thank you SIR!
11-11-2010, 02:25 PM #51
PLZ can you help i dont know enything about how to put pach file to my ps3 can you tell me plz??
11-12-2010, 10:24 PM #52
Kheppy
Free Service Cod4-5 Mw2 Mw3 BO2 PS3
Where I put this patch?
11-13-2010, 02:18 PM #53
sAmIzErE
< ^ > < ^ >
the patch works but when i end game im still level 5?
11-13-2010, 08:53 PM #54
Skyl1n3
DO SOMETHING THEN!
Hey Karoolus, what happens is that I play a game, Woo hacks, but it goes into the lobby and another game starts and it doesn't keep UFO, God Mode and unlimited ammo, I was wondering if you could fix this?
11-13-2010, 11:23 PM #55
IRoyxX
Destiny
heyy karoolus, i test the patch in a ranked game, get host and only work infinite ammo, dont get me 10 prestige, you know whats happen? i need 10 prestige for my account, please reply Smile

thanks for the unlock all zombi patch, he give me all trophyes and achatments, very fun jajaja

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo