04.10.2017, 18:08
OT:You can /ban him or /ajail him.
IT: You could forbid the Minigun in you server, when the script detects the player has Minigun it will Kick or Ban [depending on what you want] him.
From SA-MP Wiki:
Add this on your script.
IT: You could forbid the Minigun in you server, when the script detects the player has Minigun it will Kick or Ban [depending on what you want] him.
From SA-MP Wiki:
Code:
public OnPlayerDeath(playerid, killerid, reason) { if(killerid != INVALID_PLAYER_ID) { if(GetPlayerWeapon(killerid) == 38) Ban(killerid); //Ban if they have a minigun } return 1; }