
Posts
2,789
Respect
230Add +1
Forum Rank
King of the Zombies
Primary Group
Community Daedra
Login Issues
Forgot password?Activate Issues
Account activation email not received? Wrong account activation email used?Other Problems?
Contact Support - Help Center Get help on the UGX Discord. Join it now!
<player> maps\_zombiemode_score::add_to_player_score(roundOff(randomIntRange(10, 2000), 10, 5)); int = randomIntRange(10, 4000);
int = roundOff(int, 10, 5)
maps\_zombiemode_score::add_to_player_score(int);roundOff(int, mod, mid)
{
if(!isDefined(int) || !isDefined(mod) || !isDefined(mid))
return undefined;
while(int % mod != 0)
{
iprintln(int);
if(int % mod >= mid)
int++;
else
int--;
}
return int;
}