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

PicScreen help


gordofatal
 Share

Recommended Posts

On the client

Find
```
Public Const MAX_MAPX As Byte = 14
Public Const MAX_MAPY As Byte = 11
```
And change them to larger numbers…such as..19 and 16.  That's what I changed mine to.
```
Public Const MAX_MAPX As Byte = 19
Public Const MAX_MAPY As Byte = 16
```
Now I would go to frmMain Load sub and throw this code in
```
'Resize Screen
picScreen.width = (MAX_MAPX + 1) * 32
picScreen.height = (MAX_MAPY + 1) * 32
```
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...