[DUVIDA] Salvar - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [DUVIDA] Salvar (
/showthread.php?tid=197604)
[DUVIDA] Salvar -
abestado - 09.12.2010
Eaн galera do SA:MP Fуrum.
Estou com uma dъvida em relaзгo ao salvamento de score de um player.
No topo :
Quote:
#include <dini>
#define StatsFile "Level.ini"
new Level;
|
Quote:
Quote:
public OnFilterScriptInit()
{
if(!dini_Exists(StatsFile))
{
dini_Create(StatsFile);
dini_IntSet(StatsFile, "Level", 0);
}
Level = dini_Int(StatsFile, "Level");
|
|
Quote:
public OnFilterScriptExit()
{
SalvarLevel();
return 1;
}
|
Quote:
public SalvarLevel()
{
dini_IntSet(StatsFile, "Level", Level);
}
|
Sу que nгo estб salvando.
Re: [DUVIDA] Salvar -
Falcon. - 09.12.2010
My Login Box. Com salvamento de Dados '-'
Re: [DUVIDA] Salvar -
CyNiC - 09.12.2010
Tem que salvar com o nome do jogador, Sr.
Re: [DUVIDA] Salvar -
abestado - 09.12.2010
como cynic?
Re: [DUVIDA] Salvar -
Falcon. - 09.12.2010
Por DraKiNs..
Em OnPlayerConnect:
pawn Код:
if(dini_Isset("score.ini",PlayerName(playerid))) SetPlayerScore(playerid,dini_Int("score.ini",PlayerName(playerid)));
em OnPlayerDisconnect:
pawn Код:
dini_IntSet("score.ini",PlayerName(playerid),GetPlayerScore(playerid));
Em OnGameModeInit:
pawn Код:
if(!fexist("score.ini")) dini_Create("score.ini");
--------
Queres saber como salvar mais Tipos de Coisas..
Clique
Aqui!!
Re: [DUVIDA] Salvar -
abestado - 09.12.2010
Quote:
Originally Posted by Falcon.Sixe
Por DraKiNs..
Em OnPlayerConnect:
pawn Код:
if(dini_Isset("score.ini",PlayerName(playerid))) SetPlayerScore(playerid,dini_Int("score.ini",PlayerName(playerid)));
em OnPlayerDisconnect:
pawn Код:
dini_IntSet("score.ini",PlayerName(playerid),GetPlayerScore(playerid));
Em OnGameModeInit:
pawn Код:
if(!fexist("score.ini")) dini_Create("score.ini");
--------
Queres saber como salvar mais Tipos de Coisas..
Clique Aqui!!
|
Fiz o que vocк pediu, mas deu dois erros.
undefined symbol "PlayerName"
undefined symbol "PlayerName"
Re: [DUVIDA] Salvar -
CyNiC - 09.12.2010
Adcione no final do gamemode:
pawn Код:
PlayerName(playerid)
{
new Name[MAX_PLAYER_NAME];
GetPlayerName(playerid, Name, sizeof Name);
return Name;
}
Re: [DUVIDA] Salvar -
abestado - 09.12.2010
Quote:
Originally Posted by cynic
Adcione no final do gamemode:
pawn Код:
PlayerName(playerid) { new Name[MAX_PLAYER_NAME]; GetPlayerName(playerid, Name, sizeof Name); return Name; }
|
Tipo, tб criando o arquivo .dini, mas nгo estб salvando os dados do score das pessoas, pq?