[Pedido] Sistema GPS
#6

Quote:
Originally Posted by [BOPE]Seu._.Madruga
Посмотреть сообщение
Apenas optimizando o script do colega acima.
PHP код:
#define DIALOG_GPS 1000
enum pChecks {
    
prefeitura,
    
escola,
    
bar
}
new 
PlayerCheck[MAX_PLAYERS][pChecks];
public 
OnPlayerEnterCheckpoint(playerid)
{
    if(
IsPlayerInRangeOfPoint(playerid5.0CordxCordyCordz)) // Coordenada do checkpoint que vai ficar em frente a prefeitura
    
{
        
DisablePlayerCheckpoint(PlayerCheck[playerid][prefeitura]);
        
SendClientMessage(playerid0xFF0000FF"Vocк chegou no seu destino");
    }
    if(
IsPlayerInRangeOfPoint(playerid5.0CordxCordyCordz)) // Coordenada do checkpoint que vai ficar em frente a escola
    
{
        
DisablePlayerCheckpoint(PlayerCheck[playerid][escola]);
        
SendClientMessage(playerid0xFF0000FF"Vocк chegou no seu destino");
    }
    if(
IsPlayerInRangeOfPoint(playerid5.0CordxCordyCordz)) // Coordenada do checkpoint que vai ficar em frente o bar
    
{
        
DisablePlayerCheckpoint(PlayerCheck[playerid][bar]);
        
SendClientMessage(playerid0xFF0000FF"Vocк chegou no seu destino");
    }
    return 
1;
}
public 
OnDialogResponse(playeriddialogidresponselistiteminputtext[])
{
    if(
dialogid == DIALOG_GPS)
    {
        if(
response)
        {
            switch(
listitem)
            {
                case 
0PlayerCheck[playerid][prefeitura] = SetPlayerCheckpoint(playeridCordxCordyCordz5.0);
                case 
1PlayerCheck[playerid][escola] = SetPlayerCheckpoint(playeridCordxCordyCordz5.0);
                case 
2PlayerCheck[playerid][bar] = SetPlayerCheckpoint(playeridCordxCordyCordz5.0);
            }
            
SendClientMessage(playerid0xFF0000FF"Seu destino foi marcado no seu Radar");
        }
    }
    return 
1;
}
CMD:gps(playerid)
{
    
ShowPlayerDialog(playeridDIALOG_GPSDIALOG_STYLE_LIST"GPS""Prefeitura\nEscola\nBar""Selecionar""Cancelar");
    return 
1;

DisablePlayerCheckpoint nгo funciona dessa forma.
https://sampwiki.blast.hk/wiki/DisablePlayerCheckpoint
Reply


Messages In This Thread
Sistema GPS - by MarcoAurelio - 18.09.2015, 22:21
Re: Sistema GPS - by SepZ - 18.09.2015, 23:04
Re: Sistema GPS - by [BOPE]Seu._.Madruga - 18.09.2015, 23:29
Re: Sistema GPS - by MarcoAurelio - 19.09.2015, 16:07
Re: Sistema GPS - by IgorLuiz - 19.09.2015, 18:11
Re: Sistema GPS - by zPain - 19.09.2015, 18:43
Re: Sistema GPS - by MarcoAurelio - 19.09.2015, 19:15
Re: Sistema GPS - by IgorLuiz - 19.09.2015, 20:01

Forum Jump:


Users browsing this thread: 1 Guest(s)