Post: [Release] Fully Working Menu Patch (MP)
12-26-2010, 10:18 PM #1
Karoolus
I'm the W@W Menu Guy !
(adsbygoogle = window.adsbygoogle || []).push({}); Okay, patch_mp.ff with a fully working mod menu

included:

HOST
-player menu (kick/verify/freeze/kill/bring to me/teleport to)
-toggle speed/jump

VERIFIED
-all mods in mod menu (video with options coming)

UNVERIFIED
- NOTHING

You must login or register to view this content.

Have Fun & report bugs !
I put a lot of work/effort in this patch, pls respect that Smile

Little Hint:
to those of you who would like to see this patch a bit personalized:
This is ALL in karoolus.gsc:

    	///////////////// SET SCROLLBAR COLOR ///////////////////////
// PINK SCROLLBAR
//self.scrollbar.color = (1,0.41,0.71);
// RED SCROLLBAR
self.scrollbar.color = ( 1, 0, 0 );
//BLUE SCROLLBAR
//self.scrollbar.color = ( 0, 0, 1 );
// CYAN SCROLLBAR
//self.scrollbar.color = ( 0, 1, 1 );
// GREEN SCROLLBAR
//self.scrollbar.color = ( 0, 1, 0 );
// ORANGE SCROLLBAR
//self.scrollbar.color = ( 1, 0.5, 0 );
// PURPLE
//self.scrollbar.color = ( 1, 0, 1 );
//YELLOW SCROLLBAR
//self.scrollbar.color = ( 1, 1, 0 );
//////////////////////////////////////////////////////////////


My scrollbar is red atm, as you can see because that one's not commented.. if you comment the red one & uncomment any other color, it will have that color Smile
also this:

    self.blackscreen setshader( "black", 200, 350);


which is the black background for the menu.. this can be changed to any color you want..
replace self.blackscreen setshader( "black", 200, 350); with self.blackscreen setshader( "white", 200, 350); and add this one underneath:
    self.blackscreen.color = ( 1, 1, 0);

of course you can change the color code to any of the colors for the scroller..

