29.03.2013, 12:18
DrTHE . Deu certo cara , muito obrigado .
Porem , eu estou com um probleminha . quero salvar a posiзгo do player quando ele sair do servidor . Para isso , eu botei Salvar(playerid); na OnPlayerDisconect . e fiz isso aqui :
Sу que nгo dб muito certo .
Nessa linha :
Dб dois Warnings .
" number of arguments does not match definition "
Por que isso acontece ?
Lembrando que as variбveis Px, Py, Pz Sгo Floats Globais .
Porem , eu estou com um probleminha . quero salvar a posiзгo do player quando ele sair do servidor . Para isso , eu botei Salvar(playerid); na OnPlayerDisconect . e fiz isso aqui :
pawn Код:
stock Ler(playerid)
{
SetPlayerPos(playerid, DOF2_GetInt(Contas(playerid), "Pos"));
return 1;
}
stock Salvar(playerid)
{
if(!DOF2_FileExists(Contas(playerid)))
{
DOF2_CreateFile(Contas(playerid));
Salvar(playerid);
return 1;
}
DOF2_SetInt(Contas(playerid), "Pos", GetPlayerPos(playerid, Px, Py, Pz));
DOF2_SaveFile();
return 1;
}
Nessa linha :
pawn Код:
SetPlayerPos(playerid, DOF2_GetInt(Contas(playerid), "Pos"));
" number of arguments does not match definition "
Por que isso acontece ?
Lembrando que as variбveis Px, Py, Pz Sгo Floats Globais .