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

[Bug Fix] Exp Bar


Valentine90
 Share

Recommended Posts

**Sorry my english**

At the request of a member here, I decided to create this tutorial.

This is a simple tutorial that teaches you how to fix the bug of the player's current exp. When you go into an account and is the first to enter the game, no problems, however, when you are on the second into the game your exp is always ZERO, this tutorial teaches you how to fix it

**Open Client**

**1 -** In **modHandleData**, look for:

```
Private Sub HandlePlayerExp
```

**2 -** In this same sub search by:

```
SetPlayerExp Index, Buffer.ReadLong
```

**3 -** Replace with:

```
SetPlayerExp MyIndex, Buffer.ReadLong
```

**Credits:**

Terabin

Valentine
Link to comment
Share on other sites

  • 3 weeks later...
  • 3 weeks later...
> Same thing, this dosent seem to help

In my EO2 I have this, which seems to work:

```

SetPlayerExp MyIndex, Buffer.ReadLong

TNL = Buffer.ReadLong

frmMain.lblEXP.Caption = GetPlayerExp(MyIndex) & "/" & TNL

' mp bar

frmMain.imgEXPBar.width = ((GetPlayerExp(MyIndex) / EXPBar_Width) / (TNL / EXPBar_Width)) * EXPBar_Width
```
Link to comment
Share on other sites

Try opening 2 clients and loggin in on both of them. Gain a little xp on both of them, then watch. The second client you logged into will say 0/(exp) the whole time
Link to comment
Share on other sites

  • 2 months later...

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...