01.02.2017, 19:50
PHP код:
#define CATEGORIA_A 1
#define CATEGORIA_B 2
//passou no teste da categoria A
HabCategoria[playerid] = CATEGORIA_A;
//passou no teste da categoria B
HabCategoria[playerid] = CATEGORIA_B;
//entrou no carro categoria B com a CNH A
if(HabCategoria[playerid] == CATEGORIA_A)
{
SendClientMessage(playerid, -1, "Vocк nгo tem a CNH categoria B.");
return 1;
}
//entrou no carro categoria B com a CNH B
if(HabCategoria[playerid] == CATEGORIA_B)
{
SendClientMessage(playerid, -1, "Vocк tem a CNH categoria B.");
return 1;
}
Lembrando: vocк precisa especificar o tipo do carro (a categoria de CNH) e depois fazer a verificaзгo da CNH do jogador.