[Ajuda] Ajuda
#1

Olб Pessoal, Eu Quero Saber Como Eu Faзo Pra Quando Uma Pessoa Matar Outra, Esta Pessoa Que Matou Ganhar Dinheiro.

Por Favor Me Ajudem
Reply
#2

pawn Код:
public OnPlayerDeath ( playerid, killerid, reason ) {

    new Celulas [ 128 ] ;

    new Money = ( 1000 + random ( 4500 ) ) ;

    format ( Celulas, 128, "[ AVISO ]: %s matou %s e recebeu %d", Nick ( killerid ), Nick ( playerid ), Money ) ;
    SendClientMessageToAll ( -1, Celulas ) ;

    GivePlayerMoney ( killerid, Money ) ;
    return true ;
}


stock Nick ( playerid ) {

    new NOME [ 21 ] ;
    GetPlayerName ( playerid, NOME, 21 ) ;
    return NOME ;
}
Reply
#3

PHP код:
public OnPlayerDeathplayeridkilleridreason 
{
    
GivePlayerMoneykilleridvalor);
    return 
true ;

No 'valor', adicione o valor desejado que o matador irб receber.
Reply
#4

Quote:

public OnPlayerDeath(playerid, killerid, reason)
{
GivePlayerMoney(killerid, Valor);
GameTextForPlayer(killerid, "~r~Ganhou Uma Grana !", 5000, 2);
return 1;
}

Mude o valor pra sua quantia e o ''Ganhou uma Grana'' a qual vc preferir !

-----------------------------------------------------
Ou
-----------------------------------------------------

Quote:

public OnPlayerDeath(playerid, killerid, reason)
{
GivePlayerMoney(playerid, -Valor);
GameTextForPlayer(playerid, "~r~Perdeu Uma Grana !", 5000, 2);
return 1;
}

Mude o valor pra sua quantia e o ''Perdeu uma Grana'' a qual vc preferir !
Reply
#5

Vlw Catchorro
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)