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-31-2010, 03:39 PM #11
Karoolus
I'm the W@W Menu Guy !
Originally posted by 95 View Post
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

Originally posted by VIP View Post
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.


the thing is, if i do self setClientDvar( "player_sustainAmmo", "1" ); EVERYONE in the lobby gets infinite ammo, which is NOT what i want :p
it's what i did with ammo, it's a script, which has to be executed by a player in order for it to do anything.. & through the menu i can decide who has the ability to execute this function.. get it ?

Originally posted by noctwrnyA View Post
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


betties look the same, but when they go bang, they go BANG :p spawn some bots in FFA & make them run into one Happy
the radius & damage is maxed out, so they shouldn't even have to be close to a betty to die :p

& force host: idk but i'm running out of dvars to force host :p


Originally posted by Alfa
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


how can you tell if you don't even know me :p
i'm a quick learner & i'm not afraid to do some research in order to achieve something, which (imo) is the best way to learn something Smile

Originally posted by NiCiUFF View Post
Have you fixed the bug that you can't unlock anything? Or it's just a my problem?


i tried on several account & i have everything on all accounts..
every single challenge is completed, i have all attachments & perks etc..
12-31-2010, 03:56 PM #12
NiCiUFF
NGU Premium Member
Originally posted by Karoolus View Post
the thing is, if i do self setClientDvar( "player_sustainAmmo", "1" ); EVERYONE in the lobby gets infinite ammo, which is NOT what i want :p
it's what i did with ammo, it's a script, which has to be executed by a player in order for it to do anything.. & through the menu i can decide who has the ability to execute this function.. get it ?



betties look the same, but when they go bang, they go BANG :p spawn some bots in FFA & make them run into one Happy
the radius & damage is maxed out, so they shouldn't even have to be close to a betty to die :p

& force host: idk but i'm running out of dvars to force host :p




how can you tell if you don't even know me :p
i'm a quick learner & i'm not afraid to do some research in order to achieve something, which (imo) is the best way to learn something Smile



i tried on several account & i have everything on all accounts..
every single challenge is completed, i have all attachments & perks etc..


But, do you do the CL in private match? Because there I can't unlock anything, I can unlock attachments sometimes in public...
12-31-2010, 04:01 PM #13
Don't you need to use the dear "setsunfromdvars" or something like that for it to work?
12-31-2010, 04:03 PM #14
Karoolus
I'm the W@W Menu Guy !
Originally posted by FourzerotwoFAILS View Post
Don't you need to use the dear "setsunfromdvars" or something like that for it to work?


what ? :p
    self setClientDvar( "r_lightTweakSunLight", "4" );
self setClientDvar( "r_lightTweakSunColor", "0 0 1 1" );


that's the dvars i use to change the sun color, none other :p
12-31-2010, 04:05 PM #15
Originally posted by Karoolus View Post
what ? :p
    self setClientDvar( "r_lightTweakSunLight", "4" );
self setClientDvar( "r_lightTweakSunColor", "0 0 1 1" );


that's the dvars i use to change the sun color, none other :p


lol maybe thats just for cod4
12-31-2010, 04:55 PM #16
Default Avatar
Gizmo
Guest
Originally posted by Karoolus View Post
the thing is, if i do self setClientDvar( "player_sustainAmmo", "1" ); EVERYONE in the lobby gets infinite ammo, which is NOT what i want :p
it's what i did with ammo, it's a script, which has to be executed by a player in order for it to do anything.. & through the menu i can decide who has the ability to execute this function.. get it ?



betties look the same, but when they go bang, they go BANG :p spawn some bots in FFA & make them run into one Happy
the radius & damage is maxed out, so they shouldn't even have to be close to a betty to die :p

& force host: idk but i'm running out of dvars to force host :p




how can you tell if you don't even know me :p
i'm a quick learner & i'm not afraid to do some research in order to achieve something, which (imo) is the best way to learn something Smile



i tried on several account & i have everything on all accounts..
every single challenge is completed, i have all attachments & perks etc..


Ahhh yes, I get you Smile
Also karoolus, would it possible to end invisible on Remove access,
So its like,

self endon unvip , or whatever your remove access thread is called ?
12-31-2010, 05:39 PM #17
Karoolus
I'm the W@W Menu Guy !
Originally posted by 95 View Post
Ahhh yes, I get you Smile
Also karoolus, would it possible to end invisible on Remove access,
So its like,

self endon unvip , or whatever your remove access thread is called ?


just add player show(); to unverify :p

The following user thanked Karoolus for this useful post:

12-31-2010, 05:40 PM #18
Default Avatar
Gizmo
Guest
Originally posted by Karoolus View Post
just add player show(); to unverify :p


Brilliant , thanks for the help Smile
I plus repped you as my thanks has ran out :p
12-31-2010, 07:09 PM #19
Alfa
Banned
Originally posted by Karoolus View Post
how can you tell if you don't even know me :p
i'm a quick learner & i'm not afraid to do some research in order to achieve something, which (imo) is the best way to learn something Smile


well you have been releasing normal patches with binds for a while then you made a breakthrough with mod menu's and your still going and i said i didnt know you had this in you cuz before all your released shit i didnt see you doing anything like it at all on the xbox scene or pc scene(though you might of :p)


also when i said you have done a lot in the W@W hacking scene i meant you were the W@W hacking scene :carling:

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo