I've been trying to give experience to players when the round start. I'm trying to do this with a loop, however the server is crashing upon execute. I'm wondering what's wrong with this:
Code:
public RoundStart() {
for (new i=0; i < 33; i++){
if(!is_user_bot(i)) {
RoundExperience(i)
}
}
}
public RoundExperience(id) {
Give_Xp(id, 20)
}