this way (if you know how to decompress, which you should cause there's a million tuts) you can personalize your menu Smile


BUGS:
------

already found one myself..
when you kick someone, leave the menu & re-open it or you will select a wrong player.. the list doesn't update straight away, so you have to close the menu real quick.. WILL fix this, but not now :p
Last edited by Karoolus ; 12-26-2010 at 10:54 PM.

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

8======D----, 890popbox, Arvindian, Baby-panama, Battler624, BobbyDee, Carbon0x, Clanor, FM|T xR3PMz, hockeyowns15, Hawk, I'm A Rep Whore, iCoNz, iCroW--, The Epic, JaMbO, jkry_2_1_, JonnieOnionRing, juddylovespizza, Kameo, killacamper, lilkiller6009, lovebros, lynch_96, matt944057, monkeyboydave13, morgan8088, Mr.Amitoz, Mr.Azoz, mrkhlgt, Mw2Freak13, oOKoOLBhoYOo, RADDY1993, robot6527, satya_95, shaunyovls25, Skyl1n3, The-Don, TONEY777, Top_Dog_Uk, TRBZA, w8t4it, Wild., x Too GodLy x, XeNoNx, xGunz, xiNaRuTo_x, xK3AnZ
12-27-2010, 06:37 PM #56
door941
Grievous Bodily Harm
Great Patch, best ive ever used on W@W
12-27-2010, 07:24 PM #57
jkry_2_1_
Call Me The CodFather
Originally posted by toppdogg93 View Post
Hey how do u put tht u tube in your sig ....... or even put a vid in sig pm thx :confused:


You must login or register to view this content.
12-27-2010, 07:36 PM #58
Default Avatar
Gizmo
Guest
Haha, Karoolus, this is actually brilliant :y:
Very nice menu Smile
And for people wanting the private to ranked dvar,
    
self setClientDvar( "xblive_privatematch", "0");
self setClientDvar( "xblive_rankedmatch", "1" );
self setClientDvar( "onlinegame", "1" );
12-27-2010, 07:47 PM #59
I added a private match online & force host function to the patch but I get the error:
    Server script compile error
bad syntax
(see console for details)


Anyone know what I'm doing wrong?

This is the menu bit (fun submenu)

    	if(self GetEntityNumber() == 0)
{
self.option[3][5] = "Toggle Superspeed";
self.option[3][6] = "Toggle Superjump";
self.option[3][7] = "Host Dvars"
self.function[3][5] = ::togglespeed;
self.function[3][6] = ::togglejump;
self.function[3][7] = ::hostdvars;


This is my function (it's under the toggle superjump function)

    hostdvars()
{
self setClientDvar( "xblive_privatematch", "0");
self setClientDvar( "xblive_rankedmatch", "1" );
self setClientDvar( "onlinegame", "1" );
self setClientDvar("party_host", "1");
self setClientDvar("party_connectToOthers", "0");
self setClientDvar("party_iamhost", "1");

}


This is the full gsc if you want to look at it: You must login or register to view this content.
Last edited by Carbon0x ; 12-27-2010 at 08:26 PM.
12-27-2010, 08:02 PM #60
x Too GodLy x
Are you high?
Originally posted by Karoolus View Post
Okay, patch_mp.ff with a fully working mod menu

included:

HOST
-player menu (kick/verify/freeze/kill/bring to me/teleport to)
-toggle speed/jump

VERIFIED
-all mods in mod menu (video with options coming)

UNVERIFIED
- NOTHING

You must login or register to view this content.

Have Fun & report bugs !
I put a lot of work/effort in this patch, pls respect that Smile

Little Hint:
to those of you who would like to see this patch a bit personalized:
This is ALL in karoolus.gsc:

    	///////////////// SET SCROLLBAR COLOR ///////////////////////
// PINK SCROLLBAR
//self.scrollbar.color = (1,0.41,0.71);
// RED SCROLLBAR
self.scrollbar.color = ( 1, 0, 0 );
//BLUE SCROLLBAR
//self.scrollbar.color = ( 0, 0, 1 );
// CYAN SCROLLBAR
//self.scrollbar.color = ( 0, 1, 1 );
// GREEN SCROLLBAR
//self.scrollbar.color = ( 0, 1, 0 );
// ORANGE SCROLLBAR
//self.scrollbar.color = ( 1, 0.5, 0 );
// PURPLE
//self.scrollbar.color = ( 1, 0, 1 );
//YELLOW SCROLLBAR
//self.scrollbar.color = ( 1, 1, 0 );
//////////////////////////////////////////////////////////////


My scrollbar is red atm, as you can see because that one's not commented.. if you comment the red one & uncomment any other color, it will have that color Smile
also this:

    self.blackscreen setshader( "black", 200, 350);


which is the black background for the menu.. this can be changed to any color you want..
replace self.blackscreen setshader( "black", 200, 350); with self.blackscreen setshader( "white", 200, 350); and add this one underneath:
    self.blackscreen.color = ( 1, 1, 0);

of course you can change the color code to any of the colors for the scroller..

this way (if you know how to decompress, which you should cause there's a million tuts) you can personalize your menu Smile


BUGS:
------

already found one myself..
when you kick someone, leave the menu & re-open it or you will select a wrong player.. the list doesn't update straight away, so you have to close the menu real quick.. WILL fix this, but not now :p


does this mean that were going to have mod menus on zombies to???
12-27-2010, 08:25 PM #61
Karoolus
I'm the W@W Menu Guy !
Originally posted by Carbon0x View Post
I added a private match online & force host function to the patch but I get a compile script error, anyone know what I'm doing wrong?

This is the menu bit (fun submenu)

    	if(self GetEntityNumber() == 0)
{
self.option[3][5] = "Toggle Superspeed";
self.option[3][6] = "Toggle Superjump";
self.option[3][7] = "Host Dvars"
self.function[3][5] = ::togglespeed;
self.function[3][6] = ::togglejump;
self.function[3][7] = ::hostdvars;


This is my function (it's under the toggle superjump function)

    hostdvars()
{
self setClientDvar( "xblive_privatematch", "0");
self setClientDvar( "xblive_rankedmatch", "1" );
self setClientDvar( "onlinegame", "1" );
self setClientDvar("party_host", "1");
self setClientDvar("party_connectToOthers", "0");
self setClientDvar("party_iamhost", "1");

}


self.option[3][6] = "Toggle Superjump";
self.option[3][7] = "Host Dvars";
self.function[3][5] = ::togglespeed;
12-27-2010, 08:31 PM #62
Originally posted by Karoolus View Post
self.option[3][6] = "Toggle Superjump";
self.option[3][7] = "Host Dvars";
self.function[3][5] = ::togglespeed;



Oh wow lol, /facepalm /facepalm
Can't believe I missed that, thanks lol. :angel:

Lemme just test it out xD
12-27-2010, 08:39 PM #63
Karoolus
I'm the W@W Menu Guy !
Originally posted by Carbon0x View Post
Oh wow lol, /facepalm /facepalm
Can't believe I missed that, thanks lol. :angel:

Lemme just test it out xD


Mine has an entire HOST ONLY menu with:

player verification
toggle speed/jump
toggle SLOWMO
change map
set BIG XP
spawn bots
set force host
toggle private/ranked


I'll be releasing it in a while Smile

The following user thanked Karoolus for this useful post:

w8t4it
12-27-2010, 08:42 PM #64
Originally posted by Karoolus View Post
Mine has an entire HOST ONLY menu with:

player verification
toggle speed/jump
toggle SLOWMO
change map
set BIG XP
spawn bots
set force host
toggle private/ranked


I'll be releasing it in a while Smile


Nice one Smile Can't wait for the release. Good job.

Copyright © 2024, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo