[ajuda] spawn...
#3

se presizar ta ai o registro

PHP код:
#include <a_samp>
#include <Dini>
new Logado[MAX_PLAYERS];
#define COLOR_BRANCO 0xFFFFFFFF
#define COLOR_DORADO 0xFFFF00FF
#define especialcolor 0xFFFF43
public OnPlayerConnect(playerid)
{
    
SetPlayerInterior(playerid,1);
    new 
log[35];
    new 
regstring[130];
    
format(log,sizeof log,"Contas/%s.ini",Nome(playerid));
    if(!
dini_Exists(log))
    {
        
SendClientMessage(playerid,0x00FF00FF,"Seja bem vindo pela primeira vez. Por favor digite uma senha para se registrar.");
        
format(regstring,sizeof(regstring),"{FFE4E1}%s, Vocк ainda nгo й registrado no BRRLV.\nPor favor digite uma senha para se registrar.",Nome(playerid));
        
ShowPlayerDialog(playerid,1,DIALOG_STYLE_INPUT,"{87CEEB}Bem vindo ao BRRLV.Registra-se",regstring,"Registrar","Sair");
        return 
1;
    }
    
SendClientMessage(playerid,0x00FFFFFF,"Digite sua senha para poder logar.");
    
format(regstring,sizeof(regstring),"{FAF0E6}%s, Vocк ja tem uma  conta no BRRLV.\nDigite sua senha para poder logar.",Nome(playerid));
    
ShowPlayerDialog(playerid,2,DIALOG_STYLE_INPUT,"{F5F5F5}Bem vindo ao BRRLV.Logue-se",regstring,"Logar","Sair");
    return 
1;
}
public 
OnPlayerRequestClass(playeridclassid)
{
     if(
Logado[playerid] == 0)
     {
         
SendClientMessage(playerid,0xFFFF45,"Antes de Spawnar logue-se.");
         return 
0;
     }
     return 
1;
}
public 
OnDialogResponse(playeriddialogidresponselistiteminputtext[])
{
    new 
arq[50];
    
format(arq,sizeof arq,"Contas/%s.ini",Nome(playerid));
    if(
dialogid == 1)
    {
        if(
response == 1)
        {
            new 
regstring[130];
            
dini_Create(arq);
            
SendClientMessage(playerid,0xFFFF47,"Sua conta foi registrada com sucesso!!!Agora so Logar!!!.");
            
format(regstring,sizeof(regstring),"{FAF0E6}Parabйns %s, vocк registrou sua conta.\nDigite sua senha para poder logar.",Nome(playerid));
            
ShowPlayerDialog(playerid,2,DIALOG_STYLE_INPUT,"{F5F5F5}Logar",regstring,"Logar","Sair");
            
dini_Set(arq,"Senha",inputtext);
            
dini_IntSet(arq,"Score",GetPlayerScore(playerid));
            
dini_IntSet(arq,"Dinheiro",GetPlayerMoney(playerid));
            return 
1;
        }
        
SendClientMessage(playerid,0xFFFF00,"Vocк usou a opзгo 'Sair' e foi kickado pelo servidor!!!nao repita isso!!!");
        
Kick(playerid);
    }
    else if(
dialogid == 2)
    {
        if(
response == 1)
        {
            if(!
strcmp(dini_Get(arq,"Senha"), inputtext))
            {
                
//Aqui coloca-se as variбveis do texto, como Level, dinheiro,etc.
               
                
Logado[playerid] = 1;
                
GivePlayerMoney(playeriddini_Int(arq,"Dinheiro"));
                
SetPlayerScore(playeriddini_Int(arq,"Score"));
                
                return 
1;
            }
            
SendClientMessage(playerid,0xFFFF88,"Vocк digitou a senha incorretamente. Tente Novamente.");
            
ShowPlayerDialog(playerid,2,DIALOG_STYLE_INPUT,"{F5F5F5}Logar","Digite a senha corretamente.","Logar","Sair");
            return 
1;
        }
        
SendClientMessage(playerid,0xFFFF00,"Vocк usou a opзгo 'Sair' e foi kickado pelo servidor!");
        
Kick(playerid);
    }
    return 
1;
}
public 
OnPlayerDisconnect(playeridreason)
{
    new 
arq[30];
    
format(arq,sizeof arq,"Contas/%s.ini",Nome(playerid));
    
dini_IntSet(arq,"Score",GetPlayerScore(playerid));
    
dini_IntSet(arq,"Dinheiro",GetPlayerMoney(playerid));
    return 
1;
}
stock Nome(playerid)
{
    new 
nome[MAX_PLAYER_NAME];
    
GetPlayerName(playeridnomesizeof(nome));
    return 
nome;

Reply


Messages In This Thread
[ajuda] spawn... - by gabriel_matador - 04.12.2011, 17:07
Re: [ajuda] spawn... - by .Unnamed - 04.12.2011, 17:24
Re: [ajuda] spawn... - by gabriel_matador - 04.12.2011, 17:45
Re: [ajuda] spawn... - by .Unnamed - 04.12.2011, 17:56
Re: [ajuda] spawn... - by gabriel_matador - 04.12.2011, 22:37
Re: [ajuda] spawn... - by dPlaYer_ - 04.12.2011, 22:42
Re: [ajuda] spawn... - by gabriel_matador - 04.12.2011, 22:55

Forum Jump:


Users browsing this thread: 1 Guest(s)