Mirage Source

Free ORPG making software.
It is currently Wed Jun 05, 2024 9:48 pm

All times are UTC




Post new topic Reply to topic  [ 69 posts ]  Go to page Previous  1, 2, 3  Next
Author Message
 Post subject: Re: MS4
PostPosted: Mon Jun 01, 2009 8:33 pm 
Offline
Persistant Poster
User avatar

Joined: Fri Aug 15, 2008 3:11 pm
Posts: 633
when fps unlocked
there is a recieving map error when starting up

_________________
╔╗╔═╦═╦══╦═══╗
║║║║║║║╔╗║╔═╗║
║║║║║║║╚╝║║║║║
║╚╣║║║║╔╗║╚═╝║
╚═╩╩═╩╩╝╚╩═══╝


╔╦═╦╦════╦═══╗
║║║║╠═╗╔═╣╔══╝
║║║║║║║║╚═╗
║║║║║║║║╔═╝
╚═╩═╝╚╝╚╝ ?


Top
 Profile  
 
 Post subject: Re: MS4
PostPosted: Mon Jun 01, 2009 8:41 pm 
Offline
Pro
User avatar

Joined: Tue Nov 13, 2007 2:42 pm
Posts: 509
Doomy wrote:
when fps unlocked
there is a recieving map error when starting up


I took out an unneeded "DoEvents" that was in the gameloop. If you 'unlock' the fps now, you need to add a "DoEvents".


Code:
'        ' Lock fps
'        Do While GetTickCount < Tick + 25
'            DoEvents
'            Sleep 1
'        Loop
        DoEvents


Top
 Profile  
 
 Post subject: Re: MS4
PostPosted: Mon Jun 01, 2009 8:56 pm 
Offline
Pro
User avatar

Joined: Tue Nov 13, 2007 2:42 pm
Posts: 509
To fix a small error with AlertMsg not working.
Server Side
Replace the current AlertMsg with this:
Code:
Public Sub AlertMsg(ByVal Index As Long, ByVal Msg As String)
Dim Buffer As clsBuffer

    Set Buffer = New clsBuffer
    Buffer.PreAllocate Len(Msg) + 4
    Buffer.WriteInteger SAlertMsg
    Buffer.WriteString Msg
   
    Call SendDataTo(Index, Buffer.ToArray)
    DoEvents
    Call CloseSocket(Index)
End Sub


I've updated the download, so you probably won't have to fix this.


Top
 Profile  
 
 Post subject: Re: MS4
PostPosted: Mon Jun 01, 2009 11:53 pm 
Offline
Persistant Poster
User avatar

Joined: Wed Nov 29, 2006 11:25 pm
Posts: 860
Location: Ayer
Thanks Jacob! <3

_________________
Image


Top
 Profile  
 
 Post subject: Re: MS4
PostPosted: Tue Jun 02, 2009 1:48 am 
Offline
Knowledgeable

Joined: Sun Jul 29, 2007 12:23 am
Posts: 199
Why does the client freeze a bit at the start? Is it because its still loading something? I didn't see the frmSendGetData form open.


Top
 Profile  
 
 Post subject: Re: MS4
PostPosted: Tue Jun 02, 2009 3:28 am 
Offline
Banned
User avatar

Joined: Mon Jun 05, 2006 9:22 pm
Posts: 394
Location: USA
He posted the fix in this post. He didn't update the download. It's easy to implement. :D


Top
 Profile  
 
 Post subject: Re: MS4
PostPosted: Tue Jun 02, 2009 12:47 pm 
Offline
Pro
User avatar

Joined: Tue Nov 13, 2007 2:42 pm
Posts: 509
Beres wrote:
Why does the client freeze a bit at the start? Is it because its still loading something? I didn't see the frmSendGetData form open.


I don't notice anything. Anyone else get this problem?

I dunno if anyone has checked, but when you change things in the Map, Npc, Item, Shop, or Spell UDT; You do not need to add anything to the 'Edit' packet. It automatically sends everything in the UDT. You do have to make sure the client and server UDTs are exactly the same though.


Top
 Profile  
 
 Post subject: Re: MS4
PostPosted: Tue Jun 02, 2009 3:56 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
Dynamic sprite sizes and y-based rendering ftw.

Image

_________________
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: MS4
PostPosted: Wed Jun 03, 2009 12:04 am 
Offline
Regular

