Moneybag [little help]
#1

Hi i need help if i write /moneybag [amout]
put money in that the min amout is 50k$



#include <a_samp>
#define FILTERSCRIPT
#if defined FILTERSCRIPT
#define COLOR_LIGHTBLUE 0x33CCFFAA

new p1;

public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/moneybag", cmdtext, true, 10) == 0)
{
p1 = CreatePickup(1550, 8, 1503.3359, 1432.3585, 10.1191, -1);
new Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid, X, Y, Z);
CreatePickup(1550, 2, X + 2, Y, Z);

SendClientMessage(playerid,COLOR_LIGHTBLUE,"You picked up the moneybag!");
return 1;
}
return 0;
}
#endif
Reply
#2

Why are you not using ZCMD ?
Reply
#3

ok i will make with this
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)