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

Shop mode


PVJsquad
 Share

Recommended Posts

You mean like this?

>! ![](http://img528.imageshack.us/img528/4346/likethism.jpg)
How to:

All client side,
In modGameLogic
Search for:
```
frmMain.picCover.Visible = True
```
Remove this line or change to = false and the shop window shows above the picScreen
Link to comment
Share on other sites

@Jimmy93:

> You mean like this?
>
> >! ![](http://img528.imageshack.us/img528/4346/likethism.jpg)
> How to:
>
> All client side,
> In modGameLogic
> Search for:
> ```
> frmMain.picCover.Visible = True
> ```
> Remove this line or change to = false and the shop window shows above the picScreen

Thank's but how in bank mode
Link to comment
Share on other sites

@Ryoku:

> Ok he wants to see the map and whats going on while in the shop! its not hard to understand what he wants.

Thank you, aside from the fact that we've established that already. If you can't both reading the entire post, perhaps you shouldn't try to help at all.

* * *

@GoldSide:

> Thank's but how in bank mode

Just replace all of:
```
frmMain.picCover.Visible = True

```
With this:
```
frmMain.picCover.Visible = False

```
It's in modHandleData twice, and in modGameLogic once. If you still can't find it out, here is a full guide:

**To stop it in bank:**

Find:
```
    InBank = True
    frmMain.picCover.Visible = True

```
Change:
```
    frmMain.picCover.Visible = True

```
to:
```
    frmMain.picCover.Visible = False

```
**To stop it in trade:**

Find:
```
    InTrade = Buffer.ReadLong
    frmMain.picCover.Visible = True

```
Change:
```
    frmMain.picCover.Visible = True

```
to:
```
    frmMain.picCover.Visible = False

```
**To stop it in shop (you already did this step above):**

Find:
```
    InShop = shopnum
    ShopAction = 0
    frmMain.picCover.Visible = True

```
Change:
```
    frmMain.picCover.Visible = True

```
to:
```
    frmMain.picCover.Visible = False

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