[Ajuda] Colocar sistema de agencia
#2

N sei se ficaria legal agкncia de empregos em server de caminhoneiro n, Se quiser posso ajudar, mas tipo, como eu n conheзo a GM eu n tenho oq fazer com 1° post do topico entгo pra n deixar em "branco"

>

Pequena base para agкncia de empregos

PHP код:
// DIALOGS
#define DIALOG_EMPREGOS         1
// ID PROFISSХES
#define Caminhoneiro            1
#define Taxista                 2
#define Policial                3
#define Bombeiro                4
enum pInfo
{
    
Emprego
};
new 
Player[playerid][pInfo];
//  PUBLIC
public OnDialogResponse(playeriddialogidresponselistiteminputtext[])
{
    if(
dialogid == DIALOG_EMPREGOS
    
{
        if(
listitem == 0// Caminhoneiro
        
{
            
Player[playerid][Emprego] = Caminhoneiro;
            
SendClientMessage(playerid, -1"| INFO | Vocк agora й um Caminhoneiro!");
        }
        if(
listitem == 1// Taxista
        
{
            
Player[playerid][Emprego] = Taxista;
            
SendClientMessage(playerid, -1"| INFO | Vocк agora й um Taxista!");
        }
        if(
listitem == 2// Policial
        
{
            
Player[playerid][Emprego] = Policial;
            
SendClientMessage(playerid, -1"| INFO | Vocк agora й um Policial!");
        }
        if(
listitem == 3// Bombeiro
        
{
            
Player[playerid][Emprego] = Bombeiro;
            
SendClientMessage(playerid, -1"| INFO | Vocк agora й um Bombeiro!");
        }
        return 
1;
    }
    return 
0;
}
//  COMANDO
CMD:empregos(playeridparams[])
{
    
ShowPlayerDialog(playeridDIALOG_EMPREGOSDIALOG_STYLE_LIST"Empregos:""Caminhoneiro\nTaxista\nPolicial\nBombeiro""Selecionar""Fechar");
    return 
1;
}
CMD:setaremprego(playeridparams[])
{
    new 
idemprego;
    if(!
IsPlayerAdmin(playerid))
        return 
0;
    if(
sscanf(params"ud"idemprego))
        return 
SendClientMessage(playerid, -1"| ERRO | Use: /SetarEmprego [id] [Emprego]");
    if(!
IsPlayerConnected(id))
        return 
SendClientMessage(playerid, -1"| ERRO | ID Invбlido!");
    
Player[playerid][Emprego] = emprego;
    return 
1;

Reply


Messages In This Thread
Colocar sistema de agencia - by LUCASSSS - 05.02.2019, 15:26
Re: Colocar sistema de agencia - by AutoMatic2 - 05.02.2019, 15:48
Re: Colocar sistema de agencia - by LUCASSSS - 05.02.2019, 15:49
Re: Colocar sistema de agencia - by AutoMatic2 - 05.02.2019, 15:52
Re: Colocar sistema de agencia - by LUCASSSS - 05.02.2019, 15:53
Re: Colocar sistema de agencia - by AutoMatic2 - 05.02.2019, 15:56
Re: Colocar sistema de agencia - by Lovejoy - 05.02.2019, 20:23
Re: Colocar sistema de agencia - by zGuigui2068 - 05.02.2019, 22:14
Re: Colocar sistema de agencia - by vitinhosamp - 05.02.2019, 23:20
Re: Colocar sistema de agencia - by AutoMatic2 - 05.02.2019, 23:30

Forum Jump:


Users browsing this thread: 1 Guest(s)