[Ajuda] Setar Climas em Cidades
#9

Quote:
Originally Posted by FerrariL
Посмотреть сообщение
Veja se isso resolve seu problema mano.
PHP код:
new ClimaCidades[3]; // Armazena o id do clima em cada espaзo do vetor.
//нndice 0 - corresponde a LS
//нndice 1 - corresponde a LV
//нndice 2 - corresponde a SF
public OnGameModeInit()
{
   
SetTimer("MudaClima",1000 60 60,true); 
   return 
1;
}
public 
OnPlayerConnect(playerid)
{
   
SetTimerEx("VerificaCidade"1000true"i"playerid);
   return 
1;
}
forward MudaClima();
public 
MudaClima()
{
  for(new 
0sizeof(ClimaCidades); i++)
   
ClimaCidades[i] = random(31) + 1;
}
forward VerificaCidade(playerid);
public 
VerificaCidade(playerid)
{
   if(
IsPlayerInSF(playerid))
     
SetPlayerWeather(playerid,ClimaCidades[0]);
   else if(
IsPlayerInLV(playerid))
     
SetPlayerWeather(playerid,ClimaCidades[1]);
   else if(
IsPlayerInSF(playerid))
    
SetPlayerWeather(playerid,ClimaCidades[2]);
   else 
    
SetPlayerWeather(playerid,1);
}
IsPlayerInLS(playerid) { 
    new 
Float:xls,Float:yls,Float:zls
    
GetPlayerPos(playerid,xls,yls,zls); 
    if(
xls && yls 0) return 1
    return 
0

IsPlayerInSF(playerid) { 
    new 
Float:xls,Float:yls,Float:zls
    
GetPlayerPos(playerid,xls,yls,zls); 
    if(
xls 0) return 1
    return 
0

IsPlayerInLV(playerid) { 
    new 
Float:xls,Float:yls,Float:zls
    
GetPlayerPos(playerid,xls,yls,zls); 
    if(
xls && yls 0) return 1
    return 
0

Vlws kk, problema resolvido!
Reply


Messages In This Thread
Setar Climas em Cidades - by Poseidon4625 - 04.09.2018, 13:06
Re: Setar Climas em Cidades - by ipsLuan - 04.09.2018, 13:48
Re: Setar Climas em Cidades - by GSantana - 05.09.2018, 22:18
Re: Setar Climas em Cidades - by Poseidon4625 - 05.09.2018, 23:03
Re: Setar Climas em Cidades - by 1sbedx - 05.09.2018, 23:11
Re: Setar Climas em Cidades - by Poseidon4625 - 05.09.2018, 23:15
Re: Setar Climas em Cidades - by Poseidon4625 - 06.09.2018, 01:50
Re: Setar Climas em Cidades - by FerrariL - 06.09.2018, 02:07
Re: Setar Climas em Cidades - by Poseidon4625 - 06.09.2018, 02:45

Forum Jump:


Users browsing this thread: 1 Guest(s)