i have a confusion with this type of var/cvar
1. if we create a pcvar float eg
Code:
new Float:g_Health
g_health = register_cvar("amx_health", "20")
Code:
new g_Health2
g_health2 = register_cvar("amx_health2", "20.0")
what's the default value in g_Health and g_Health2 ?
2. which of these is correct to store health value in float?
new Float:g_clienthealth = float(get_user_health(id)); or
new Float:g_clienthealth = get_user_health(id); or
new g_clienthealth = float(get_user_health(id))
3. are all values returned from pev, in float? eg pev_health.