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

Rendering coordinate question


jaekx
 Share

Recommended Posts

Edit - Found how to move the + label but the click event is still lowered?

current version of EA

Ive found the section of code that renders the stat labels along with the X & Y coordinates, but I cant seem to find the coordinate position for the level up "+" signs to go with it.

any help where the coordinates are located for these?

![](http://i.imgur.com/Ohw40.png?1)
Link to comment
Share on other sites

Look in modGeneral for this

```
' set the individual spaces

For i = 16 To 18 ' first 3

With Buttons(i)

.X = 80

.Y = 147 + ((i - 16) * 15)

End With

Next

For i = 19 To 20

With Buttons(i)

.X = 165

.Y = 147 + ((i - 19) * 15)

End With

Next
```

And edit the X and Y's for those as that is what decides where the butttons are drawn.
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...