PHP Code:
#include <amxmodx>
#include <fun>
#include <hamsandwich>
new cvar_StartHP
new cvar_MinimumHP
public plugin_init(){
register_plugin("need cvar help", "1.1", "Beancake12")
cvar_startHP = register_cvar("amx_ETO_startHP", "300")
cvar_minimumHP = register_cvar("amx_ETO_minimumHP", "50")
}
public cvar_function() {
how can i make the cvars change the start hp
and how do i make it change minimum hp?
}