27.10.2009, 20:41
Bug Report.
When including this into your game mode you are basically forced to steam your pickups or they will not work. I am way under the limit and have no need to stream pickups but I have to in order for them to work.
Duplicate Strings on player pickup.
With using the pickup streamer it shows up as
and without the streamer it only shows once.
When including this into your game mode you are basically forced to steam your pickups or they will not work. I am way under the limit and have no need to stream pickups but I have to in order for them to work.
Duplicate Strings on player pickup.
pawn Код:
if (pickupid == pwnt)
{
new string [128];
new pName[MAX_PLAYER_NAME];
GetPlayerName(playerid, pName, sizeof(pName));
format(string, sizeof(string), "%s has been eaten by the box!", pName);
SendClientMessageToAll(COLOR_GREY, string);
PlayerPlaySound(playerid, 1139, 0.0, 0.0, 0.0);
GameTextForPlayer(playerid,"~g~Info:~n~~w~Complete the challenge to earn cash.~w~!",5000,3);
SetPlayerPos(playerid,1101.1772,-1998.4150,262.9312);
BOX[playerid] = true;
return 1;
}
Код:
[SU]BP13 has been eaten by the box! [SU]BP13 has been eaten by the box!