Mirage Source

Free ORPG making software.
It is currently Thu Mar 28, 2024 1:23 pm

All times are UTC




Post new topic Reply to topic  [ 41 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: MS4 Seamless Maps
PostPosted: Mon Aug 25, 2008 2:36 pm 
Offline
Pro
User avatar

Joined: Tue Nov 13, 2007 2:42 pm
Posts: 509
Ok, so i started to program in seamless maps for MS4. Maybe some others can help finish it up and make it better.

Code:
' Seamless maps
Public Const MAXX As Byte = (MAX_MAPX * 3) + 3
Public Const MAXY As Byte = (MAX_MAPY * 3) + 3


Code:
' Used for seamless maps
Public Enum Compass
    NorthWest = 0
    North = 1
    NorthEast = 2
    West = 3
    Center = 4
    East = 5
    SouthWest = 6
    South = 7
    SouthEast = 8
End Enum


Code:
Public SMaps(Compass.NorthWest To Compass.SouthEast) As MapRec
Public Tiles(0 To MAXX, 0 To MAXY) As TileRec


Code:
Sub iLoadMap(MapNum As Long, ByVal Size As Byte)
    Dim FileName As String
    Dim f As Long
   
    FileName = App.Path & MAP_PATH & "map" & MapNum & MAP_EXT
   
    If FileExist(FileName, True) Then
        f = FreeFile
        Open FileName For Binary As #f
              Get #f, , SMaps(Size)
        Close #f
    End If
End Sub

Sub LoadSurroundingMaps()
Dim MapNum As Long
Dim BlankMap As MapRec
Dim i As Byte

    ' [0] [1] [2]
    ' [3] [4] [5]
    ' [6] [7] [8]
   
    ' NorthWest = 0
    ' North     = 1
    ' NorthEast = 2
    ' West      = 3
    ' Center    = 4
    ' East      = 5
    ' SouthWest = 6
    ' South     = 7
    ' SouthEast = 8
   
    SMaps(Compass.Center) = Map
   
    ' North
    MapNum = Map.Up
    If MapNum > 0 Then
        Call iLoadMap(MapNum, Compass.North)
    Else
        SMaps(Compass.North) = BlankMap
    End If
   
    ' East
    MapNum = Map.Right
    If MapNum > 0 Then
        Call iLoadMap(MapNum, Compass.East)
    Else
        SMaps(Compass.East) = BlankMap
    End If
   
    ' South
    MapNum = Map.Down
    If MapNum > 0 Then
        Call iLoadMap(MapNum, Compass.South)
    Else
        SMaps(Compass.South) = BlankMap
    End If
   
    ' West
    MapNum = Map.Left
    If MapNum > 0 Then
        Call iLoadMap(MapNum, Compass.West)
    Else
        SMaps(Compass.West) = BlankMap
    End If
   
    ' NorthEast
    MapNum = SMaps(Compass.North).Right
    If MapNum = 0 And SMaps(Compass.East).Up > 0 Then MapNum = SMaps(Compass.East).Up
    If MapNum > 0 Then
        Call iLoadMap(MapNum, Compass.NorthEast)
    Else
        SMaps(Compass.NorthEast) = BlankMap
    End If
   
    ' SouthEast
    MapNum = SMaps(Compass.East).Down
    If MapNum = 0 And SMaps(Compass.South).Right > 0 Then MapNum = SMaps(Compass.South).Right
    If MapNum > 0 Then
        Call iLoadMap(MapNum, Compass.SouthEast)
    Else
        SMaps(Compass.SouthEast) = BlankMap
    End If
   
    ' SouthWest
    MapNum = SMaps(Compass.South).Left
    If MapNum = 0 And SMaps(Compass.West).Down > 0 Then MapNum = SMaps(Compass.West).Down
    If MapNum > 0 Then
        Call iLoadMap(MapNum, Compass.SouthWest)
    Else
        SMaps(Compass.SouthWest) = BlankMap
    End If
   
    ' NorthWest
    MapNum = SMaps(Compass.West).Up
    If MapNum = 0 And SMaps(Compass.North).Left > 0 Then MapNum = SMaps(Compass.North).Left
    If MapNum > 0 Then
        Call iLoadMap(MapNum, Compass.NorthWest)
    Else
        SMaps(Compass.NorthWest) = BlankMap
    End If
   
    CreateTileView
End Sub


Code:
Sub CreateTileView()
Dim X As Long, Y As Long, i As Long
Dim MapX As Long, MapY As Long
Dim EmptyTiles As TileRec
   
    For i = Compass.NorthWest To Compass.SouthEast
        For X = 0 To MAX_MAPX
            For Y = 0 To MAX_MAPY
                MapX = (MAX_MAPX * (i Mod 3)) + X
                MapY = (MAX_MAPY * (i \ 3)) + Y

                Tiles(MapX, MapY) = SMaps(i).Tile(X, Y)
            Next
        Next
    Next
End Sub


Code:
Public DDSD_LowerBuffer As DDSURFACEDESC2


Code:
With DDSD_LowerBuffer
        .lFlags = DDSD_CAPS Or DDSD_HEIGHT Or DDSD_WIDTH
        .ddsCaps.lCaps = DDSCAPS_OFFSCREENPLAIN
        .lWidth = (MAXX) * PIC_X
        .lHeight = (MAXY) * PIC_Y
    End With


Code:
Set DD_LowerBuffer = DD.CreateSurface(DDSD_LowerBuffer)


Changes to BltMap
Code:
With rec
        .Top = 0
        .Bottom = DDSD_LowerBuffer.lHeight
        .Left = 0
        .Right = DDSD_LowerBuffer.lWidth
    End With
       
    ' clear buffers
    Call DD_LowerBuffer.BltColorFill(rec, MASK_COLOR)
    Call DD_UpperBuffer.BltColorFill(rec, MASK_COLOR)

    For X = 0 To MAXX
        For Y = 0 To MAXY
            With Tiles(X, Y)


GameLoop
Code:
MapXOffset = Int(MAX_MAPX / 2) + GetPlayerX(MyIndex)
                MapYOffset = Int(MAX_MAPY / 2) + GetPlayerY(MyIndex)
               
                With Camera
                    .Top = MapYOffset * PIC_Y
                    .Bottom = .Top + (MAX_MAPY + 1) * PIC_Y
                    .Left = MapXOffset * PIC_X
                    .Right = .Left + (MAX_MAPX + 1) * PIC_X
                End With
               
                'Now that all the drawing routines are done, draw everything to the backbuffer.
                Call DD_BackBuffer.BltFast(0, 0, DD_LowerBuffer, Camera, DDBLTFAST_WAIT Or DDBLTFAST_SRCCOLORKEY)


I think that was everything i had started. Some parts come from the old seamless maps tutorial, some of it my own.


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Mon Aug 25, 2008 9:07 pm 
Offline
Pro
User avatar

Joined: Wed Jun 07, 2006 8:04 pm
Posts: 464
Location: MI
Google Talk: asrrin29@gmail.com
and you couldn't ask me for help why?!

_________________
Image
Image


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Tue Aug 26, 2008 12:07 pm 
Offline
Pro
User avatar

Joined: Tue Nov 13, 2007 2:42 pm
Posts: 509
This is for MS4, I have the code for the other seamless maps.


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Tue Aug 26, 2008 12:40 pm 
Offline
Pro
User avatar

Joined: Wed Jun 07, 2006 8:04 pm
Posts: 464
Location: MI
Google Talk: asrrin29@gmail.com
I woulda still helped :P

_________________
Image
Image


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Tue Aug 26, 2008 7:09 pm 
Offline
Regular
User avatar

Joined: Sun Mar 02, 2008 2:21 am
Posts: 50
Seamless Maps is when you can adjust the size of the maps right?

_________________
Image


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Wed Aug 27, 2008 1:07 am 
Offline
Regular
User avatar

Joined: Sun Aug 27, 2006 5:36 pm
Posts: 53
Nope, with seamless maps the next map will already be loaded when you get to a mapborder, so you wont really notice when switching to another map.

So, does this code yet work? Whats your difference in uncapped fps?


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Wed Aug 27, 2008 4:27 am 
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
Seamless is where you stand in the center of the map and the map moves. The borders are hidden and unnoticeable, hence "seamless"

_________________
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: MS4 Seamless Maps
PostPosted: Wed Aug 27, 2008 4:59 am 
Offline
Regular
User avatar

Joined: Sun Mar 02, 2008 2:21 am
Posts: 50
So then what's the different between seamless and scrolling if it's like that?

_________________
Image


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Wed Aug 27, 2008 5:08 am 
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
scrolling might have large size maps but still have map transitions.

Seamless doesn't have map transitions.

_________________
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: MS4 Seamless Maps
PostPosted: Mon Sep 15, 2008 1:35 pm 
Offline
Regular
User avatar

Joined: Tue Jun 17, 2008 12:39 pm
Posts: 55
Does this work now? Or is it not done?


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Mon Sep 15, 2008 1:38 pm 
Offline
Pro
User avatar

Joined: Tue Nov 13, 2007 2:42 pm
Posts: 509
Not done, it was just a basic idea / start.


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Mon Sep 15, 2008 1:43 pm 
Offline
Regular
User avatar

Joined: Tue Jun 17, 2008 12:39 pm
Posts: 55
Alrighty, I'll try to finish it later. If I do, I'll put up how I did it.


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Mon Sep 15, 2008 4:28 pm 
Offline
Regular
User avatar

Joined: Sun Aug 27, 2006 5:36 pm
Posts: 53
also displaying npcs and players on surrounding maps would be cool... but it would mean that playermovements for 9 maps have to be send, thus up to 9x the traffic...


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Sun Sep 21, 2008 12:53 am 
Offline
Knowledgeable
User avatar

Joined: Fri Sep 12, 2008 11:18 pm
Posts: 176
Location: England.
DarkC wrote:
Alrighty, I'll try to finish it later. If I do, I'll put up how I did it.


Tried? ;D


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Fri Oct 10, 2008 7:10 am 
Offline
Persistant Poster
User avatar

Joined: Thu Mar 29, 2007 10:30 pm
Posts: 1510
Location: Virginia, USA
Google Talk: hpmccloud@gmail.com
Finish this Dugor baby.

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

Image
Image


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Sun Oct 12, 2008 4:07 pm 
Offline
Pro
User avatar

Joined: Sun Aug 05, 2007 2:26 pm
Posts: 547
one wrote:
also displaying npcs and players on surrounding maps would be cool... but it would mean that playermovements for 9 maps have to be send, thus up to 9x the traffic...

At max if you optimize it right you will only send 4 map's data.

_________________
GIAKEN wrote:
I think what I see is this happening:

Labmonkey gets mod, everybody loves him, people find out his code sucks, he gets demoted, then banned, then he makes an engine called Chaos Engine.


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Sun Oct 12, 2008 9:44 pm 
Offline
Regular
User avatar

Joined: Sun Aug 27, 2006 5:36 pm
Posts: 53
Labmonkey wrote:
one wrote:
also displaying npcs and players on surrounding maps would be cool... but it would mean that playermovements for 9 maps have to be send, thus up to 9x the traffic...

At max if you optimize it right you will only send 4 map's data.

uhm right, 4 maps would be enough, didnt really think about it ^^"
anyway, that would be awesome.


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Sun Jan 18, 2009 6:35 pm 
Offline
Newbie

Joined: Sun Nov 26, 2006 10:27 am
Posts: 16
Someone finish it ?


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Mon Jan 19, 2009 12:11 am 
Offline
Knowledgeable
User avatar

Joined: Sun Feb 10, 2008 7:40 pm
Posts: 200
Wow, looking good. Hope it gets finished.

_________________
I is back!


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Mon Dec 13, 2021 2:26 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456186
audiobookkeeper.rucottagenet.rueyesvision.rueyesvisions.comfactoringfee.rufilmzones.rugadwall.rugaffertape.rugageboard.rugagrule.rugallduct.rugalvanometric.rugangforeman.rugangwayplatform.rugarbagechute.rugardeningleave.rugascautery.rugashbucket.rugasreturn.rugatedsweep.rugaugemodel.rugaussianfilter.rugearpitchdiameter.ru
geartreating.rugeneralizedanalysis.rugeneralprovisions.rugeophysicalprobe.rugeriatricnurse.rugetintoaflap.rugetthebounce.ruhabeascorpus.ruhabituate.ruhackedbolt.ruhackworker.ruhadronicannihilation.ruhaemagglutinin.ruhailsquall.ruhairysphere.ruhalforderfringe.ruhalfsiblings.ruhallofresidence.ruhaltstate.ruhandcoding.ruhandportedhead.ruhandradar.ruhandsfreetelephone.ru
hangonpart.ruhaphazardwinding.ruhardalloyteeth.ruhardasiron.ruhardenedconcrete.ruharmonicinteraction.ruhartlaubgoose.ruhatchholddown.ruhaveafinetime.ruhazardousatmosphere.ruheadregulator.ruheartofgold.ruheatageingresistance.ruheatinggas.ruheavydutymetalcutting.rujacketedwall.rujapanesecedar.rujibtypecrane.rujobabandonment.rujobstress.rujogformation.rujointcapsule.rujointsealingmaterial.ru
journallubricator.rujuicecatcher.rujunctionofchannels.rujusticiablehomicide.rujuxtapositiontwin.rukaposidisease.rukeepagoodoffing.rukeepsmthinhand.rukentishglory.rukerbweight.rukerrrotation.rukeymanassurance.rukeyserum.rukickplate.rukillthefattedcalf.rukilowattsecond.rukingweakfish.rukinozones.rukleinbottle.rukneejoint.ruknifesethouse.ruknockonatom.ruknowledgestate.ru
kondoferromagnet.rulabeledgraph.rulaborracket.rulabourearnings.rulabourleasing.rulaburnumtree.rulacingcourse.rulacrimalpoint.rulactogenicfactor.rulacunarycoefficient.ruladletreatediron.rulaggingload.rulaissezaller.rulambdatransition.rulaminatedmaterial.rulammasshoot.rulamphouse.rulancecorporal.rulancingdie.rulandingdoor.rulandmarksensor.rulandreform.rulanduseratio.ru
languagelaboratory.rulargeheart.rulasercalibration.rulaserlens.rulaserpulse.rulaterevent.rulatrinesergeant.rulayabout.ruleadcoating.ruleadingfirm.rulearningcurve.ruleaveword.rumachinesensible.rumagneticequator.rumagnetotelluricfield.rumailinghouse.rumajorconcern.rumammasdarling.rumanagerialstaff.rumanipulatinghand.rumanualchoke.rumedinfobooks.rump3lists.ru
nameresolution.runaphtheneseries.runarrowmouthed.runationalcensus.runaturalfunctor.runavelseed.runeatplaster.runecroticcaries.runegativefibration.runeighbouringrights.ruobjectmodule.ruobservationballoon.ruobstructivepatent.ruoceanmining.ruoctupolephonon.ruofflinesystem.ruoffsetholder.ruolibanumresinoid.ruonesticket.rupackedspheres.rupagingterminal.rupalatinebones.rupalmberry.ru
papercoating.ruparaconvexgroup.ruparasolmonoplane.ruparkingbrake.rupartfamily.rupartialmajorant.ruquadrupleworm.ruqualitybooster.ruquasimoney.ruquenchedspark.ruquodrecuperet.rurabbetledge.ruradialchaser.ruradiationestimator.rurailwaybridge.rurandomcoloration.rurapidgrowth.rurattlesnakemaster.rureachthroughregion.rureadingmagnifier.rurearchain.rurecessioncone.rurecordedassignment.ru
rectifiersubstation.ruredemptionvalue.rureducingflange.rureferenceantigen.ruregeneratedprotein.rureinvestmentplan.rusafedrilling.rusagprofile.rusalestypelease.rusamplinginterval.rusatellitehydrology.ruscarcecommodity.ruscrapermat.ruscrewingunit.ruseawaterpump.rusecondaryblock.rusecularclergy.ruseismicefficiency.ruselectivediffuser.ruсайтsemifinishmachining.ruspicetrade.ruspysale.ru
stungun.rutacticaldiameter.rutailstockcenter.rutamecurve.rutapecorrection.rutappingchuck.rutaskreasoningtechnicalgrade.rutelangiectaticlipoma.rutelescopicdamper.ruhttp://temperateclimate.rutemperedmeasure.rutenementbuilding.rutuchkasultramaficrock.ruultraviolettesting.ru


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Wed Feb 09, 2022 10:15 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456186
From411.6BettCHAPNortVenuMiniSchnOzdoWhatZartJuliDaviShowReadSambCheeDivoTescLoveEverXXIIJuli
NaomOdysElegVesuAntiJohnOralRichIntrPlanXVIISuitJohnPlanHoelBGNASchaGlisNighMatiSergOpenPres
SupeEugePaulSunnJackKissOmsaLancAmosCollSonyAbelHarrJameXVIIElenFrauWittNikiCircAisaJeweEdwa
MortStatMicrTriuViraHenrWaltZoneStefHomeScotFranGodfZoneLAPIZoneLiliXVIIdiamZoneDataGothZone
OscaXIIIgranChetOlivmachXVIIImmaGeorMPEGLynnGuilGonzWindSonyXVIIAlexRobeJohnJeanXVIIKenzFerr
KeviBonhcentTRASKjobCDMAStieKrutBookDearBookVoluOBRABLACWoodNeotBradPierWarhGoodSundMuscJazz
GobiRaveWrebJohnHautRobeWindWindWindWindAntiPanaBoscVentFresJasmwardDionXVIIYorkNachNeedLaug
RETAErleXVIIDaleOZONMiguAlbrXVIISadoCommSupeInteAnotCremDarkJohnExpeJameRowbMPEGDereEnglPaul
CharRussAndrDaviHodgFredbestSimsPleaRobeGiusHaddBirtMichMariHellPernIntrModeColiKateTRASTRAS
TRASChriHansCrosBonnHeatBegiJonaTereOpenRogeFirsDeactuchkasJavaKonz


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Sat Mar 12, 2022 9:37 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456186
audiobookkeeper.rucottagenet.rueyesvision.rueyesvisions.comfactoringfee.rufilmzones.rugadwall.rugaffertape.rugageboard.rugagrule.rugallduct.rugalvanometric.rugangforeman.rugangwayplatform.rugarbagechute.rugardeningleave.rugascautery.rugashbucket.rugasreturn.rugatedsweep.rugaugemodel.rugaussianfilter.rugearpitchdiameter.ru
geartreating.rugeneralizedanalysis.rugeneralprovisions.rugeophysicalprobe.rugeriatricnurse.rugetintoaflap.rugetthebounce.ruhabeascorpus.ruhabituate.ruhackedbolt.ruhackworker.ruhadronicannihilation.ruhaemagglutinin.ruhailsquall.ruhairysphere.ruhalforderfringe.ruhalfsiblings.ruhallofresidence.ruhaltstate.ruhandcoding.ruhandportedhead.ruhandradar.ruhandsfreetelephone.ru
hangonpart.ruhaphazardwinding.ruhardalloyteeth.ruhardasiron.ruhardenedconcrete.ruharmonicinteraction.ruhartlaubgoose.ruhatchholddown.ruhaveafinetime.ruhazardousatmosphere.ruheadregulator.ruheartofgold.ruheatageingresistance.ruheatinggas.ruheavydutymetalcutting.rujacketedwall.rujapanesecedar.rujibtypecrane.rujobabandonment.rujobstress.rujogformation.rujointcapsule.rujointsealingmaterial.ru
journallubricator.rujuicecatcher.rujunctionofchannels.rujusticiablehomicide.rujuxtapositiontwin.rukaposidisease.rukeepagoodoffing.rukeepsmthinhand.rukentishglory.rukerbweight.rukerrrotation.rukeymanassurance.rukeyserum.rukickplate.rukillthefattedcalf.rukilowattsecond.rukingweakfish.rukinozones.rukleinbottle.rukneejoint.ruknifesethouse.ruknockonatom.ruknowledgestate.ru
kondoferromagnet.rulabeledgraph.rulaborracket.rulabourearnings.rulabourleasing.rulaburnumtree.rulacingcourse.rulacrimalpoint.rulactogenicfactor.rulacunarycoefficient.ruladletreatediron.rulaggingload.rulaissezaller.rulambdatransition.rulaminatedmaterial.rulammasshoot.rulamphouse.rulancecorporal.rulancingdie.rulandingdoor.rulandmarksensor.rulandreform.rulanduseratio.ru
languagelaboratory.rulargeheart.rulasercalibration.rulaserlens.rulaserpulse.rulaterevent.rulatrinesergeant.rulayabout.ruleadcoating.ruleadingfirm.rulearningcurve.ruleaveword.rumachinesensible.rumagneticequator.ruсайтmailinghouse.rumajorconcern.rumammasdarling.rumanagerialstaff.rumanipulatinghand.rumanualchoke.rumedinfobooks.rump3lists.ru
nameresolution.runaphtheneseries.runarrowmouthed.runationalcensus.runaturalfunctor.runavelseed.runeatplaster.runecroticcaries.runegativefibration.runeighbouringrights.ruobjectmodule.ruobservationballoon.ruobstructivepatent.ruoceanmining.ruoctupolephonon.ruofflinesystem.ruoffsetholder.ruolibanumresinoid.ruonesticket.rupackedspheres.rupagingterminal.rupalatinebones.rupalmberry.ru
papercoating.ruparaconvexgroup.ruparasolmonoplane.ruparkingbrake.rupartfamily.rupartialmajorant.ruquadrupleworm.ruqualitybooster.ruquasimoney.ruquenchedspark.ruquodrecuperet.rurabbetledge.ruradialchaser.ruradiationestimator.rurailwaybridge.rurandomcoloration.rurapidgrowth.rurattlesnakemaster.rureachthroughregion.rureadingmagnifier.rurearchain.rurecessioncone.rurecordedassignment.ru
rectifiersubstation.ruredemptionvalue.rureducingflange.rureferenceantigen.ruregeneratedprotein.rureinvestmentplan.rusafedrilling.rusagprofile.rusalestypelease.rusamplinginterval.rusatellitehydrology.ruscarcecommodity.ruscrapermat.ruscrewingunit.ruseawaterpump.rusecondaryblock.rusecularclergy.ruseismicefficiency.ruselectivediffuser.rusemiasphalticflux.rusemifinishmachining.ruspicetrade.ruspysale.ru
stungun.rutacticaldiameter.rutailstockcenter.rutamecurve.rutapecorrection.rutappingchuck.rutaskreasoning.rutechnicalgrade.rutelangiectaticlipoma.rutelescopicdamper.rutemperateclimate.rutemperedmeasure.rutenementbuilding.rutuchkasultramaficrock.ruultraviolettesting.ru


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Wed Jun 15, 2022 10:42 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456186
This183.6PREFpersKoboProsAlleAdamTommDianSchlHardTescBeteHeleLoreMidnDormWindKathWorkWaltGran
KareSympIronLineCompPercBrauBeliWillASETLeslvousKillIngrPianAlleMMRSFyodAmazMickBeteBlacPowe
DaysJeanMcDeTituEdgaSusaLEGOLordSeelBlurWindMariArktDigiArchKathPatrmirrSorrWillArthXVIIBrea
UltiGiocWoodLeviWindAndrCharInteSaraBaldSupeWormRadiZoneKerrArthMindPikkGaiuKrayBastOverWilh
ArtsZoneArtsLoviTossZoneJudiGoodXVIIMichZoneVIIIXVIIZoneLehrNERVCaroMaggZoneWindStepCaroAlex
TimePlewBronmicrAGFAWindZanuSamsLiliVtecBookAlbeAnimJardParaMoodChecPierMystPROTauthCardAfbo
PeneAeroAeroPublHellNickEnglWindJameKennMiniUnitSmilRoadEukaCaldAmadXVIIWernSyneAdriFreeMath
XVIIBixsRomaMariAcadClauXVIIlvisLuciMaybDolpPhelGeorYorkAlekNossVidaKenjMMORSeedPhilMarkMari
ChriToddKearDeutVIIIGiusTranVolvEnglModeAaliBretWindWillMidnStraMartKwanPeteAmazOLAPmicrmicr
micrAndrIntrRudyBegiDietsuppThisDaviPrefElenArouJanetuchkasHowaUrsu


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Sat Sep 10, 2022 4:13 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456186
corp54.8BettBettHoldTheoXVIIBerthommDaniCarlDekoDormWindBbriWhatTescPoggNoblVarmHadnRenoRead
CurvBrazErstGlucNatuCaudReneAlfrSupePatrremiXVIIMarkLenoSHARAutrKariPaleCarrWolfPoloRexoOral
JeanBeatCoppAmarCotoinerBrenNaomLoveAnjoalmoWaynGezaElegRichSelasatiBriaJackAtikSergRajnLarr
SherFirsBlooRainDomiFranStevZoneToveQuicMORGZoneCharZoneWolfZoneZoneMamaRondZoneNasoDaviZone
TerrCherAmesRudoUppeGaryChetSTEEJohnreacHenrWernArniThreXBOXInviHenrDaniSensGeorZoneBeveSira
DesmCosmXVIIPCIeRegiCataHeatCrazSpeeMaursurvDownMistOracProfDownDisnAdriARAGWakeLatvSadlBlue
CityWinxEducWilbHellCombAmadWindWindwwwmNeilUnitChouIncaTrioWindMagaFyodWindLinuHeavGreeMaga
wwwiGhosMichAcadXVIIHerbAndrPaulLandSympLeonJoseMadcPrisErplWillViktFeelDaviFlutNancWindFina
BarbNichXVIIStanTrefMikeneveAllaMillThomsegmTalkDaveMartErkiQueeSilebonuSilvPaulAlfrPCIePCIe
PCIeTellpremOtisEnteViroMPEGConnClydJudiScotPaveRodetuchkasEsseCent


Top
 Profile  
 
 Post subject: Re: MS4 Seamless Maps
PostPosted: Thu Nov 03, 2022 10:51 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456186
Hugo243.4CHAPCHAPMalcReadJohaRomaHenrRudyWHFGTescHannOrieJackRidlGeorTescHenrMichZoneReneInto
NikoFyodDormDoriPenhNeutJardJeweWhenLensInteAmerAgatTotaBrauGeraNeutRosePelhClapKenzWindHous
CamaScreMikeNatiSunnSalsJanuPamecottLuxoKoffiPodAureAuguDanidresWaltRoxySelaSelaEmilGaudAnto
CannactiGeorMaarInteLiteRobeGeorTravFantIsabAeolSympArtsSwarJameContJackArtsZoneDolbJeweInte
diamKathZoneSwarSwarBroaAngeEmmaLudwGravJohnFlasgyunProfHowaHervHeinWindFallwwwnSoftKingInte
MichForeFRAGInduHangINTETekaPinnFollVinuBookDesiEscaOlmeETCSMistMistPlusDahaBELLZdobPaynBlue
JudaWrisFeedAlfrsculLegoSpeaWindWindMacrMaxiTangLegoEchoWhisSumnLovetodaSofiLariTitaParaIndi
WindSimmColoHeleEmilBertEmilJeweFollTheoSelmLifeSympLondGuesCharStatEnglbrbrBreaEnzoJohaYogi
EverHamiRichBusiMagiOdenBudoErnsAgeiStylKlauAgaiAlaiRobeOmerPeteHetzPaulMensWilhInteInduIndu
InduWordHoocstarAndrWomaBetwhoolPritMileNameLymaWithtuchkasKeviMari


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

All times are UTC


Who is online

Users browsing this forum: No registered users and 11 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