06.08.2009, 14:18
Hello,
So I've made 4 special packages. Each gives you +2 score and 20.000$
But I thought that Pickup ID 3 aka Never respawns was also if you relog.
So how could I do that if someone pics up the special package, he would never see it again ( Unless for server restart )
An example of my pickups, in this case pickup 1:
So I've made 4 special packages. Each gives you +2 score and 20.000$
But I thought that Pickup ID 3 aka Never respawns was also if you relog.
So how could I do that if someone pics up the special package, he would never see it again ( Unless for server restart )
An example of my pickups, in this case pickup 1:
Код:
new special1;
Код:
Код:special1 = CreatePickup(1279,15,2160.8967,2111.6318,18.0782);What must I add so the player never sees it again..ThanksКод:if (pickupid == special1) { GivePlayerMoney(playerid, 20000); SetPlayerScore(playerid, GetPlayerScore(playerid) +2); SendClientMessage(playerid,COLOR_YELLOW,"You just found the special pacakge"); SendClientMessage(playerid,COLOR_YELLOW,"You have received 2 scores and 20.000$"); }