Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Insta-kill Headshot by Saint */
- #define FILTERSCRIPT
- #include <a_samp>
- #if defined FILTERSCRIPT
- public OnFilterScriptInit()
- {
- print("\n-------------------------------");
- print(" Insta-kill Headshot by Saint ");
- print("---------------------------------\n");
- return 1;
- }
- public OnFilterScriptExit()
- {
- return 1;
- }
- #endif
- public OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid, bodypart)
- {
- if(issuerid != INVALID_PLAYER_ID)
- {
- switch(bodypart)
- {
- case BODY_PART_HEAD: SetPlayerHealth(playerid, 0);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment