03.08.2009, 17:26
I need /money commands.
to give money for all
the prices will be 10000 100000 and 1000000
tanks for helpers
to give money for all
the prices will be 10000 100000 and 1000000
tanks for helpers
#define dcmd(%1,%2,%3) if (!strcmp((%3)[1], #%1, true, (%2)) && ((((%3)[(%2) + 1] == '\0') && (dcmd_%1(playerid, ""))) || (((%3)[(%2) + 1] == ' ') && (dcmd_%1(playerid, (%3)[(%2) + 2]))))) return 1
@ onplayercommand text
dcmd(givecashtoall,13,cmdtext);
dcmd_givecashtoall(playerid,params[])
{
for(new i=0;i<MAX_PLAYERS;i++) {
if(IsPlayerConnected(i)){
GivePlayerMoney(i,10000);
}
}
return 1;
}