Raised This Month: $ Target: $400
 0% 

How to get user data on how much players he killed?


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
edon1337
Penguin Enthusiast
Join Date: Jun 2016
Location: Macedonia
Old 02-18-2017 , 09:29   Re: How to get user data on how much players he killed?
Reply With Quote #7

Quote:
Originally Posted by RAW_192 View Post
If i add this plugin all the players will get hp per kill right?
Yes.

Quote:
Originally Posted by RAW_192 View Post
I want to add it such as when i call this plugin like /health then it starts working ..
Also how can i limit the max health given to a player?
PHP Code:
#include < amxmodx >
#include < hamsandwich >
#include < engine >

#define HP_LIMIT 150

const hp_value 30

new bool:g_Enabled33 ];

public 
plugin_init( ) {

    
register_plugin"Extra HP""1.0""DoNii" );

    
register_clcmd"say /health""enable_plugin" );

    
RegisterHamHam_Killed"player""fw_HamKilledPost");
}

public 
enable_plugin(id) {

    
g_Enabledid ] = true
}

public 
fw_HamKilledPostvictimattackershouldgib ) {

    if( 
g_Enabledattacker ] ) {

        new 
Float:health entity_get_floatattackerEV_FL_health )

        if( 
health HP_LIMIT ) {
            return 
HAM_IGNORED;
        } 
        
        
entity_set_floatattackerEV_FL_healthhealth hp_value )
    }  

    return 
HAM_IGNORED;

__________________

Last edited by edon1337; 02-18-2017 at 09:30.
edon1337 is offline
 



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 21:01.


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