[Ajuda] Variбveis !
#1

Entгo , to tendo algumas dъvidas sobre variбveis . Tava fazendo um sistema de organizaзхes por exemplo , muito ruim .
Por exemplo , eu tinha que criar um Enum para cada organizaзгo , e ficava uma bagunзa sу .

Eu queria fazer algo parecido com isso .


Enum Org
{
Org [ 6 ]
Cargo [ 6 ]
}


Ai ficaria assim , cada valor da Arry corresponderia a uma organizaзгo . tipo isso :

pInfo[playerid][Org][ 0 ] = Civil
pInfo[playerid][Org][ 1 ] = Policia
pInfo[playerid][Org][ 2 ] = Groove


E assim por diante .
A mesma coisa com os cargos :



pInfo[playerid][Cargo][ 0 ] = Recruta
pInfo[playerid][Cargo][ 1 ] = Aviгozinho
pInfo[playerid][Cargo][ 2 ] = Vapor


Mais nгo sei fazer isso galera .
Como se faz algo parecido com isso ?
Reply
#2

PHP код:
enum EnumOrg
{
Org
}
new 
PlayerInfo[MAX_PLAYERS][EnumOrg];
 
PlayerInfo[MAX_PLAYERS][Org] = 1;///Civil
PlayerInfo[MAX_PLAYERS][Org] = 2;///Policia 
PlayerInfo[MAX_PLAYERS][Org] = 3;///Groove 
Reply
#3

PHP код:
Enum EnumOrg
{
Org
}
new 
PlayerInfo[MAX_PLAYERS][EnumOrg];

 
PlayerInfo[playerid][Org] = 1;///Civil
PlayerInfo[playerid][Org] = 2;///Policia 
PlayerInfo[playerid][Org] = 3;///Groove 
Reply
#4

Minha assinatura.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)