20.06.2011, 12:32
(
Последний раз редактировалось Lucas OutLawz; 20.06.2011 в 13:17.
)
Muito obrigado Falcon e Shadoww5 por terem respondido e me ajudado, agradeзo mesmo!!!
//EDIT
Agora sу mais uma dъvida, salva sу que apenas com o nъmero 0, mesmo escolhendo a #define Folha 1
//EDIT
Agora sу mais uma dъvida, salva sу que apenas com o nъmero 0, mesmo escolhendo a #define Folha 1
PHP код:
new Vila[MAX_PLAYERS];
new Menu:VilaE;
#define SemVila 0
#define Folha 1
new Nome[MAX_PLAYER_NAME];
GetPlayerName(playerid, Nome, sizeof(Nome));
new String[100];
format(String, sizeof(String), Contas, Nome);
dini_Create(String);
dini_Set(String,"Senha",inputtext);
dini_IntSet(String,"Dinheiro",0);
dini_IntSet(String,"Vida", 100);
dini_IntSet(String,"Matou",0);
dini_IntSet(String,"Morreu",0);
dini_IntSet(String,"Logou",0);
dini_IntSet(String,"Vila",SemVila);
public OnPlayerSelectedMenuRow(playerid, row)
{
new Menu:current;
current = GetPlayerMenu(playerid);
if(current == VilaE)
{
switch(row)
{
case 0:{
if(Vila[playerid] == Folha)
TogglePlayerControllable(playerid, 1);
SetPlayerSkin(playerid,29);
SetPlayerColor(playerid,0x0080C0AA);
TogglePlayerControllable(playerid, 1);
}
}
}
PHP код:
SalvarPlayer(playerid)
{
new Float:Vida;
new Float:Colete;
GetPlayerHealth(playerid, Vida);
GetPlayerArmour(playerid, Colete);
new Nome[MAX_PLAYER_NAME];
GetPlayerName(playerid, Nome, sizeof(Nome));
new String[50];
format(String, sizeof(String), Contas, Nome);
dini_IntSet(String,"Dinheiro", GetPlayerMoney(playerid));
dini_FloatSet(String,"Vida", Vida);
dini_FloatSet(String,"Colete", Colete);
dini_IntSet(String,"Matou", Matou[playerid]);
dini_IntSet(String,"Morreu", Morreu[playerid]);
dini_IntSet(String,"Logou", Logou[playerid]);
dini_IntSet(String,"Vila", Vila[playerid]);
return 1;
}
SetarPlayer(playerid)
{
new Nome[MAX_PLAYER_NAME];
GetPlayerName(playerid, Nome, sizeof(Nome));
new String[50];
format(String, sizeof(String), Contas, Nome);
GivePlayerMoney(playerid, dini_Int(String,"Dinheiro"));
SetPlayerHealth(playerid, dini_Int(String,"Vida"));
SetPlayerArmour(playerid, dini_Int(String,"Colete"));
Matou[playerid] = dini_Int(String, "Matou");
Morreu[playerid] = dini_Int(String, "Morreu");
Logou[playerid] = dini_Int(String, "Logou");
Vila[playerid] = dini_Int(String, "Vila");
return 1;
}