[DUVIDA] Salvar
#1

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.
Reply
#2

My Login Box. Com salvamento de Dados '-'
Reply
#3

Tem que salvar com o nome do jogador, Sr.
Reply
#4

como cynic?
Reply
#5

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!!
Reply
#6

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"
Reply
#7

Adcione no final do gamemode:
pawn Код:
PlayerName(playerid)
{
    new Name[MAX_PLAYER_NAME];
    GetPlayerName(playerid, Name, sizeof Name);
    return Name;
}
Reply
#8

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?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)