Mirage Source

Free ORPG making software.
It is currently Tue Apr 23, 2024 8:34 am

All times are UTC




Post new topic Reply to topic  [ 21 posts ] 
Author Message
 Post subject: Download MSE2
PostPosted: Wed Mar 12, 2008 6:22 pm 
Offline
Community Leader
User avatar

Joined: Mon May 29, 2006 1:00 pm
Posts: 2538
Location: Sweden
Google Talk: johansson_tk@hotmail.com
MSE Build 2 - Description
MSE2 has several new bug fixes compared to the old versions (MS 3.0.3, 3.0.7 and MSE1 as well). This new source offers a more user friendly interface and some speed changes as well as some minor additions. So if you are new and want a Good source, your right pick is MSE2, both in performance and speed.

Original MSE2: Download MSE2

_________________
I'm on Facebook!My Youtube Channel Send me an email
Image


Top
 Profile  
 
 Post subject: Re: Download MSE2
PostPosted: Wed Mar 12, 2008 6:34 pm 
Offline
Newbie

Joined: Sat Jun 23, 2007 2:11 am
Posts: 16
so what makes this perform faster ? it actually seems slower than the first.
the direct x is the same, the layers havent changed, packets are the same, could ya tell us the difference between this and the 1st version ?


Top
 Profile  
 
 Post subject: Re: Download MSE2
PostPosted: Wed Mar 12, 2008 6:37 pm 
Offline
Community Leader
User avatar

Joined: Mon May 29, 2006 1:00 pm
Posts: 2538
Location: Sweden
Google Talk: johansson_tk@hotmail.com
There are only basic optimizations done, I didn't bother adding all cause they are in the tutorial board. And they are easy to follow.

viewtopic.php?f=59&t=922

_________________
I'm on Facebook!My Youtube Channel Send me an email
Image


Top
 Profile  
 
 Post subject: Re: Download MSE2
PostPosted: Wed Mar 12, 2008 6:44 pm 
Offline
Community Leader
User avatar

Joined: Sun May 28, 2006 10:29 pm
Posts: 1762
Location: Salt Lake City, UT, USA
Google Talk: Darunada@gmail.com
MSWINSCK.OCX

_________________
I'm on Facebook! Google Plus LinkedIn My Youtube Channel Send me an email Call me with Skype Check me out on Bitbucket Yup, I'm an EVE Online player!
Why not try my app, ColorEye, on your Android devlce?
Do you like social gaming? Fight it out in Battle Juice!

I am a professional software developer in Salt Lake City, UT.


Top
 Profile  
 
 Post subject: Re: Download MSE2
PostPosted: Wed Mar 12, 2008 6:55 pm 
Offline
Community Leader
User avatar

Joined: Mon May 29, 2006 1:00 pm
Posts: 2538
Location: Sweden
Google Talk: johansson_tk@hotmail.com
Download fixed, added some dll and ocx files and a registerfile.bat to register them.

_________________
I'm on Facebook!My Youtube Channel Send me an email
Image


Top
 Profile  
 
 Post subject: Re: Download MSE2
PostPosted: Wed Mar 12, 2008 9:44 pm 
Offline
Community Leader
User avatar

Joined: Sun May 28, 2006 10:29 pm
Posts: 1762
Location: Salt Lake City, UT, USA
Google Talk: Darunada@gmail.com
TABCTL32.OCX
RICHTX32.OCX

;)

_________________
I'm on Facebook! Google Plus LinkedIn My Youtube Channel Send me an email Call me with Skype Check me out on Bitbucket Yup, I'm an EVE Online player!
Why not try my app, ColorEye, on your Android devlce?
Do you like social gaming? Fight it out in Battle Juice!

I am a professional software developer in Salt Lake City, UT.


Top
 Profile  
 
 Post subject: Re: Download MSE2
PostPosted: Thu Mar 13, 2008 10:43 am 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
You need to fix it so if you click on the game screen focus is set to the chat textbox.

_________________
Quote:
Robin:
Why aren't maps and shit loaded up in a dynamic array?
Jacob:
the 4 people that know how are lazy
Robin:
Who are those 4 people?
Jacob:
um
you, me, and 2 others?


Image


Top
 Profile  
 
 Post subject: Re: Download MSE2
PostPosted: Thu Mar 13, 2008 3:49 pm 
Offline
Community Leader
User avatar

Joined: Mon May 29, 2006 1:00 pm
Posts: 2538
Location: Sweden
Google Talk: johansson_tk@hotmail.com
Fast fix in frmMirage:

Code:
Private Sub picScreen_GotFocus()
  On Error Resume Next
  txtMyChat.SetFocus
End Sub


