![]() |
[Tweak] Additional Mapping Layer (For MS4) - Printable Version +- Mirage Source (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 4 (Visual Basic 6) (https://mirage-engine.uk/forums/forumdisplay.php?fid=44) +------ Forum: Tutorials (https://mirage-engine.uk/forums/forumdisplay.php?fid=13) +------ Thread: [Tweak] Additional Mapping Layer (For MS4) (/showthread.php?tid=2836) |
Re: [Tweak] Additional Mapping Layer (For MS4) - GIAKEN - 02-06-2009 Need to change it to Layer(0 To 3) As Integer or something...makes it easier to add more. Re: [Tweak] Additional Mapping Layer (For MS4) - Pix€l - 16-06-2009 I've a bug in making of client ! error: " Else Without if " In this code , pls help me ! Code: Public Sub MapEditorMouseDown(Button As Integer) Re: [Tweak] Additional Mapping Layer (For MS4) - GIAKEN - 16-06-2009 Need an End If after: Code: With Map.Tile(CurX, CurY) Re: [Tweak] Additional Mapping Layer (For MS4) - ExoShox - 27-06-2009 James Wrote:After that, add all the necessary components client-side on frmMirage and you're set. Well. No where near all of it. You need to edit the map data packets and the MapCache_Create on the Server or this won't work. (It only saves the Original Setup of Ground, Mask, Animation and Fringe.) Re: [Tweak] Additional Mapping Layer (For MS4) - ExoShox - 28-06-2009 James Wrote:In MS4 is bases them off the enumeration. I don't remember editing any of that and it worked fine.but i used ms4 to do this and it didnt work. the actual data is not sent/recieved or saved by the server Re: [Tweak] Additional Mapping Layer (For MS4) - Jacob - 28-06-2009 Which version of MS4? This works for the byte array version because of the way I cache the maps. Re: [Tweak] Additional Mapping Layer (For MS4) - ExoShox - 28-06-2009 Jacob Wrote:Which version of MS4? This works for the byte array version because of the way I cache the maps.Lol im using 3.78 still. Once I finish a couple more features Im just going to convert it from .78 to .79 Re: [Tweak] Additional Mapping Layer (For MS4) - Joost - 28-06-2009 From the looks of it, it wont work. Unless the packets are really sent differently the server'll expect less tiles than it's recieving. Re: [Tweak] Additional Mapping Layer (For MS4) - Jacob - 28-06-2009 In 3.79, I take the memory address of the map and use that to send data. This way you don't really mess with the packet data at all. It's the same for Items, Npcs, Spells, and shops. Re: [Tweak] Additional Mapping Layer (For MS4) - ExoShox - 28-06-2009 Jacob Wrote:In 3.79, I take the memory address of the map and use that to send data. This way you don't really mess with the packet data at all. I saw that. I dont understand BAP's though. But if I can successfully rip it from MS 3.79 and put it into 3.78 i'll be fine. |