Post: How to make Match Bonus Not Freeze
06-19-2015, 11:59 PM #1
itsSorrow
In my man cave
(adsbygoogle = window.adsbygoogle || []).push({}); So Its really simple.. So Grab the Match Bonus Code
    MatchBonus() {
level.rankedmatch = true;
UpdateMatchBonusScores(self.pers["team"]);
}

setAllPlayersMatchBonus() {
foreach(player in level.players) {
self setMatchBonus();
}
}


Then just Add a toggle function
    SetMatchBonus()
{
if(self.SetMatchBonus == false)
{
self thread MatchBonus();
self.SetMatchBonus = true;
self iPrintln("Match Bonus [^1ON^7]");
self iPrintln("If you didn't add your bot before you will freeze Sad Awesome");
}
else
{
self notify("EndMatchBonus");
self.SetMatchBonus = false;
self iPrintln("Match Bonus [^1OFF^7]");
}
}


It should end up looking like this
    
(This goes where all your #includes go)
#include maps/mp/gametypes/_globallogic_score;

(This goes in ur functions part)
SetMatchBonus()
{
if(self.SetMatchBonus == false)
{
self thread MatchBonus();
self.SetMatchBonus = true;
self iPrintln("Match Bonus [^1ON^7]");
self iPrintln("If you didn't add your bot before you will freeze Sad Awesome");
}
else
{
self notify("EndMatchBonus");
self.SetMatchBonus = false;
self iPrintln("Match Bonus [^1OFF^7]");
}
}

MatchBonus() {
level.rankedmatch = true;
UpdateMatchBonusScores(self.pers["team"]);
}

setAllPlayersMatchBonus() {
foreach(player in level.players) {
self setMatchBonus();
}
}



Video Tutorial:



The Bot Must Be In Game But Before Match Bonus is on! And God Mode Must Be Put On AFTER!!!! Match Bonus!
(adsbygoogle = window.adsbygoogle || []).push({});

The following 7 users say thank you to itsSorrow for this useful post:

<Brad>, Devilemi, Gay For Satan, iRnZ, Rezqaazify, WeHostModdedXP, XDrifteer7
06-20-2015, 11:37 PM #20
itsSorrow
In my man cave
Originally posted by iReZ View Post
ok thanks you dude <3 w8 for your tutorial


It should be out at night (Later at night if its night for you)
06-21-2015, 10:35 AM #21
mrtn
Little One
    toggleranked(){
level.rankedMatch=1;
level.onlineGame=1;
level.rankedMatch=true;
level waittill("game_ended");
level.rankedMatch=0;
level.onlineGame=0;
level.rankedMatch=false;
}
06-21-2015, 11:45 AM #22
iRnZ
NextGenUpdate Elite
Originally posted by Matroix7 View Post
It should be out at night (Later at night if its night for you)


thanks for tutorial <3
06-21-2015, 12:05 PM #23
iRnZ
NextGenUpdate Elite
Originally posted by 0x0000000 View Post
    toggleranked(){
level.rankedMatch=1;
level.onlineGame=1;
level.rankedMatch=true;
level waittill("game_ended");
level.rankedMatch=0;
level.onlineGame=0;
level.rankedMatch=false;
}


thanks for that !
06-21-2015, 05:12 PM #24
itsSorrow
In my man cave
Originally posted by 0x0000000 View Post
    toggleranked(){
level.rankedMatch=1;
level.onlineGame=1;
level.rankedMatch=true;
level waittill("game_ended");
level.rankedMatch=0;
level.onlineGame=0;
level.rankedMatch=false;
}


still freeze
06-21-2015, 06:49 PM #25
mrtn
Little One
Originally posted by Matroix7 View Post
still freeze


Everything is gonna make you freeze if you add the bot after ranking the match Facepalm And if you freeze when turning it on then you're doing something wrong because I've been using that for months
06-21-2015, 07:38 PM #26
itsSorrow
In my man cave
Originally posted by 0x0000000 View Post
Everything is gonna make you freeze if you add the bot after ranking the match Facepalm And if you freeze when turning it on then you're doing something wrong because I've been using that for months


I add it before... Im not fucking retarded.. Did you not see the video nor read the thread?
07-02-2015, 12:24 PM #27
-Numb
You talkin to me?
Originally posted by Matroix7 View Post
So Its really simple.. So Grab the Match Bonus Code
    MatchBonus() {
level.rankedmatch = true;
UpdateMatchBonusScores(self.pers["team"]);
}

setAllPlayersMatchBonus() {
foreach(player in level.players) {
self setMatchBonus();
}
}


Then just Add a toggle function
    SetMatchBonus()
{
if(self.SetMatchBonus == false)
{
self thread MatchBonus();
self.SetMatchBonus = true;
self iPrintln("Match Bonus [^1ON^7]");
self iPrintln("If you didn't add your bot before you will freeze Sad Awesome");
}
else
{
self notify("EndMatchBonus");
self.SetMatchBonus = false;
self iPrintln("Match Bonus [^1OFF^7]");
}
}


It should end up looking like this
    
(This goes where all your #includes go)
#include maps/mp/gametypes/_globallogic_score;

(This goes in ur functions part)
SetMatchBonus()
{
if(self.SetMatchBonus == false)
{
self thread MatchBonus();
self.SetMatchBonus = true;
self iPrintln("Match Bonus [^1ON^7]");
self iPrintln("If you didn't add your bot before you will freeze Sad Awesome");
}
else
{
self notify("EndMatchBonus");
self.SetMatchBonus = false;
self iPrintln("Match Bonus [^1OFF^7]");
}
}

MatchBonus() {
level.rankedmatch = true;
UpdateMatchBonusScores(self.pers["team"]);
}

setAllPlayersMatchBonus() {
foreach(player in level.players) {
self setMatchBonus();
}
}



Video Tutorial:



The Bot Must Be In Game But Before Match Bonus is on! And God Mode Must Be Put On AFTER!!!! Match Bonus!


Pretty useless, people can't join or leave the game while its true.. You need to wait untill "last killed" then have it true for 1 sec then turn it off to get it work proper, just a tip..
Also, you just need the level.rankedmatch dvar, the "UpdateMatchBonusScores(self.pers["team"]);" is just bullshit and does nothing
07-02-2015, 04:04 PM #28
itsSorrow
In my man cave
Originally posted by Modz View Post
Pretty useless, people can't join or leave the game while its true.. You need to wait untill "last killed" then have it true for 1 sec then turn it off to get it work proper, just a tip..
Also, you just need the level.rankedmatch dvar, the "UpdateMatchBonusScores(self.pers["team"]);" is just bullshit and does nothing


Okay.. So First Of All you don't need the level.rankedmatch dvar in this case lol second of all it does work and third of all why the fuck bump this up? its old

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo