Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Filterscript made by LordTurhan
- Dont remove/edit anything mirrors not allowed.
- */
- #include <a_samp>
- #define RED 0xFF0000FF
- #if defined FILTERSCRIPT
- public OnFilterScriptInit()
- {
- print("\n--------------------------------------");
- print("Anti Heli-Blade by LordTurhan");
- print("--------------------------------------\n");
- return 1;
- }
- #else
- #endif
- public OnPlayerDeath(playerid, killerid, reason)
- {
- if(reason == 50)
- {
- new Name[MAX_PLAYER_NAME], Message[128];
- GetPlayerName(playerid, Name, sizeof(Name));
- format(Message, sizeof(Message), "%s(%d) has been killed for heli blade.", Name, playerid);
- SendClientMessageToAll(RED,Message);
- SetPlayerHealth(killerid,0);
- }
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment