01.02.2016, 03:52
Debe haber alguna forma con enums para hacer lo que dices pero se me ocurre de esta forma por ahora
Solo debes tener cuidado que el nivel que tenga el jugador no sea -1 o mayor a 15
Код:
SubirNivel(playerid) { new nivel = Info[playerid][pLevel]; static exp[] = {8, 12, 16, 20, 24, 28, 32, 36, 40, 44, 48, 52, 56, 60, 64}; static string[64]; static temp[4]; string[0] = '\0'; if(Info[playerid][pExp] > exp[nivel]) { strcat(string, "[AVISO]:{FFFFFF} Usa /subirnivel para ser nivel "); valstr(temp, nivel+1); strcat(string, temp); strcat(string, "."); SendClientMessage(playerid, -1, string); } }