SA-MP Forums Archive
bag of money after the murder - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: bag of money after the murder (/showthread.php?tid=261598)



bag of money after the murder - [REBOK] - 14.06.2011

How to do when you kill someone, then place it appears the money that you can take!? Id a bag of money 1550


Sorry do not speak English, wrote a translator


Re: bag of money after the murder - lawonama - 14.06.2011

You can add this to the time when he gets killed.

money = CreatePickup(1550, 2, 3376.18, -2856.38, 104.94);

And you can add this OnPlayerPickupPickup

GivePlayerMoney(playerid,1550);
DestroyPickup(money);
return 1;



PS Not tested, im not sure.


Re: bag of money after the murder - [REBOK] - 14.06.2011

Please correct code lavonama and experienced scripters, if not right!


Re: bag of money after the murder - [REBOK] - 14.06.2011

And when you take this bag you give money to the murdered?


Re: bag of money after the murder - Wesley221 - 14.06.2011

Do it like this:

pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
    new Float:x, Float:y, Float:z;
    GetPlayerPos(killerid, x, y, z)
    money = CreatePickup(1550, 2, x,y,z);
    SendClientMessage(playerid, "Money bag spawned");
    return 1;
}


And you can add this OnPlayerPickupPickup

GivePlayerMoney(playerid,1550);
DestroyPickup(money);
return 1;



Re: bag of money after the murder - XFlawless - 14.06.2011

Quote:
Originally Posted by Wesley221
Посмотреть сообщение
Do it like this:

pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
    new Float:x, Float:y, Float:z;
    GetPlayerPos(killerid, x, y, z)
    money = CreatePickup(1550, 2, x,y,z);
    SendClientMessage(playerid, "Money bag spawned");
    return 1;
}


And you can add this OnPlayerPickupPickup

GivePlayerMoney(playerid,1550);
DestroyPickup(money);
return 1;
If the killer uses a sniper then it would spawn near him. Use GetPlayerPos(playerid, X, Y, Z); instead.


Re: bag of money after the murder - [REBOK] - 14.06.2011

Thanks all


Re: bag of money after the murder - [REBOK] - 14.06.2011

I have an error, make a simple but complete script! with all new please


Re: bag of money after the murder - Wesley221 - 14.06.2011

What about you show the errors + code

Edit:

Quote:
Originally Posted by XFlawless
Посмотреть сообщение
If the killer uses a sniper then it would spawn near him. Use GetPlayerPos(playerid, X, Y, Z); instead.
Well, if you want to make it realistic, its better to spawn it near the killer. Example, if you kill someone IRL with a sniper, the cash isnt dropped right infront of you right? So its more realistic just to drop it at the killerid's place


Re: bag of money after the murder - [REBOK] - 14.06.2011

Please do me a FS!