19.05.2011, 21:29
pawn Код:
public OnGameModeInit()
{
SetTimer("Salario", 3600000, 0x0);
return 1;
}
pawn Код:
forward Salario();
public Salario()
{
SendClientMessage(playerid, Cor, "[Patrгo] Estб aqui teu salбrio!");
for(new i; i<MAX_PLAYERS; i++)
{
if(Profissao[playerid] == PROSTITUTA) return GivePlayerMoney(playerid, 2000);
else if(Profissao[playerid] == BOMBADAOFEDORENTO) return GivePlayerMoney(playerid, 1000);
else if(Profissao[playerid] == HACKER) return GivePlayerMoney(playerid, 500);
else if(Profissao[playerid] == POLICIAL) return GivePlayerMoney(playerid, 5000);
}
return 0x1;
}