[Pedido] Ajuda grand
#1

pessoal preciso de uma ajuda grand ja antes dando umas pesquisada mais nao consegui achar como faz pra mim deixa este comando para vips e admin usa

PHP код:
COMMAND:jetpack(playeridparams[])
{
    
// Send the command to all admins so they can see it
    
SendAdminText(playerid"/jetpack"params);
    
// Check if the player has logged in
    
if (APlayerData[playerid][LoggedIn] == true)
    {
        
// Check if the player's admin-level is at least 3
        
if (APlayerData[playerid][PlayerLevel] >= 2)
        {
            
// Equip the player with a jetpack
            
SetPlayerSpecialAction(playerid2);
        }
        else
            return 
0;
    }
    else
        return 
0;
    
// Let the server know that this was a valid command
    
return 1;

PELO O QUE EU SEI O DE VIP E ASSIM

Код:
	if ( !IsPlayerVIP(playerid)) return SendClientMessage(playerid, Default, "[Erro]{FFFFFF} Vocк nгo й vip.");
MAIS EU QUERO DEIXA PRA ADM E VIP USA
Reply
#2

Bom nгo sei muito sobre pawn mais eu acho que isso da certo pra vips tenta ai !

PHP код:
COMMAND:jetpack(playeridparams[])
{
    if (!
IsPlayerVIP(playerid) == true) { 
    
    
SendAdminText(playerid"/jetpack"params);
    if (
APlayerData[playerid][LoggedIn] == true)
    {
        
// Check if the player's admin-level is at least 3
        
if (APlayerData[playerid][PlayerLevel] >= 2)
        {
            
SetPlayerSpecialAction(playerid2);
        }
        else
            return 
0;
    }
    else
        return 
0;
        
    return 
1;
    }  
}else { 
   
   
SendClientMessage(playerid, -1"[Erro]Vocк nгo й vip.");
  

Reply
#3

Tenta

Код:
COMMAND:jetpack(playerid, params[]) 
{ 
    SendAdminText(playerid, "/jetpack", params); 

    if (APlayerData[playerid][LoggedIn] == true) 
    { 
        if (!IsPlayerVIP(playerid)) || APlayerData[playerid][PlayerLevel] >= 2) 
        { 
            SetPlayerSpecialAction(playerid, 2); 
        } 
        else
        {
         SendClientMessage(playerid, -1, " Vocк nгo й vip e nem ADM.");
         return 1; 
        } 
     }
    return 1; 
}
Reply
#4

Acho que assim fica bom, pois envia o aviso do comando para os admins, logo em seguida verifica se o player й VIP, caso for verdade ele continua na estrutura condicional...



pawn Код:
COMMAND:jetpack(playerid, params[])
{
    // Send the command to all admins so they can see it
    SendAdminText(playerid, "/jetpack", params);

    if (!IsPlayerVIP(playerid))
         return SendClientMessage(playerid, Default, "[Erro]{FFFFFF} Vocк nгo й vip.");

    // Check if the player has logged in
    if (APlayerData[playerid][LoggedIn] == true)
    {
        // Check if the player's admin-level is at least 3
        if (APlayerData[playerid][PlayerLevel] >= 2)
        {
            // Equip the player with a jetpack
            SetPlayerSpecialAction(playerid, 2);
        }
        else
            return 0;
    }
    else
        return 0;

    // Let the server know that this was a valid command
    return 1;
}
Reply
#5

pawn Код:
COMMAND:jetpack(playerid, params[])
{
    SendAdminText(playerid, "/jetpack", params);

    if (APlayerData[playerid][LoggedIn] == true)
    {
        if (IsPlayerVIP(playerid)) || APlayerData[playerid][PlayerLevel] >= 2)
            SetPlayerSpecialAction(playerid, 2);
        else SendClientMessage(playerid, -1, " Vocк nгo й vip.");
    }
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)