27.08.2011, 19:09
(
Последний раз редактировалось Lipe_Stronda; 27.08.2011 в 21:52.
)
a 1° й tipo, nгo estou conseguindo botar um salvamento com a dini com a seguinte define:
Alguem me ajuda? '-' nao sei mecher mto com dini desse geito ^^
tipo por que eu tava criando uma parada olha
Dialog:
jб tentei de tudo pra salvar mais quando eu entro tenho qe comprar denovo ;[
pawn Код:
PlayerInfo[playerid][pCarroLic]);
tipo por que eu tava criando uma parada olha
pawn Код:
if (strcmp("/licenзas", cmdtext, true, 10) == 0)
{
ShowPlayerDialog(playerid, 159, DIALOG_STYLE_LIST, "Escolha Uma Habilitaзao", "Motorista", "Selecionar", "Cancelar");
return 1;
}
if(strcmp(cmdtext,"/minhaslicencas",true)==0)
{
if(IsPlayerConnected(playerid))
{
new licencas[20];
new string[260];
if(PlayerInfo[playerid][pCarroLic]) { licencas = "Positivo"; } else { licencas = "Negativo"; }
SendClientMessage(playerid, -1, "|__________________ Carteira de Habilitaзхes __________________|");
format(string, sizeof(string), " Motorista: {4C05FF}%s.", licencas);
SendClientMessage(playerid, -1, string);
}
return 1;
}
return 0;
}
pawn Код:
if(dialogid == 159)
{
if(!response)
return true;
else
{
switch (listitem)
{
case 0:
{
PlayerInfo[playerid][pCarroLic] = 1;
// Aqui a Funзao sei lб que salva ( nгo sei se йr aqui )
SendClientMessage(playerid, -1, "Vocк comprou uma nova licenзa {1B70E0}Terrestre");
}
}
}
return 1;
}