I will add it later on, but just now. Bhenur fixed a bug in k2h which allows me to work on it again :) I changed the frmMirage scalemode from Pixel to Twip cause it makes the moving of frmMirage better. But it also messed up a lot of other things with the gfx. And he found the problem :P I would never have thought of reverting that back.

_________________
I'm on Facebook!My Youtube Channel Send me an email
Image


Top
 Profile  
 
 Post subject: Re: Download MSE2
PostPosted: Thu Mar 13, 2008 4:16 pm 
uFail by using the on error resume next shit. That's not fixing code, or optimizing it. That's just lazy.


Top
  
 
 Post subject: Re: Download MSE2
PostPosted: Thu Mar 13, 2008 4:31 pm 
Offline
Community Leader
User avatar

Joined: Mon May 29, 2006 1:00 pm
Posts: 2538
Location: Sweden
Google Talk: johansson_tk@hotmail.com
Perfekt wrote:
uFail by using the on error resume next [edit]. That's not fixing code, or optimizing it. That's just lazy.

That was taken from k2h, and that on error resume next is there cause the controls doesn't always have time to load on slow computers, and then trying to set the focus to a unloaded object can cause a error.

_________________
I'm on Facebook!My Youtube Channel Send me an email
Image


Top
 Profile  
 
 Post subject: Re: Download MSE2
PostPosted: Thu Mar 13, 2008 5:18 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
Perfekt wrote:
uFail by using the on error resume next [edit]. That's not fixing code, or optimizing it. That's just lazy.


Don't go just regurgitating other people's views on things.

On error resume next can be useful in some code. The way Mirage uses it as a 'I have no idea what's going wrong so I'll just ignore it lol' thingy is poor, but when it comes to Microsoft's... temperamental... controls it can be used to stop hard-to-spot hardware-specific errors.

_________________
Quote:
Robin:
Why aren't maps and shit loaded up in a dynamic array?
Jacob:
the 4 people that know how are lazy
Robin:
Who are those 4 people?
Jacob:
um
you, me, and 2 others?


Image


Top
 Profile  
 
 Post subject: Re: Download MSE2
PostPosted: Thu Mar 13, 2008 5:54 pm 
Offline
Community Leader
User avatar

Joined: Mon May 29, 2006 1:00 pm
Posts: 2538
Location: Sweden
Google Talk: johansson_tk@hotmail.com
Too bad it can't stop VB from closing down due to fmod.

_________________
I'm on Facebook!My Youtube Channel Send me an email
Image


Top
 Profile  
 
 Post subject: Re: Download MSE2
PostPosted: Fri Mar 14, 2008 12:08 am 
Robin wrote:
Perfekt wrote:
uFail by using the on error resume next [edit]. That's not fixing code, or optimizing it. That's just lazy.


Don't go just regurgitating other people's views on things.

On error resume next can be useful in some code. The way Mirage uses it as a 'I have no idea what's going wrong so I'll just ignore it lol' thingy is poor, but when it comes to Microsoft's... temperamental... controls it can be used to stop hard-to-spot hardware-specific errors.


Who says what I was talking about has anything to do with what other people have said?

I personally removed those lines that were in any and all ms games and wait for the errors and fix them.

Guess that's just me though.

/shrugs


Top
  
 
 Post subject: Re: Download MSE2
PostPosted: Fri Mar 14, 2008 12:59 pm 
Offline
Community Leader
User avatar

Joined: Mon May 29, 2006 1:00 pm
Posts: 2538
Location: Sweden
Google Talk: johansson_tk@hotmail.com
There are no On Error Resume Next in MSE2. So don't worry Perfekt. I just use that line in k2h cause it helps people, there are no fix for not loaded controls.

_________________
I'm on Facebook!My Youtube Channel Send me an email
Image


Top
 Profile  
 
 Post subject: Re: Download MSE2
PostPosted: Fri Mar 14, 2008 1:34 pm 
William wrote:
There are no On Error Resume Next in MSE2. So don't worry Perfekt. I just use that line in k2h cause it helps people, there are no fix for not loaded controls.


Oh, I'm not worried. I was just saying. I'll prolly not bother downloading MSE2, cause well.. I really don't program anymore. I'm focusing on other projects and such. ^_^


Top
  
 
 Post subject: Re: Download MSE2
PostPosted: Fri Mar 14, 2008 2:15 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
Perfekt wrote:
William wrote:
There are no On Error Resume Next in MSE2. So don't worry Perfekt. I just use that line in k2h cause it helps people, there are no fix for not loaded controls.


Oh, I'm not worried. I was just saying. I'll prolly not bother downloading MSE2, cause well.. I really don't program anymore. I'm focusing on other projects and such. ^_^


