[Ajuda] quero por id de conta no meu gamemode em DOF2
#4

Se vocк quiser um contador que comeзa do 1, use: http://forum.sa-mp.com/showpost.php?...2&postcount=28

Caso queira que comece do 1000:
PHP код:
stock CreateUniqueID()
{
    
#define UID_File "UniqueID_Count.ini"
    
if(!DOF2_FileExists(UID_File))
    {
        
DOF2_CreateFile(UID_File);
        
DOF2_SetInt(UID_File"Count"1000);
        
DOF2_SaveFile();
    }
    new 
count DOF2_GetInt(UID_File"Count") + 1;
    
DOF2_SetInt(UID_File"Count"count);
    
DOF2_SaveFile();
    return 
count;

A aleatoriedade do ID vai ser dada pela quantidade de jogadores registrados.
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)