[Ajuda] Erro ganhar Score quando mata - 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: [Ajuda] Erro ganhar Score quando mata (
/showthread.php?tid=622257)
Erro ganhar Score quando mata -
LukeCage - 20.11.2016
quando mata algum jogador deveria ganhar 1 score mais nгo ganha alguem sabe soluзгo ?
Codigo Death pwn:
Код:
public OnPlayerDeath(playerid, killerid, reason)
{
if(GetTickCountDifference(GetTickCount(), death_LastDeath[playerid]) < 1000)
return -1;
death_LastDeath[playerid] = GetTickCount();
if(killerid == INVALID_PLAYER_ID)
{
killerid = GetLastHitById(playerid);
if(!IsPlayerConnected(killerid))
killerid = INVALID_PLAYER_ID;
}
_OnDeath(playerid, killerid);
return 1;
}
nгo se precisa disso:
Код:
public OnPlayerDeath(playerid, killerid, reason)
{
SetPlayerScore(killerid, GetPlayerScore(killerid)+1);
return 1;
}
Re: Erro ganhar Score quando mata -
Cleyson - 20.11.2016
Quote:
Originally Posted by LukeCage
nгo se precisa disso:
Код:
public OnPlayerDeath(playerid, killerid, reason)
{
SetPlayerScore(killerid, GetPlayerScore(killerid)+1);
return 1;
}
|
Exatamente isso .
Re: Erro ganhar Score quando mata - Carlos001 - 20.11.2016
Na gamemode scavenge and survive, por padrao ao matar nгo ganha Score!
Quote:
public OnPlayerDeath(playerid, killerid, reason)
{
if(GetTickCountDifference(GetTickCount(), death_LastDeath[playerid]) < 1000)
return -1;
death_LastDeath[playerid] = GetTickCount();
if(killerid == INVALID_PLAYER_ID)
{
killerid = GetLastHitById(playerid);
if(!IsPlayerConnected(killerid))
killerid = INVALID_PLAYER_ID;
}
_OnDeath(playerid, killerid);
SetPlayerScore(killerid, GetPlayerScore(killerid)+1);
return 1;
}
|
Pronto sу Substituir...
Carlos001 -
LukeCage - 20.11.2016
Quote:
Originally Posted by Carlos001
Na gamemode scavenge and survive, por padrao ao matar nгo ganha Score!
Pronto sу Substituir...
|
vlw cara
Quote:
Originally Posted by Carlos001
Na gamemode scavenge and survive, por padrao ao matar nгo ganha Score!
Pronto sу Substituir...
|
Mais o Score nгo fica salvo !?
Re: Erro ganhar Score quando mata -
PT - 20.11.2016
claro que nao precisa colocar a salvar na DB isso.
PT -
LukeCage - 20.11.2016
Quote:
Originally Posted by PT
claro que nao precisa colocar a salvar na DB isso.
|
onde fica isso?
Tenho que criar uma coluna de score no 'accouts.db ??
http://imgur.com/a/3uTPL