Code:
new health[33]
get_user_health(id, health, 32)
set_user_health(id, health + 150)
client_print(id, print_chat, "[Customs] You upgrade your health, its now at %i." health)
or
Code:
new health[33] = get_user_health(id)
set_user_health(id, health + 150)
client_print(id, print_chat, "[Customs] You upgrade your health, its now at %i." health)
It is all very confusing to me.... >.<