Raised This Month: $ Target: $400
 0% 

Solved Plugin that gives a hp


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
F.B.ID3M0N
Junior Member
Join Date: Dec 2022
Old 05-12-2023 , 00:42   Plugin that gives a hp
Reply With Quote #1

Hi i nead plugin/code that gives a player 5 hp after 5 sec and i nead to add it to my vip plugin

Last edited by F.B.ID3M0N; 05-12-2023 at 13:39.
F.B.ID3M0N is offline
lexzor
Veteran Member
Join Date: Nov 2020
Old 05-12-2023 , 08:33   Re: Plugin that gives a hp
Reply With Quote #2

PHP Code:
#include <amxmodx>
#include <fun>

#define FLAG_VIP "t"

#if !defined client_disconnected
    #define client_disconnected client_disconnect
#endif

const TASK_HP 1523

public plugin_putinserver(id)
{
    if(
get_user_flags(id) & read_flags(FLAG_VIP) && !is_user_hltv(id) && !is_user_bot(id))
    {
        
set_task(5.0"addHealth"id TASK_HP, .flags="b")   
    }
}

public 
client_disconnected(id)
{
    if(
task_exists(id TASK_HP))
    {
        
remove_task(id TASK_HP)
    }
}

public 
addHealth(id)
{
    
id -= TASK_HP

    
if(is_user_alive(id))
    {
        
set_user_health(idget_user_health(id) + 5)
    }

you can delete this line if you have a version of amxx higher than 182

PHP Code:
#if !defined client_disconnected
    #define client_disconnected client_disconnect
#endif 

Last edited by lexzor; 05-12-2023 at 12:17.
lexzor is offline
F.B.ID3M0N
Junior Member
Join Date: Dec 2022
Old 05-12-2023 , 11:32   Re: Plugin that gives a hp
Reply With Quote #3

It say Undefined symbol "task_Exists"
F.B.ID3M0N is offline
lexzor
Veteran Member
Join Date: Nov 2020
Old 05-12-2023 , 12:17   Re: Plugin that gives a hp
Reply With Quote #4

try now
lexzor is offline
F.B.ID3M0N
Junior Member
Join Date: Dec 2022
Old 05-12-2023 , 13:38   Re: Plugin that gives a hp
Reply With Quote #5

i acidently caped E now work thanks(sry for bad english)
F.B.ID3M0N 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 14:00.


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