![]() |
Download MSE2 - Printable Version +- Mirage Engine (https://mirage-engine.uk/forums) +-- Forum: Mirage Source (Nostalgia) (https://mirage-engine.uk/forums/forumdisplay.php?fid=61) +--- Forum: Archive (2006-2011) (https://mirage-engine.uk/forums/forumdisplay.php?fid=18) +---- Forum: Source Code Development (https://mirage-engine.uk/forums/forumdisplay.php?fid=51) +----- Forum: Mirage Source 3.x.x, MSx (https://mirage-engine.uk/forums/forumdisplay.php?fid=45) +----- Thread: Download MSE2 (/showthread.php?tid=1611) |
Download MSE2 - William - 12-03-2008 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 Re: Download MSE2 - Becoming - 12-03-2008 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 ? Re: Download MSE2 - William - 12-03-2008 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 Re: Download MSE2 - William - 12-03-2008 Download fixed, added some dll and ocx files and a registerfile.bat to register them. Re: Download MSE2 - Robin - 13-03-2008 You need to fix it so if you click on the game screen focus is set to the chat textbox. Re: Download MSE2 - William - 13-03-2008 Fast fix in frmMirage: Code: Private Sub picScreen_GotFocus() I will add it later on, but just now. Bhenur fixed a bug in k2h which allows me to work on it again ![]() ![]() Re: Download MSE2 - Matt - 13-03-2008 uFail by using the on error resume next shit. That's not fixing code, or optimizing it. That's just lazy. Re: Download MSE2 - William - 13-03-2008 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. Re: Download MSE2 - Robin - 13-03-2008 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. Re: Download MSE2 - William - 13-03-2008 Too bad it can't stop VB from closing down due to fmod. Re: Download MSE2 - Matt - 14-03-2008 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. 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 Re: Download MSE2 - William - 14-03-2008 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. Re: Download MSE2 - Matt - 14-03-2008 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. ^_^ Re: Download MSE2 - Robin - 14-03-2008 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. Gone back to the human cloning again? Re: Download MSE2 - Matt - 14-03-2008 Yupp. Lol. I'm workin' on clonin' Hitler and Napoleon right now. ![]() Nah, I'm focusin' on my music. Re: Download MSE2 - William - 27-03-2008 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 Code: Sub SendUpdateItemTo(ByVal Index As Long, ByVal ItemNum As Long) Code: Sub SendUpdateItemTo(ByVal Index As Long, ByVal ItemNum As Long) Re: Download MSE2 - GIAKEN - 14-05-2008 DFA Wrote:On Error Resume Next is the only solution for that specific problem And a good thing to put in the ErrHandle1 label section is something like: Code: If Err.Number > 0 Then 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. Re: Download MSE2 - Anarchy - 07-12-2008 Where are the dll's and the oxc's at?? Re: Download MSE2 - Anthony - 07-12-2008 A dll and ocx download site? Google the ones you need. |