Hello AlliedModders,
I am experiencing a problem with one of my codes .. which I thought would work properly .. but I get a mismatch problem when I compile .. if someone has a solution for it .. pls share. Thnx in advance

.
Code:
new Float:new_health[33]
In public plugin_natives():
register_native("get_user_new_health", "native_get_user_new_health", 1)
// Native: get_user_new_health
public native_get_user_new_health(id)
{
return new_health[id]
} // - I get a mismatch problem on this line and i thought that it might be because its registered as Float ... but i couldn't think of anything else to solve this problem. If anyone knows how to fix this problem .. pls share.