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

Skill Point question


AncientWolf
 Share

Recommended Posts

Hi, let me be the first to welcome you to Eclipse :)

This is very easy.

Open up your Main.txt with notepad, located at: \Server\Scripts\Main.txt

Look for this part of the file:

> ' Executes when a players experience exceeds the next level requirement.
> Sub PlayerLevelUp(Index)
> Dim TotalExp
>
> Do While GetPlayerExp(Index) >= GetPlayerNextLevel(Index)
> TotalExp = GetPlayerExp(Index) - GetPlayerNextLevel(Index)
> Call SetPlayerLevel(Index, GetPlayerLevel(Index) + 1)
>
> **Call SetPlayerPOINTS(Index, GetPlayerPOINTS(Index) + 1)**
> Call SetPlayerExp(Index, TotalExp)
> Loop
>
> Call BattleMsg(Index, "You have " & GetPlayerPOINTS(Index) & " stat points.", BRIGHTBLUE, 0)
> End Sub

The part in bold, change that "1" to a "3".  Then, for now on, the player will get 3 stat points.
If you have anymore questions, please don't forget to ask :azn:
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...