Joined: Sat Oct 25, 2008 11:58 pm
Posts: 60
Robin, you need to expand your programming knowledge and skills. Working with MS4 and other Generic engines won't likely get you places. Maybe a little money from helping code things for people. But you should try working on a SERIOUS project if not already, that could potentially bring in players. Then be smart, and after a decent amount of people join put out a Item mall like the asians ;P. Just make a bunch of random junk that looks cool that has no real affect on stats. Suckers really go for those.


Top
 Profile  
 
 Post subject: Re: MS4
PostPosted: Wed Jun 03, 2009 12:14 am 
Offline
Pro
User avatar

Joined: Tue Nov 13, 2007 2:42 pm
Posts: 509
David David wrote:
Robin, you need to expand your programming knowledge and skills. Working with MS4 and other Generic engines won't likely get you places. Maybe a little money from helping code things for people. But you should try working on a SERIOUS project if not already, that could potentially bring in players. Then be smart, and after a decent amount of people join put out a Item mall like the asians ;P. Just make a bunch of random junk that looks cool that has no real affect on stats. Suckers really go for those.


Back on topic please.


Top
 Profile  
 
 Post subject: Re: MS4
PostPosted: Wed Jun 03, 2009 7:15 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
David David wrote:
Robin, you need to expand your programming knowledge and skills. Working with MS4 and other Generic engines won't likely get you places. Maybe a little money from helping code things for people. But you should try working on a SERIOUS project if not already, that could potentially bring in players. Then be smart, and after a decent amount of people join put out a Item mall like the asians ;P. Just make a bunch of random junk that looks cool that has no real affect on stats. Suckers really go for those.


Cba.

_________________
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: MS4
PostPosted: Wed Jun 03, 2009 8:59 pm 
Offline
Regular
User avatar

Joined: Thu May 28, 2009 9:39 pm
Posts: 71
Location: Florida
Is there any difference between MS4 and MS 3.0.3? I would like to know what are the advantages/disadvantages to each thanks.

_________________
I support pregnant women! (and Matts)
Image
Image
Image


Top
 Profile  
 
 Post subject: Re: MS4
PostPosted: Wed Jun 03, 2009 9:08 pm 
DarkPhoenix wrote:
Is there any difference between MS4 and MS 3.0.3? I would like to know what are the advantages/disadvantages to each thanks.


Way too much to list. Why not just take a look at both versions of the source? Even MSE1 is better than 303.


Top
  
 
 Post subject: Re: MS4
PostPosted: Wed Jun 03, 2009 9:28 pm 
Offline
Persistant Poster
User avatar

Joined: Fri Aug 15, 2008 3:11 pm
Posts: 633
dark don't even bother using anything other then ms4

_________________
╔╗╔═╦═╦══╦═══╗
║║║║║║║╔╗║╔═╗║
║║║║║║║╚╝║║║║║
║╚╣║║║║╔╗║╚═╝║
╚═╩╩═╩╩╝╚╩═══╝


╔╦═╦╦════╦═══╗
║║║║╠═╗╔═╣╔══╝
║║║║║║║║╚═╗
║║║║║║║║╔═╝
╚═╩═╝╚╝╚╝ ?


Top
 Profile  
 
 Post subject: Re: MS4
PostPosted: Wed Jun 03, 2009 11:50 pm 
Offline
Regular
User avatar

Joined: Thu May 28, 2009 9:39 pm
Posts: 71
Location: Florida
Well MS 3.0.3 is the earliest release out which would give the user much more they can add without worrying about messy code. On the other hand MS4 would be optimized right away but it will have features included with it. I would like to know a general pro/con of each if anyone can do that for me :/

_________________
I support pregnant women! (and Matts)
Image
Image
Image


Top
 Profile  
 
 Post subject: Re: MS4
PostPosted: Wed Jun 03, 2009 11:57 pm 
Offline
Persistant Poster
User avatar

Joined: Thu Mar 29, 2007 10:30 pm
Posts: 1510
Location: Virginia, USA
Google Talk: hpmccloud@gmail.com
Umm MS4 doesn't come with features...it's a fixed up version of all the previous crappy versions.

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

Image
Image


Top
 Profile  
 
 Post subject: Re: MS4
PostPosted: Thu Jun 04, 2009 12:13 am 
Offline
Persistant Poster
User avatar

