26.07.2014, 18:44
Try to call a timer to delay giving a deagle to the player?
pawn Код:
else
{
SetTimerEx("GivePlayerWeaponEx", 500, false, "iii", playerid, 24, 100);
}
forward GivePlayerWeaponEx(playerid, wep, ammo);
public GivePlayerWeaponEx(playerid, wep, ammo)
{
GivePlayerWeapon(playerid, wep, ammo);
}

