28.08.2010, 10:39
I DONT GET WHY!!!!!! iv even made this on another filterscript, separated them get the same problem!!!!!!
like when someone picks up a briefcase it gives them a deagle with 4 bullets + cash and on my parkour mission there is a cash pickup if they pickit up tthey get cash i even puted the briefcase in another filterscript and deleted from the gamemode but get the same problem why!!!!


here i pickedup the briefcase but it sends them the message from parkour and the briefcase

_______________________
[GDZ]leader
like when someone picks up a briefcase it gives them a deagle with 4 bullets + cash and on my parkour mission there is a cash pickup if they pickit up tthey get cash i even puted the briefcase in another filterscript and deleted from the gamemode but get the same problem why!!!!



here i pickedup the briefcase but it sends them the message from parkour and the briefcase

Код:
{ if(pickupid == cash) GivePlayerMoney(playerid,500000); new name[MAX_PLAYER_NAME], string[44]; GetPlayerName(playerid, name, sizeof(name)); format(string, sizeof(string), "%s has completed the parkour mission and received 50000$",name); SendClientMessageToAll(COLOR_RED, string); return 1; }
Код:
{ if(pickupid == briefcase) GivePlayerMoney(playerid,500000); GivePlayerWeapon(playerid, 24,4); new name[MAX_PLAYER_NAME], string[44]; GetPlayerName(playerid, name, sizeof(name)); format(string, sizeof(string), "%s has found a briefcase",name); SendClientMessageToAll(COLOR_RED, "and received 500000$ + a deagle"); SendClientMessageToAll(COLOR_RED, string); return 1; }
[GDZ]leader
