Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Event System


Zzbrandon
 Share

Recommended Posts

Hi I was wondering if their is any way to make a event where it check one of yout skill levels and if it is high enough it let's you do the event It would be good for a quick smithing system. Any idea's or how to's? Also I dont want to make a other Topic but is their a way to change how fast your health heals because on Dragon Eclipse their is like no point of food your health heal's really fast. Is their anyway to change that also?
Link to comment
Share on other sites

To change the hp and mp regen formula go to the sever source and find:

```
Function GetPlayerVitalRegen
```

Then you will see the hp formula: (Willpower x 0.8) + 6

```

Case HP

i = (GetPlayerStat(index, Stats.Willpower) * 0.8) + 6
```

And the MP formula: (Willpower / 4) +12.5

```
Case MP

i = (GetPlayerStat(index, Stats.Willpower) / 4) + 12.5
```
Change that formulas to modify the player regeneration every x seconds (i don't know where to modify the seconds) between each regen.
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...