09.12.2012, 08:52
Do not post such huge stuff.
and btw THAT IS WHAT I AM SAYING
True = 1
False = 0
in the code it is checking if it is 0 (WHICH IS FALSE), then it executes the code or it sends the message you are getting..
to fix it use this
and PLEASE follow Lord's signature..maybe it can help control your temper
and btw THAT IS WHAT I AM SAYING
True = 1
False = 0
in the code it is checking if it is 0 (WHICH IS FALSE), then it executes the code or it sends the message you are getting..
to fix it use this
pawn Код:
public OnPlayerPickUpPickup(playerid, pickupid)
{
if(PlayerInfo[playerid][pLvDovana] == true)
{
if(pickupid == dovana)
{
GivePlayerMoney(playerid,1000);
SendClientMessage(playerid, 0xDEEE20FF, "Sveikiname, prizas: 1000 LT.");
PlayerInfo[playerid][pLvDovana] = true;
}
}
else
{
SendClientMessage(playerid, 0xDEEE20FF, "Jūs jau gavote priza!");
}
if(PlayerInfo[playerid][pVip] == 1)
{
if(pickupid == vipams)
{
GivePlayerWeapon(playerid, 31, 500);
GivePlayerWeapon(playerid, 25, 500);
SendClientMessage(playerid, 0xDEEE20FF, "Gavote VIP ginklus.");
}
}
else
{
SendClientMessage(playerid, 0xDEEE20FF, "Jūs ne VIP");
}
return 1;
}