16.06.2012, 05:17
This is my PayDay Code:
PHP код:
public PayDay() {
new hour,
minutes,
second;
gettime(hour, minutes, second);
if(minutes == 0) {
for(new i = 0; i<MAX_PLAYERS; i++) {
new exp = playerVariable[i][aLevel]*4+4;
if(playerVariable[aExp] == exp) {
playerVariable[i][aLevel]++;
}
GivePlayerMoney(i, paycheck); // paycheck - Global Variable
}
}
}

