[Off] Estou tentando aprender :\
#29

Outros jeitos bacana de aproveitar a "enum", й utilizando floats e booleanas...
um simples exemplo:

pawn Code:
#include < a_samp >
/*
    Um Enum й uma forma de criar vбrias variбveis, em uma espйcie de grupo
    Fechado, e economizando espaзo no Gamemode.
*/


/* Exemplos de Uso */

enum pInfo
{
    Skin,      Time,     Classe,
    Logado,    Senha,    Matou,
    Morreu,    Dinheiro, bool:Registrado = false,
    Float:X = 0.0    Float:Y = 1.1,  Float:Z = 2.2 //   <----- Ultima variбvel sem [ , ] no final. */
};

new PlayerInfo[MAX_PLAYERS][pInfo];

public OnPlayerConnect(playerid)
{
    PlayerInfo[playerid][Registrado] = true; // <--- Quer dizer que o player conectar vai setar a variavel a true (Verdadeiro);
    SetPlayerPos(playerid,PlayerInfo[playerid][X],PlayerInfo[playerid][Y],PlayerInfo[playerid][Z]); // <--- Quer dizer que o player vai ser setado a Posiзгo (0.0,1.1,2.2);
    //funзхes...
    return 1;
}
Abraзos.

#knife

Ninja
Reply


Messages In This Thread
Estou tentando aprender :\ - by Lucas-Fc - 23.11.2012, 14:55
Re: Estou tentando aprender :\ - by Q.I - 23.11.2012, 14:58
Re: Estou tentando aprender :\ - by BielCOP - 23.11.2012, 14:59
Re: Estou tentando aprender :\ - by Lucas-Fc - 23.11.2012, 15:02
Re: Estou tentando aprender :\ - by Q.I - 23.11.2012, 15:03
Re: Estou tentando aprender :\ - by BielCOP - 23.11.2012, 15:05
Re: Estou tentando aprender :\ - by Q.I - 23.11.2012, 15:08
Re: Estou tentando aprender :\ - by Lucas-Fc - 23.11.2012, 15:12
Re: Estou tentando aprender :\ - by Maklister - 23.11.2012, 15:18
Re: Estou tentando aprender :\ - by Lucas-Fc - 23.11.2012, 15:20
Re: Estou tentando aprender :\ - by Abravanel - 23.11.2012, 15:21
Re: Estou tentando aprender :\ - by Sky™ - 23.11.2012, 15:21
Re: Estou tentando aprender :\ - by paulor - 23.11.2012, 15:24
Re: Estou tentando aprender :\ - by Lucas-Fc - 23.11.2012, 15:24
Re: Estou tentando aprender :\ - by Maklister - 23.11.2012, 15:25
Re: Estou tentando aprender :\ - by [FeK]Knife - 23.11.2012, 15:28
Re: Estou tentando aprender :\ - by Lucas-Fc - 23.11.2012, 15:29
Re: Estou tentando aprender :\ - by [FeK]Knife - 23.11.2012, 15:33
Re: Estou tentando aprender :\ - by Maklister - 23.11.2012, 15:35
Re: Estou tentando aprender :\ - by Lucas-Fc - 23.11.2012, 15:37
Re: Estou tentando aprender :\ - by Maklister - 23.11.2012, 15:38
Re: Estou tentando aprender :\ - by Lucas-Fc - 23.11.2012, 15:41
Re: Estou tentando aprender :\ - by [FeK]Knife - 23.11.2012, 15:43
Re: Estou tentando aprender :\ - by Maklister - 23.11.2012, 15:50
Re: Estou tentando aprender :\ - by paulor - 23.11.2012, 15:57
Re: Estou tentando aprender :\ - by BielCOP - 23.11.2012, 16:00
Re: Estou tentando aprender :\ - by [FeK]Knife - 23.11.2012, 16:03
Re: Estou tentando aprender :\ - by paulor - 23.11.2012, 16:21
Re: Estou tentando aprender :\ - by AmericanStyle'™ - 23.11.2012, 16:43
Re: Estou tentando aprender :\ - by Maklister - 23.11.2012, 17:05
Re: Estou tentando aprender :\ - by Lucas-Fc - 23.11.2012, 19:35
Re: Estou tentando aprender :\ - by Lucas-Fc - 23.11.2012, 23:47
Re: Estou tentando aprender :\ - by Dolby - 23.11.2012, 23:48
Re: Estou tentando aprender :\ - by Lucas-Fc - 23.11.2012, 23:50
Re: Estou tentando aprender :\ - by Dolby - 24.11.2012, 00:16
Re: Estou tentando aprender :\ - by tonisantolia - 24.11.2012, 00:52
Re: Estou tentando aprender :\ - by Jason` - 24.11.2012, 01:22

Forum Jump:


Users browsing this thread: 4 Guest(s)