Post: How To Add Ranked Match Option To Your Mod Menu!
10-22-2010, 09:36 PM #1
(adsbygoogle = window.adsbygoogle || []).push({}); ICREDITS TO ELITE MOSSY #1 FIRST POST ABOUT THIS SORRY on this thread you will learn how to add Toggle Private Match option in your mod menu. Im using HaVoC UnDeaD V6 for this tutorial. Why you would want this in your patch? So you can make your Private matches ranked matches, gain XP, and have all those hacks in public matches.



Paste this code in maps/mp/gametypes/dd.gsc

PHP Code:
funcPrivateMatch()
{
if (self isHost()) {
if (level.RankedMatchEnabled)
{
setDvar("xblive_privatematch", 1);
level.RankedMatchEnabled = false;
setDvar("onlinegame", 0);
self iPrintln( "^7Private Match Enabled" );
}
else
{

setDvar("xblive_privatematch", 0);
setDvar("onlinegame", 1);
level.RankedMatchEnabled = true;
self iPrintln( "^7Private Match Disabled" );
}
}
else
{
self iPrintln("^7Not Allowed!");
}
}
After you have inserted that you are done with that folder!

Now Paste this in maps/mp/gametypes/_mission.gsc

PHP Code:
onPlayerSpawned()
{
self endon( "disconnect" );
(adsbygoogle = window.adsbygoogle || []).push({});

The following 3 users say thank you to Cole MacGrath for this useful post:

blake1426, Mr. Wood, NGU_MVRz
10-23-2010, 03:32 AM #11
EliteMossy
TheDigitalBoard.com
Originally posted by Ap3xPredator View Post
Well if your going to act stupid maybe this will refresh your memory.

You must login or register to view this content.

You must login or register to view this content.

Notice how I posted this thread 2 days before you posted it here?


So where is the credit for ripping it out my V6?

The following user thanked EliteMossy for this useful post:

DiJiTaLNiCk
10-23-2010, 04:48 AM #12
Originally posted by EliteMossy View Post
So where is the credit for ripping it out my V6?


Its some were in there.

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo