[AJUDA] Ajuda aqui galera Porfavor!
#1

Tipo galera, tava tentando fazer um sistema de gps pro meu server, pra quando o player passar por cima do checkpoint , o checkpoint se destruir , mais nгo ta funcionando , :

pawn Код:
public OnPlayerEnterCheckpoint(playerid)
{
if(checknome == GPS)
{
    DisablePlayerCheckpoint(playerid);            // DisablePlayerCheckpoint nгo ta destruindo ;s
    return 1;
}
Alguйm poderia me ajudar? ;s
Obrigado pela atenзгo
Reply
#2

PHP код:
public OnPlayerCommandText(playeridcmdtext[])
{
    if(
strcmp(cmdtext"/comando"true) == 0)
    {
        
SetPlayerCheckPoint(playeridXYZ8.0);
        
Checkpointativado[playerid] = 1;
        return 
1;
    }
    return 
0;
}
public 
OnPlayerEnterCheckpoint(playerid)
{
    if(
Checkpointativado[playerid] == 1)
    {
        
DisablePlayerCheckpoint(playerid);
        
SendClientMessage(playerid, -1"O checkpoint foi desabilitado !");
        
Checkpointativado[playerid] = 0;
        return 
1;
    }

Ai й so um exemplo ... Se nгo entender, avisa. /\
Reply
#3

Quote:
Originally Posted by Shadoww5
Посмотреть сообщение
PHP код:
public OnPlayerCommandText(playeridcmdtext[])
{
    if(
strcmp(cmdtext"/comando"true) == 0)
    {
        
SetPlayerCheckPoint(playeridXYZ8.0);
        
Checkpointativado[playerid] = 1;
        return 
1;
    }
    return 
0;
}
public 
OnPlayerEnterCheckpoint(playerid)
{
    if(
Checkpointativado[playerid] == 1)
    {
        
DisablePlayerCheckpoint(playerid);
        
SendClientMessage(playerid, -1"O checkpoint foi desabilitado !");
        
Checkpointativado[playerid] = 0;
        return 
1;
    }

Ai й so um exemplo ... Se nгo entender, avisa. /\
Mais o meu comando /gps estб em dialog ;s , vo tentar fazer aqui, obrigado!
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)