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

Some help for my GUI editing


Jacquelinett
 Share

Recommended Posts

So… I have a question, how do I expand the map view range in the  FrmMain?
I mean like the normal map size you can only see 11x14 map right? In XtendMod Eclipse Version they can see up to about 20x24 or something like that... So... It isnt basically just changing the map size, i tried that before. So please give me some hint on how to do that.

About open and turn off inventory. Yes... Im a noob, i looked other people code and learn how to do it on my own. I saw in the main origin code when you click them they devide into case (normally there were 6 case). So... If I click on one of them, it will open its own menu. So now if I want it to turn off after that, I want to click on it again.
So here is the second question:

I want to turn the inventory off by clicking on the inventory button again after open it, can i add this kind of code:

(notes: this is not a right code, just an example of how I am going to do it)

Case7
If inventoryPic .Visible=True and player click InventoryButton then InventoryPic.Visible= False
Link to comment
Share on other sites

```
If Not picInventory.Visible Then
                ' show the window
                picInventory.Visible = True
                Call AlphaBlendInventory
                picFriends.Visible = False
                picSpells.Visible = False
                picOptions.Visible = False
                picParty.Visible = False
                BltInventory
                ' play sound
                PlaySound Sound_ButtonClick
                Else:
                picInventory.Visible = False
            End If

```
Would be similar to that.
Please would be nice.
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...