Thread: [DFX2] Lost game
View Single Post
  #10  
Old 02-18-2015, 11:57 AM
Guest001 is offline Guest001
Registered User

Join Date: Aug 2008
Posts: 4,971

Don't know about a doctor but this will give you a more realistic health regen system.

If the player has a minor injury the player recovers but the player will die slowly if it's a more serious one.

if never() then
ssnhp(10000,200)
endif

if ssnwounded(10000) and never() then
set(v50,1)
endif

if eq(v50,1) then
ssnaddhp(10000,-5)
endif
Reply With Quote