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

Please How to fix Map Editor Bug


kurenai
 Share

Recommended Posts

**Please How to fix bug**

*****[Mirage Legacy](http://www.eclipseorigins.com/community/index.php?/topic/133489-mirage-legacy-orpg-engine-new-community-support/)  1.2.2 (EO 2.3)

*English isn’t my first language, so please excuse any mistakes // google translate

![](http://i.imgur.com/EHctzPi.jpg)

thx all
Link to comment
Share on other sites

Did you check if the picScreen size have proper calculation with your MAX_MAPX and MAX_MAPY ?

The Proper Calculation of it is

(MAX_MAPX + 1)  * 32 = The Width Size of the PicScreen

(MAX_MAPY + 1)  * 32 = The Height Size of the PicScreen

Check it if it is correct.. otherwise there's a problem within your mouse_move location
Link to comment
Share on other sites

> Did you check if the picScreen size have proper calculation with your MAX_MAPX and MAX_MAPY ?
>
>  
>
> The Proper Calculation of it is
>
>  
>
> (MAX_MAPX + 1)  * 32 = The Width Size of the PicScreen
>
> (MAX_MAPY + 1)  * 32 = The Height Size of the PicScreen
>
>  
>
> Check it if it is correct.. otherwise there's a problem within your mouse_move location

>! ' Map constants
>! Public Const MAX_MAPS As Long = 100
>! Public Const MAX_MAPX As Byte = (1024 / 32 - 1)
>! Public Const MAX_MAPY As Byte = (512 / 32 - 1)
>! Public Const MAP_MORAL_NONE As Byte = 0
>! Public Const MAP_MORAL_SAFE As Byte = 1

>! ' stuffs
>! Public Const HalfX As Integer = ((MAX_MAPX + 1) / 2) * PIC_X
>! Public Const HalfY As Integer = ((MAX_MAPY + 1) / 2) * PIC_Y
>! Public Const ScreenX As Integer = (MAX_MAPX + 1) * PIC_X
>! Public Const ScreenY As Integer = (MAX_MAPY + 1) * PIC_Y
>! Public Const StartXValue As Integer = ((MAX_MAPX + 1) / 2)
>! Public Const StartYValue As Integer = ((MAX_MAPY + 1) / 2)
>! Public Const EndXValue As Integer = (MAX_MAPX + 1) + 1
>! Public Const EndYValue As Integer = (MAX_MAPY + 1) + 1
>! Public Const Half_PIC_X As Integer = PIC_X / 2
>! Public Const Half_PIC_Y As Integer = PIC_Y / 2
Link to comment
Share on other sites

Here is the full client fix for [Mirage Legacy](http://www.eclipseorigins.com/community/index.php?/topic/133489-mirage-legacy-orpg-engine-new-community-support/) 1.2.2 [https://www.dropbox.com/s/1d96m2vgy24hnj8/client.rar?dl=0](https://www.dropbox.com/s/1d96m2vgy24hnj8/client.rar?dl=0)

If you have a custom gui just cut ,copy and past the the pic screen out of this one into yours. The pic screen its self was bugged.
Link to comment
Share on other sites

> Here is the full client fix for [Mirage Legacy](http://www.eclipseorigins.com/community/index.php?/topic/133489-mirage-legacy-orpg-engine-new-community-support/) 1.2.2 [https://www.dropbox.com/s/1d96m2vgy24hnj8/client.rar?dl=0](https://www.dropbox.com/s/1d96m2vgy24hnj8/client.rar?dl=0)
>
> If you have a custom gui just cut ,copy and past the the pic screen out of this one into yours. The pic screen its self was bugged.

Show me how to fix it please

*After I created the event . It appears run-time error 9 on the server.
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...