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

[Bug Fix] Gold in Inventory


Valentine90
 Share

Recommended Posts

**Sorry my english**

**Description:** A simple detail that can not even call a bug, a lack of a = (Equals) on condition that when you have 999,999 of golds this doesn't happen:

![](http://img833.imageshack.us/img833/1340/imagemczb.png)

**Open Client**

**1 -** In **modGameLogic**, [background=rgb(240, 247, 250)]look for:[/background][background=rgb(240, 247, 250)] [/background]

```
Public Function ConvertCurrency(ByVal Amount As Long) As String
```

**2 -** [background=rgb(240, 247, 250)]Replace:[/background][background=rgb(240, 247, 250)] [/background]

```
ElseIf Int(Amount) < 999999 Then
```

**3 -** By.

```
ElseIf Int(Amount) <= 999999 Then
```

**4 -** [background=rgb(240, 247, 250)]Replace:[/background][background=rgb(240, 247, 250)] [/background]

```
ElseIf Int(Amount) < 999999999 Then
```

**5 -** By.

```
ElseIf Int(Amount) <= 999999999 Then
```

[background=rgb(240, 247, 250)]**Credits:**[/background]

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