Raised This Month: $32 Target: $400
 8% 

Help | Plugin: Kill enemy only with head shot


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Ludak
Member
Join Date: Oct 2014
Old 10-19-2015 , 01:39   Help | Plugin: Kill enemy only with head shot
Reply With Quote #1

Hello everyone, i need help.
How i can make that players are killed only with head shoot
Thank you in advance.
I assume that Trace Line is goin to be used, i know that but i do not know how to block damage with that forward.

Last edited by Ludak; 10-19-2015 at 01:43.
Ludak is offline
Chihuahuax
Senior Member
Join Date: Oct 2014
Location: Malaysia
Old 10-19-2015 , 01:42   Re: Help | Plugin: Kill enemy only with head shot
Reply With Quote #2

https://forums.alliedmods.net/showth...5600?p=1075600

hs_mode 3
Chihuahuax is offline
Send a message via Skype™ to Chihuahuax
yokomo
Surprise Ascot!
Join Date: May 2010
Location: Malaysia
Old 10-19-2015 , 02:07   Re: Help | Plugin: Kill enemy only with head shot
Reply With Quote #3

Quote:
Originally Posted by Ludak View Post
Hello everyone, i need help.
How i can make that players are killed only with head shoot
Thank you in advance.
I assume that Trace Line is goin to be used, i know that but i do not know how to block damage with that forward.
PHP Code:
#include <amxmodx>
#include <fakemeta>
#include <hamsandwich>

#define PLUGIN "Headshot Only"
#define VERSION "0.0.1"
#define AUTHOR "wbyokomo"

public plugin_init()
{
    
register_plugin(PLUGINVERSIONAUTHOR)
    
    
RegisterHam(Ham_TraceAttack"player""OnTraceAttack")
}

public 
OnTraceAttack(vicatkFloat:dmgFloat:dir[3], traceresultdmgbits)
{
    if((
vic == atk) || !is_user_connected(atk)) return HAM_IGNORED;
    
    if(
get_tr2(traceresultTR_iHitgroup) != HIT_HEAD) return HAM_SUPERCEDE;
    
    return 
HAM_IGNORED;

__________________
Team-MMG CS1.6 Servers:
✅ MultiMod -- 103.179.44.152:27016
✅ Zombie Plague -- 103.179.44.152:27015
✅ Zombie Escape -- 103.179.44.152:27017
✅ Klassik Kombat -- 103.179.44.152:27018
✅ Boss-Battle -- 103.179.44.152:27019
yokomo is offline
Ludak
Member
Join Date: Oct 2014
Old 10-19-2015 , 02:50   Re: Help | Plugin: Kill enemy only with head shot
Reply With Quote #4

Thank you very mutch
Ludak is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 00:28.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode