24.10.2013, 15:33
Hi I have here a minigun sciprt which every 1 hour it spawn minigun and it gives to all players online. But the problem is that when im in a duel fighing seriously with my tough friend, suddenly the minigun spawned. So it interrupts my concentration and our match.
So is there any way not spawn the minigun in a duel match?
So is there any way not spawn the minigun in a duel match?
Код:
public Minigunz() { for(new i; i < MAX_PLAYERS; i++) if(IsPlayerConnected(i)) { GivePlayerWeapon(i, WEAPON_MINIGUN, MINIGUN_AMMO); GameTextForPlayer(i, "~w~Minigun~n~~r~Madness!", 2000, 3); } DelayTimer = SetTimer("StopMinigunz", SINTERVAL, 0); return 1; }