Answered How to add rounds to SND game?

The Dark Side

Former Staff Member
Messages
1,007
Reaction score
784
Points
993
There was a post on NGU by Mossywave and it was how to get unlimited rounds, i was a little curious too. How do you add score to a game, or increase the score limit? :grinning:

Much love!

How to do it: Put this in the includes

Code:
#include maps/mp/gametypes/_globallogic_score;

Afterwards, it'll depend in the gametype. So for every gametype this code will be different. But just for example, Team Deathmatch.

Code:
self thread giveTeamScoreForObjective(self.team, 1);

Problem Solved. Close this. :smile:
 
Last edited:

BullyWiiPlaza

Modder
Messages
214
Reaction score
174
Points
818
Solution? You could just set the score limit to unlimited for each round to keep playing another round every time:
Code:
registerScoreLimit(0, 0);
 
Last edited:
Top