Joined: Tue May 30, 2006 2:07 am
Posts: 836
Location: Nashville, Tennessee, USA
Google Talk: rs.ruggles@gmail.com
MS 303 Features:
Maps
Npcs
Items
Shops
Spells

MS4 Features:
Maps
Npcs
Items
Shops
Spells

_________________
I'm on Facebook! Google Plus My Youtube Channel My Steam Profile

Image


Top
 Profile  
 
 Post subject: Re: MS4
PostPosted: Thu Jun 04, 2009 12:38 am 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
MS4 programming standard:
6/10

MS3.0.3 programing standard:
2/10

_________________
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: MS4
PostPosted: Thu Jun 04, 2009 12:49 am 
Offline
Regular
User avatar

Joined: Thu May 28, 2009 9:39 pm
Posts: 71
Location: Florida
So MS4 is easier to program with?

_________________
I support pregnant women! (and Matts)
Image
Image
Image


Top
 Profile  
 
 Post subject: Re: MS4
PostPosted: Thu Jun 04, 2009 1:10 am 
Offline
Persistant Poster
User avatar

Joined: Fri Aug 15, 2008 3:11 pm
Posts: 633
it has more standardize coding, it is easier to read and work though once you find out how to do it.
everything is in groups like the map editor stuff all the editors are in one section.
I say if your learning vb6 do ms4

_________________
╔╗╔═╦═╦══╦═══╗
║║║║║║║╔╗║╔═╗║
║║║║║║║╚╝║║║║║
║╚╣║║║║╔╗║╚═╝║
╚═╩╩═╩╩╝╚╩═══╝


╔╦═╦╦════╦═══╗
║║║║╠═╗╔═╣╔══╝
║║║║║║║║╚═╗
║║║║║║║║╔═╝
╚═╩═╝╚╝╚╝ ?


Top
 Profile  
 
 Post subject: Re: MS4
PostPosted: Thu Jun 04, 2009 2:29 am 
Offline
Regular
User avatar

Joined: Thu May 28, 2009 9:39 pm
Posts: 71
Location: Florida
alright then ^^. MS4 it is.

_________________
I support pregnant women! (and Matts)
Image
Image
Image


Top
 Profile  
 
 Post subject: Re: MS4
PostPosted: Thu Jun 04, 2009 1:31 pm 
Offline
Pro
User avatar

Joined: Tue Nov 13, 2007 2:42 pm
Posts: 509
Have any more errors been found?


Top
 Profile  
 
 Post subject: Re: MS4
PostPosted: Fri Jun 05, 2009 12:54 am 
Offline
Persistant Poster
User avatar

Joined: Wed Nov 29, 2006 11:25 pm
Posts: 860
Location: Ayer
Here's one:

/warpto kicks admin for text modification

_________________
Image


Top
 Profile  
 
 Post subject: Re: MS4
PostPosted: Fri Jun 05, 2009 12:04 pm 
Offline
Pro
User avatar

Joined: Tue Nov 13, 2007 2:42 pm
Posts: 509
To fix the warp issue, replace the "WarpTo" sub with this:
Code:
Public Sub WarpTo(ByVal MapNum As Long)
Dim Buffer As clsBuffer
   
    Set Buffer = New clsBuffer
   
    Buffer.PreAllocate 6
    Buffer.WriteInteger CWarpTo
    Buffer.WriteLong MapNum
    Call SendData(Buffer.ToArray())
End Sub


Updated the download.


Top
 Profile  
 
 Post subject: Re: MS4
PostPosted: Tue Jun 16, 2009 9:05 pm 
Offline
Persistant Poster
User avatar

Joined: Thu Jul 24, 2008 6:42 am
Posts: 703
Google Talk: infectiousbyte@gmail.com
lol, I love how I had to change the server and client ports to match, as well as make sure that both server and client SEP_CHAR and END_CHAR's match, before I could even login to MS4.

Also 3_79 lags like fuck for me.

_________________
Image
GIAKEN wrote:
Since I'm into men, not women

GIAKEN wrote:
I can't take these huge penises anymore! All that's left is shame! And blood


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 69 posts ]  Go to page Previous  1, 2, 3  Next

All times are UTC


Who is online

Users browsing this forum: No registered users and 2 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:  
Powered by phpBB® Forum Software © phpBB Group