05.08.2010, 16:14
I don't really like asking for help, but i'm woundering how to do something like this, When a admin does /randompickup a random pickup will be made,
with the hint where it is, I already have this:
And the OnPlayerPickup stuff...
It works fine, but i want to know how to add the hint where it is.
Like, "Administrator: %s has started the money pickup event, Hint: %d".
Thanks for help...
with the hint where it is, I already have this:
pawn Код:
new Float:RandomMoney[][6] =
{
{2538.1797,-1630.1400,13.5541},
{-2508.3176,-687.8477,139.3203},
{2141.5942,-1163.3561,23.9922},
{655.1508,-564.9355,16.3359},
{248.7421,-57.9909,1.5703}
};
pawn Код:
if(strcmp(cmdtext, "/randommoney", true) == 0) {
if(Pinfo[playerid][Level] >= 6){
new name[MAX_PLAYER_NAME]; GetPlayerName(playerid, name, MAX_PLAYER_NAME);
format(string,sizeof string, "Administrator: %s has started the money pickup event, You must find it.", name);
SendClientMessageToAll(COLOR_RED, string);
new rand = random(sizeof(RandomMoney));
moneypickup = CreatePickup(1550, 2, RandomMoney[rand][0], RandomMoney[rand][1], RandomMoney[rand][2], -1);
return 1;
}
else return SendClientMessage(playerid, COLOR_RED, "You do not have access to this command.");
}
It works fine, but i want to know how to add the hint where it is.
Like, "Administrator: %s has started the money pickup event, Hint: %d".
Thanks for help...