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

Noob stat question- changing stats names and what they do


RedJacket7
 Share

Recommended Posts

Hi, I'm using eclipse origins and I need some help because I'm a noob lol.

I'd like to change my stats around so they have these names and do the following:

Physical Power- Increasing this increases normal attack damage
Magic Power- Increasing this increases spell damage
Physical Defense- Increasing this increases normal defense
Magic Defense-Increasing this increases spell defense
Hp- Increases Maximum HP
Mp- Increases Maximum MP
Speed- Increases attack speed

Sorry if this is asking too much, but I'd really appreciate the help.
Link to comment
Share on other sites

@naka:

> try making ureself and admin then once u are type /admin in chat box and hit enter u can edit stuff there hope this helps

Thank you very much for the help, but I don't believe that's what I was looking for. :cheesy:

Also, for whom ever can help me.. I know MP and HP already exist but I'd like them to be stats that I can increase alone. If I'm not mistaken.. currently STR increase both my normal attack power and my HP, I'd like Physical Power to only increase normal/weapon attack power and HP to only increase HP.

Sorry if this is a really noob question, but big thanks in advance to anyone else who responds.

EDIT- I actually believe it's END that increases HP, but none the less.. I'd like HP to be the only stat to increase HP.
Link to comment
Share on other sites

All of the below are located Server-side in modCombat. To change these, open up server.vbp with Visual Basic 6.

HP and MP - look at GetPlayerMaxVital. Change the "GetPlayerMaxVital = (formula here)" parts.
Physical Power - Check out GetPlayerDamage.
Speed - Check out CanPlayerAttackNpc, more specifically:
```
        ' attack speed from weapon
        If GetPlayerEquipment(attacker, Weapon) > 0 Then
            attackspeed = Item(GetPlayerEquipment(attacker, Weapon)).Speed
        Else
            attackspeed = 1000
        End If

```
Physical Defense - Check out GetNpcDamage. Keep in mind you'll have to modify this so it gets the player's index as well.

Magic Stuff - I couldn't find these. You should just merge this with Physical Defense and Attack.
Link to comment
Share on other sites

Thank you very much Soul, this helps a ton.

@Soul:

> Magic Stuff - I couldn't find these. You should just merge this with Physical Defense and Attack.

Eh, I'd really prefer to keep them separate. If I can't figure it out myself though I guess I'll have no choice but to merge them.

Once again, thanks.
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...