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

[Fix] [DX8] Bank withdraw item


Kagamine
 Share

Recommended Posts

I don't know if this is the correct area to post this, if isn't I'm sorry!  :(

First of all, I don't know programing, I just have tried to fix this bug, when you try to withdraw a "NONE" type of item from the bank, nothing happen, and here is my fix:

**All client side!**

**1º** - Find this sub:

```
Public Sub Bank_DoubleClick()

```
**2º** - Then delete this line: 

```
If Item(GetBankItemNum(bankNum)).Type = ITEM_TYPE_NONE Then Exit Sub

```
**3º**
- And change this line:

```
If Item(GetBankItemNum(bankNum)).Type = ITEM_TYPE_CURRENCY Or Item(GetBankItemNum(bankNum)).Stackable = YES Then

```
to this…

```
If Item(GetBankItemNum(bankNum)).Type = ITEM_TYPE_NONE Or ITEM_TYPE_CURRENCY Or Item(GetBankItemNum(bankNum)).Stackable = YES Then

```
I know this is a simple fix, but I hope this can help someone!  :)

Note: I don't know if this code can be improved, but this is all I can do…  :wacko:

Credits: Kagamine
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...