Fidooop Posted February 10, 2014 Share Posted February 10, 2014 (edited) I am trying to make it so that when my character is at 0 hunger the health will deplete 2-3 times faster so that the hat my character has (the hat has a regenerating health script in it) doesn't make my character immune to hunger!(I'd also like the hunger to deplete a teeny tiny bit quicker) Here is the code I tried using but nothing happened at 0 hunger! local function hungercheck(inst)local hungercurrent = inst.components.hunger.currentif hungercurrent < 1 theninst.components.Health:StartHurt(5,0.2)endend thanks in advanced for any help I get! EDIT: I aso tried inst.components.Health:StartRegen(-5,0.2) EDIT AGAIN: fixed! code is inst.components.hunger.hurtrate = 3 (1 is default)thanks Mr. Tiddles! Edited February 10, 2014 by Fidooop 1 Link to comment https://forums.kleientertainment.com/forums/topic/31502-mod-help-health-reacting-to-hunger-levels/ Share on other sites More sharing options...
GranzGinz Posted February 10, 2014 Share Posted February 10, 2014 dont use start regen..that will always update use this code for get value what you want inst.components.health:Respawn(how) Link to comment https://forums.kleientertainment.com/forums/topic/31502-mod-help-health-reacting-to-hunger-levels/#findComment-414101 Share on other sites More sharing options...
NikMik Posted February 10, 2014 Share Posted February 10, 2014 dont use start regen..that will always update use this code for get value what you want inst.components.health:Respawn(how)I already told him how to do what he wanted to do by changing the hunger hurtrate. Link to comment https://forums.kleientertainment.com/forums/topic/31502-mod-help-health-reacting-to-hunger-levels/#findComment-414102 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now