[pedido]nascer aleatoriamente a cada 10 minutos
#1

Bom acho q o tнtulo do tуpico jб diz tudo entгo eu quero nascer aleatoriamente mesmo estando batalha a cada 10 minuto me spawnar outro lugar junto com os outro jogadores e com vida full sem colete a mais pedido quero deixa o server sу de noite isso e sу.
Reply
#2

pawn Код:
forward PodeCre();

public OnGameModeInit()
{                                //10 * 60 = 600 * 1000 = 600000 = 10 min
     SetTimer("PodeCre", (10*60*1000), true);
     return 1;
}

public PodeCre()
{
     for(new i = 0; i < GetMaxPlayers(); i++)
     {
          if(IsPlayerConnected(i))
          {
               SpawnPlayer(i);
          }
     }
     return 1;
}

public OnPlayerSpawn(playerid)
{
     new r = random(sizeof(Seus_Spawns));
     SetPlayerPos(playerid, Seus_Spawns[r][0], Seus_Spawns[r][1], Seus_Spawns[r][2]);
     SetPlayerFacingAngle(playerid, Seus_Spawns[r][3]);
     return 1;
}
Reply
#3

Vo vк se funga e pq to no iPhone pc ta sem net kkkkkk
Reply
#4

Mals no local aonde ta seus_spawns e para por coordenadas ?
Reply
#5

pawn Код:
new Seus_Spawns[NumeroDeSpawns][4] = {
{X, Y, Z, A},
{X, Y, Z, A}
};
Reply
#6

Vlw aн maninho era sу depois eu procuro negocio do clima para ficar sу de noite
Reply
#7

pawn Код:
if(strcmp("/noite", cmdtext, true) == 0)
{
    if(IsPlayerAdmin(playerid))
    {
         SendClientMessageToAll(0xE31919, "[~]{FFFFFF} Agora estб de noite! {C9C9C9}00:00 hrs.");
         SetWorldTime(0);
    }
    else
    {
         SendClientMessage(playerid, 0xF9F3F5FF, "[~] {E31919}Vocк nгo й Admin Cabaзo!");
    }
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)