[PEDIDO] Apenas 2 Codigos
#4

Adicione isso:
pawn Код:
SetWorldTime(12);
Em OnGameModeInit, assim quando o servidor ser iniciado, ele vai iniciar no horбrio 12:00 (Manhг).

Para transformar o tempo para todos os jogadores, e o comando ser somente para administradores, use:
pawn Код:
if(strcmp(cmdtext, "/dia", true) == 0)
{
    new Nome[MAX_PLAYER_NAME], stg[80];
    GetPlayerName(playerid, Nome, sizeof(Nome));
    if(IsPlayerAdmin(playerid))
    {
        format(stg, sizeof(stg), "O administrador %s alterou o tempo para 12:00", Nome);
        SendClientMessageToAll(-1, stg);
        SetWorldTime(12);
    }
    else
    {
        SendClientMessage(playerid, -1, "* Vocк nгo й administrador.");
        return 1;
    }
}
Reply


Messages In This Thread
[PEDIDO] Apenas 2 Codigos - by Hashtag - 16.11.2011, 23:02
Re: [PEDIDO] Apenas 2 Codigos - by Cristhian - 16.11.2011, 23:44
Re: [PEDIDO] Apenas 2 Codigos - by Hashtag - 16.11.2011, 23:48
Re: [PEDIDO] Apenas 2 Codigos - by Bruno[]Lima - 16.11.2011, 23:56
Re: [PEDIDO] Apenas 2 Codigos - by Cristhian - 17.11.2011, 00:06
Re: [PEDIDO] Apenas 2 Codigos - by Hashtag - 17.11.2011, 00:10
Re: [PEDIDO] Apenas 2 Codigos - by Jason` - 17.11.2011, 00:12

Forum Jump:


Users browsing this thread: 1 Guest(s)