Portal SAMP
[Ajuda] Sistema de placa - Versão de Impressão

+- Portal SAMP (https://portalsamp.com)
+-- Fórum: SA-MP (https://portalsamp.com/forumdisplay.php?fid=5)
+--- Fórum: Área de suporte (https://portalsamp.com/forumdisplay.php?fid=6)
+--- Tópico: [Ajuda] Sistema de placa (/showthread.php?tid=2032)



Sistema de placa - Cirilo_Samp - 13/01/2022

Alguém podia minha ajudar?, To fazendo um sistema de placa de veiculo mais não sei fazer para criar um número aleatório meio difícil de se repetir tipo a imagem de baixo 

[Imagem: Placa-Detran-SP.jpg]


RE: Sistema de placa - Dr Editor - 13/01/2022

Um modelo funcional para gerar as placas.
Pra verificar se alguma placa já existe terá que fazer esta verificação junto ao seu sistema de salvamento.

Código PHP:
stock GerarPlaca(placa[])
{
    new 
letras[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    new 
numeros[] = "0123456789";
    new 
rndChar[2];
    
    for(new 
08++)
    {
        if(
3)
        {
            new 
rndCharN random(strlen(letras));
            
strcat(rndChar[0], letras[rndCharN], 2);
        }
        else
        {
            new 
rndCharN random(strlen(numeros));
            
strcat(rndChar[0], numeros[rndCharN], 2);
        }
        
strcat(placarndChar[0], 8);
        
rndChar[0] = '\0';
    }
    
    
/*
        if(!strcmp(placa, variavel_loop_placas_existentes))
        {
            // Placa existe
        }
    */