Gone back to the human cloning again?

_________________
Quote:
Robin:
Why aren't maps and shit loaded up in a dynamic array?
Jacob:
the 4 people that know how are lazy
Robin:
Who are those 4 people?
Jacob:
um
you, me, and 2 others?


Image


Top
 Profile  
 
 Post subject: Re: Download MSE2
PostPosted: Fri Mar 14, 2008 3:59 pm 
Yupp. Lol.

I'm workin' on clonin' Hitler and Napoleon right now.

:P

Nah, I'm focusin' on my music.


Top
  
 
 Post subject: Re: Download MSE2
PostPosted: Thu Mar 27, 2008 3:29 pm 
Offline
Community Leader
User avatar

Joined: Mon May 29, 2006 1:00 pm
Posts: 2538
Location: Sweden
Google Talk: johansson_tk@hotmail.com
Fix for those who already downloaded MSE2 and using it:


Client Side, replace this if:
Code:
If (LCase$(Parse(0)) = "updateitem") Then


With:
Code:
    If (LCase$(Parse(0)) = "updateitem") Then
        n = Val(Parse(1))
       
        ' Update the item
        Item(n).Name = Parse(2)
        Item(n).Pic = Val(Parse(3))
        Item(n).Type = Val(Parse(4))
        Item(n).Data1 = Val(Parse(5))
        Item(n).Data2 = Val(Parse(6))
        Item(n).Data3 = Val(Parse(7))
        Exit Sub
    End If

Server Side, replace:
Code:
Sub SendUpdateItemTo(ByVal Index As Long, ByVal ItemNum As Long)
Dim Packet As String

    Packet = "UPDATEITEM" & SEP_CHAR & ItemNum & SEP_CHAR & Trim$(Item(ItemNum).Name) & SEP_CHAR & Item(ItemNum).Pic & SEP_CHAR & Item(ItemNum).Type & SEP_CHAR & END_CHAR
    Call SendDataTo(Index, Packet)
End Sub

With:
Code:
Sub SendUpdateItemTo(ByVal Index As Long, ByVal ItemNum As Long)
Dim Packet As String

    Packet = "UPDATEITEM" & SEP_CHAR & ItemNum & SEP_CHAR & Trim$(Item(ItemNum).Name) & SEP_CHAR & Item(ItemNum).Pic & SEP_CHAR & Item(ItemNum).Type & SEP_CHAR & Item(ItemNum).Data1 & SEP_CHAR & Item(ItemNum).Data2 & SEP_CHAR & Item(ItemNum).Data3 & SEP_CHAR & END_CHAR
    Call SendDataTo(Index, Packet)
End Sub

The download is not yet updated with this fix.

_________________
I'm on Facebook!My Youtube Channel Send me an email
Image


Top
 Profile  
 
 Post subject: Re: Download MSE2
PostPosted: Wed May 14, 2008 12:59 am 
Offline
Persistant Poster
User avatar

Joined: Thu Mar 29, 2007 10:30 pm
Posts: 1510
Location: Virginia, USA
Google Talk: hpmccloud@gmail.com
DFA wrote:
On Error Resume Next is the only solution for that specific problem

If "On Error Resume Next" burns your eyes, try...

Code:
Public Sub Name()
 On Error Goto ErrorHandle1

 Exit Sub
 ErrorHandle1:

End Sub


And a good thing to put in the ErrHandle1 label section is something like:

Code:
If Err.Number > 0 Then
    AddLog "Error: " & Err.Number & "; While running Sub Name(" & Variable1 & ", " & Variable2 & ") at " & whatever function for time & ".", "errorlist.txt"
End If


That's still not good error handling...what would be even better is to do error trapping like vbGORE does with On Error GoTo 0 or however it does it...and also to display the sub name with the variables that are in it.

_________________
Nean wrote:
Yes harold. Give it to me.

Image
Image


Top
 Profile  
 
 Post subject: Re: Download MSE2
PostPosted: Sun Dec 07, 2008 3:52 am 
Offline
Knowledgeable
User avatar

Joined: Thu Jun 01, 2006 11:16 pm
Posts: 112
Where are the dll's and the oxc's at??

_________________
Matt wrote:
We need more black people around here, that way they don't have to dub a white person as the local black guy.


Top
 Profile  
 
 Post subject: Re: Download MSE2
PostPosted: Sun Dec 07, 2008 4:12 am 
Offline
Pro

Joined: Mon May 29, 2006 5:01 pm
Posts: 420
Location: Canada, BC
Google Talk: anthony.fleck@gmail.com
A dll and ocx download site? Google the ones you need.


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 21 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 3 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group