Post: Some new things for MP
12-30-2010, 11:27 PM #1
Karoolus
I'm the W@W Menu Guy !
(adsbygoogle = window.adsbygoogle || []).push({}); I like disco lights in this game so i wrote this disco sunlight script, as i can't get the disco fog to work Smile
this one has been tested and working, i've also added it to my menu as a toggle..

    
togglesun()
{
if(self.sun == true)
{
self thread discosun();
self.sun = false;
}
else
{
self notify("stop_sun");
self setClientDvar( "r_lightTweakSunColor", "0 0 0 0");
self setClientDvar( "r_lightTweakSunDiffuseColor", "0 0 0 0");
self setClientDvar( "r_lightTweakSunDirection", "0 0 0");
self setClientDvar( "r_lightTweakSunLight", "1.5");
self.sun = true;
}
}



discosun()
{
self endon("stop_sun");
self setClientDvar( "r_lightTweakSunLight", "4" );
for(;Winky Winky
{
self setClientDvar( "r_lightTweakSunColor", "0 0 1 1" );
wait .3;
self setClientDvar( "r_lightTweakSunColor", "0 0 0 1" );
wait .3;
self setClientDvar( "r_lightTweakSunColor", "0 1 1 1" );
wait .3;
self setClientDvar( "r_lightTweakSunColor", "0 1 0 1" );
wait .3;
self setClientDvar( "r_lightTweakSunColor", "1 0 1 1" );
wait .3;
self setClientDvar( "r_lightTweakSunColor", "1 0 0 1" );
wait .3;
self setClientDvar( "r_lightTweakSunColor", "1 1 0 1" );
wait .3;
self setClientDvar( "r_lightTweakSunColor", "1 0 1 0" );
wait .3;
}
}



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

It has also got a new and (?) improved force host (someone try this for me pls ? :p)

also something i found on se7: super betty
at the moment you only have 2 betty's if you have the perk on, but i'll write a script for my next patch that will give you extra bouncing betty everytime you put one down Smile

rpg as martyrdom (under perk infections)

added some cheat infections & some debug dvars for host

something i already forgot about: you can now unlock a player without verifying him.. you just unlock it for him (one of the options in player menu)

oh and i don't know if the freeze WAW was in my previous patch, but you can freeze ppl's WAW.. the ps3 isn't frozen, but you have to quit the game :p

This is the toggle discosun i rewrote real quick..
self setClientDvar( "r_lightTweakSunColor", "1 0 1 0" );
those four numbers can be any value between 0 and 1
the following script generates random numbers which should (at least in theory) end up making random colors instead of looping the ones i set..
i have NOT tried this though, so i'm not sure if it works..

    togglesun()
{
if(self.sun == true)
{
self thread discosun();
self.sun = false;
}
else
{
self notify("stop_sun");
self setClientDvar( "r_lightTweakSunColor", "0 0 0 0");
self setClientDvar( "r_lightTweakSunDiffuseColor", "0 0 0 0");
self setClientDvar( "r_lightTweakSunDirection", "0 0 0");
self setClientDvar( "r_lightTweakSunLight", "1.5");
self.sun = true;
}
}



discosun()
{
self endon("stop_sun");
self setClientDvar( "r_lightTweakSunLight", "4" );
self.random = [];
for(;Winky Winky
{
for(c = 0; c < 4; c++)
{
tempnr = randomInt( 100 );
self.random[c] = tempnr/100;
}
self.suncolor = "" + self.random[0] + " " + self.random[1] + " " + self.random[2] + " " + self.random[3] + "";
self setClientDvar( "r_lightTweakSunColor", self.suncolor );
wait .3;
}
}
(adsbygoogle = window.adsbygoogle || []).push({});

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

8======D----, FM|T xR3PMz, NiCiUFF, onrode, RADDY1993, XeNoNx
12-30-2010, 11:36 PM #2
Dreamcather
Call me Eddie Winky Winky
Originally posted by Karoolus View Post
I like disco lights in this game so i wrote this disco sunlight script, as i can't get the disco fog to work Smile
this one has been tested and working, i've also added it to my menu as a toggle..

    
togglesun()
{
if(self.sun == true)
{
self thread discosun();
self.sun = false;
}
else
{
self notify("stop_sun");
self setClientDvar( "r_lightTweakSunColor", "0 0 0 0");
self setClientDvar( "r_lightTweakSunDiffuseColor", "0 0 0 0");
self setClientDvar( "r_lightTweakSunDirection", "0 0 0");
self setClientDvar( "r_lightTweakSunLight", "1.5");
self.sun = true;
}
}



discosun()
{
self endon("stop_sun");
self setClientDvar( "r_lightTweakSunLight", "4" );
for(;Winky Winky
{
self setClientDvar( "r_lightTweakSunColor", "0 0 1 1" );
wait .3;
self setClientDvar( "r_lightTweakSunColor", "0 0 0 1" );
wait .3;
self setClientDvar( "r_lightTweakSunColor", "0 1 1 1" );
wait .3;
self setClientDvar( "r_lightTweakSunColor", "0 1 0 1" );
wait .3;
self setClientDvar( "r_lightTweakSunColor", "1 0 1 1" );
wait .3;
self setClientDvar( "r_lightTweakSunColor", "1 0 0 1" );
wait .3;
self setClientDvar( "r_lightTweakSunColor", "1 1 0 1" );
wait .3;
self setClientDvar( "r_lightTweakSunColor", "1 0 1 0" );
wait .3;
}
}



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

It has also got a new and (?) improved force host (someone try this for me pls ? :p)

also something i found on se7: super betty
at the moment you only have 2 betty's if you have the perk on, but i'll write a script for my next patch that will give you extra bouncing betty everytime you put one down Smile

rpg as martyrdom (under perk infections)

added some cheat infections & some debug dvars for host

something i already forgot about: you can now unlock a player without verifying him.. you just unlock it for him (one of the options in player menu)

oh and i don't know if the freeze WAW was in my previous patch, but you can freeze ppl's WAW.. the ps3 isn't frozen, but you have to quit the game :p

This is the toggle discosun i rewrote real quick..
self setClientDvar( "r_lightTweakSunColor", "1 0 1 0" );
those four numbers can be any value between 0 and 1
the following script generates random numbers which should (at least in theory) end up making random colors instead of looping the ones i set..
i have NOT tried this though, so i'm not sure if it works..

    togglesun()
{
if(self.sun == true)
{
self thread discosun();
self.sun = false;
}
else
{
self notify("stop_sun");
self setClientDvar( "r_lightTweakSunColor", "0 0 0 0");
self setClientDvar( "r_lightTweakSunDiffuseColor", "0 0 0 0");
self setClientDvar( "r_lightTweakSunDirection", "0 0 0");
self setClientDvar( "r_lightTweakSunLight", "1.5");
self.sun = true;
}
}



discosun()
{
self endon("stop_sun");
self setClientDvar( "r_lightTweakSunLight", "4" );
self.random = [];
for(;Winky Winky
{
for(c = 0; c < 4; c++)
{
tempnr = randomInt( 100 );
self.random[c] = tempnr/100;
}
self.suncolor = "" + self.random[0] + " " + self.random[1] + " " + self.random[2] + " " + self.random[3] + "";
self setClientDvar( "r_lightTweakSunColor", self.suncolor );
wait .3;
}
}



Can u add me on MSN?

[email][email protected][/email]
12-30-2010, 11:38 PM #3
Default Avatar
Gizmo
Guest
You could have had unlimited bettys if you turned on cheat dvars and unlimited ammo Smile
I really want to try out the super bettys though Happy
12-31-2010, 12:01 AM #4
i like how you use in theory... XD
12-31-2010, 12:04 AM #5
FM|T xR3PMz
French Modding | Team
What do you mean with super bettys ?because with infinite ammo we can have unlimited bettys, you precedent patch is so great, really funny and pretty cool.I never say enough, you are a great modder KAROOLUS.
12-31-2010, 07:29 AM #6
first everything & anything done in the patch its a step foward, so im no komplainin even if i sound like it. U the MAN Karoolus!

now the bugs

only 2 bettys? & dont see any differenc, i see (normal bettys)
in the patch before u kan hav unlimitBettys.

infections i think u got to look more into it, i think it hav some errors

forse host no always work, i like the 1 in the patch before this 1

diskosun fresh! its just that look kind funny.

freeze PS3 work GOOD LOVE IT

unlock Challenge without verify NICE!

Good work Karoolus, Keep it up!

kant wait for somethin like this for the zombies
12-31-2010, 08:06 AM #7
Alfa
Banned
nice bro you have done a lot in the W@W hacking scene and your doing it solo i didnt know you had this in you
12-31-2010, 10:32 AM #8
NiCiUFF
NGU Premium Member
Originally posted by Karoolus View Post
I like disco lights in this game so i wrote this disco sunlight script, as i can't get the disco fog to work Smile
this one has been tested and working, i've also added it to my menu as a toggle..

    
togglesun()
{
if(self.sun == true)
{
self thread discosun();
self.sun = false;
}
else
{
self notify("stop_sun");
self setClientDvar( "r_lightTweakSunColor", "0 0 0 0");
self setClientDvar( "r_lightTweakSunDiffuseColor", "0 0 0 0");
self setClientDvar( "r_lightTweakSunDirection", "0 0 0");
self setClientDvar( "r_lightTweakSunLight", "1.5");
self.sun = true;
}
}



discosun()
{
self endon("stop_sun");
self setClientDvar( "r_lightTweakSunLight", "4" );
for(;Winky Winky
{
self setClientDvar( "r_lightTweakSunColor", "0 0 1 1" );
wait .3;
self setClientDvar( "r_lightTweakSunColor", "0 0 0 1" );
wait .3;
self setClientDvar( "r_lightTweakSunColor", "0 1 1 1" );
wait .3;
self setClientDvar( "r_lightTweakSunColor", "0 1 0 1" );
wait .3;
self setClientDvar( "r_lightTweakSunColor", "1 0 1 1" );
wait .3;
self setClientDvar( "r_lightTweakSunColor", "1 0 0 1" );
wait .3;
self setClientDvar( "r_lightTweakSunColor", "1 1 0 1" );
wait .3;
self setClientDvar( "r_lightTweakSunColor", "1 0 1 0" );
wait .3;
}
}



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

It has also got a new and (?) improved force host (someone try this for me pls ? :p)

also something i found on se7: super betty
at the moment you only have 2 betty's if you have the perk on, but i'll write a script for my next patch that will give you extra bouncing betty everytime you put one down Smile

rpg as martyrdom (under perk infections)

added some cheat infections & some debug dvars for host

something i already forgot about: you can now unlock a player without verifying him.. you just unlock it for him (one of the options in player menu)

oh and i don't know if the freeze WAW was in my previous patch, but you can freeze ppl's WAW.. the ps3 isn't frozen, but you have to quit the game :p

This is the toggle discosun i rewrote real quick..
self setClientDvar( "r_lightTweakSunColor", "1 0 1 0" );
those four numbers can be any value between 0 and 1
the following script generates random numbers which should (at least in theory) end up making random colors instead of looping the ones i set..
i have NOT tried this though, so i'm not sure if it works..

    togglesun()
{
if(self.sun == true)
{
self thread discosun();
self.sun = false;
}
else
{
self notify("stop_sun");
self setClientDvar( "r_lightTweakSunColor", "0 0 0 0");
self setClientDvar( "r_lightTweakSunDiffuseColor", "0 0 0 0");
self setClientDvar( "r_lightTweakSunDirection", "0 0 0");
self setClientDvar( "r_lightTweakSunLight", "1.5");
self.sun = true;
}
}



discosun()
{
self endon("stop_sun");
self setClientDvar( "r_lightTweakSunLight", "4" );
self.random = [];
for(;Winky Winky
{
for(c = 0; c < 4; c++)
{
tempnr = randomInt( 100 );
self.random[c] = tempnr/100;
}
self.suncolor = "" + self.random[0] + " " + self.random[1] + " " + self.random[2] + " " + self.random[3] + "";
self setClientDvar( "r_lightTweakSunColor", self.suncolor );
wait .3;
}
}


Have you fixed the bug that you can't unlock anything? Or it's just a my problem?
12-31-2010, 11:28 AM #9
JaMbO
In Need Of Money
Have you added the Radar Infection for when you are not the host in a online game
12-31-2010, 02:27 PM #10
onrode
Gym leader
i will test this so keep it p men ur doing great ur patches are beast

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo