14.05.2013, 23:51
I need a help about that, if it's the week-end players will get extra bonuses
Ex :
If it's not the week-end players will get:
But if it is week-end
Ex :
If it's not the week-end players will get:
pawn Код:
CMD:guns(playerid,params[])
{
GivePlayerWeapon(playerid, 30, 200);
GivePlayerWeapon(playerid, 26, 200);
GivePlayerWeapon(playerid, 24, 200);
}
pawn Код:
CMD:guns(playerid,params[])
{
//if it's the week-end
GivePlayerWeapon(playerid, 30, 400);
GivePlayerWeapon(playerid, 26, 400);
GivePlayerWeapon(playerid, 24, 400);
}
Thanks in advance.