[Pedido] Ganhar score e dinheiro - 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: [Pedido] Ganhar score e dinheiro (
/showthread.php?tid=621622)
Ganhar score e dinheiro -
Brenopwn - 13.11.2016
Queria um sistema de Cada vez que um player mata alguem ele ganhar uma quantia em dinheiro e 1 score !!
Re: Ganhar score e dinheiro -
VinnyScript - 13.11.2016
So vc add o dinheiro com a give
Quote:
SetPlayerScore(killerid, GetPlayerScore(killerid) + 1);
SendClientMessage(playerid, Vermelho,"Vocк morreu, perdeu 1 de Score.");
SendClientMessage(killerid, Verde, "Vocк matou e ganho 1 de Score.");
|
Re: Ganhar score e dinheiro -
Brenopwn - 13.11.2016
http://prntscr.com/d6kyev DEU ISSO
Respuesta: Ganhar score e dinheiro -
SammyJ - 13.11.2016
Ex:
PHP код:
public OnPlayerDeath(playerid, killerid, reason)
{
if(killerid != INVALID_PLAYER_ID) // verifica se o "killerid" й invбlido, ou seja verifica se o jogador "playerid" se matou!
{
SetPlayerScore(killerid, GetPlayerScore(killerid) + 1); // O Jogador que matou ganha +1 score
GivePlayerMoney(killerid, 100); // O jogador que matou ganha +100 dуlares
}
return 1;
}
@edit
O Erro a cima acontece pois vocк usou argumentos a mais que a funзгo nгo tem.
Ex:
PHP код:
SendClientMessage(playerid, color, message[]); // Entгo chegamos a conclusгo que SendClientMessage tem 3 argumentos "playerid", "color", "message".