Mirage Source
http://web.miragesource.net/forums/

Converter from old maps to new
http://web.miragesource.net/forums/viewtopic.php?f=201&t=3891
Page 1 of 1

Author:  Erik [ Wed Jun 25, 2008 12:29 pm ]
Post subject:  Converter from old maps to new

I've been working on adding some more layers lately, and I can't seem to get a converter correctly. I've seen the one posted by grim and messed around with it, but I haven't had much luck with that one so I went back to the one I made.


Old TileRec and MapRec:
Code:
Type OldTileRec
    Ground As Integer
    Mask As Integer
    Anim As Integer
    Mask2 As Integer
    M2Anim As Integer
    Fringe As Integer
    FAnim As Integer
    Fringe2 As Integer
    F2Anim As Integer
    Type As Byte
    Data1 As Integer
    Data2 As Integer
    Data3 As Integer
End Type

Type OldMapRec
    Name As String * NAME_LENGTH
    Revision As Long
    Moral As Byte
    Up As Integer
    Down As Integer
    Left As Integer
    Right As Integer
    Music As Byte
    BootMap As Integer
    BootX As Byte
    BootY As Byte
    Shop As Byte
    Tile(0 To MAX_MAPX, 0 To MAX_MAPY) As OldTileRec
    Npc(1 To MAX_MAP_NPCS) As Byte
End Type


New TileRec and MapRec:
Code:
Type TileRec
    Ground As Integer
    Mask As Integer
    Anim As Integer
    Mask2 As Integer
    M2Anim As Integer
    Mask3 As Integer
    M3Anim As Integer
    Fringe As Integer
    FAnim As Integer
    Fringe2 As Integer
    F2Anim As Integer
    Fringe3 As Integer
    F3Anim As Integer
    Type As Byte
    Data1 As Integer
    Data2 As Integer
    Data3 As Integer
End Type

Type MapRec
    Name As String * NAME_LENGTH
    Revision As Long
    Moral As Byte
    Up As Integer
    Down As Integer
    Left As Integer
    Right As Integer
    Music As Byte
    BootMap As Integer
    BootX As Byte
    BootY As Byte
    Shop As Byte
    Indoors As Byte
    Tile(0 To MAX_MAPX, 0 To MAX_MAPY) As TileRec
    Npc(1 To MAX_MAP_NPCS) As Byte
End Type


Converter Code:
Code:
Sub ConvertOldMapsToNew()
Dim filename As String
Dim i As Long
Dim f As Long
Dim r As Long
Dim a As Long
Dim x As Long, y As Long
Dim OldMap As OldMapRec
Dim NewMap As MapRec
Dim TempByte As Byte

        ' Check if the maps directory is there, if its not make it
    If LCase$(Dir(App.Path & "\mapsNEW", vbDirectory)) <> "mapsNEW" Then
        Call MkDir(App.Path & "\mapsNEW")
    End If

    For i = 1 To MAX_MAPS
       
        frmMain.lblProgress.Caption = (i / 10)
        frmMain.Refresh
       
        filename = App.Path & "\maps\map" & i & ".dat"
       
        ' Get the old file
        f = FreeFile
        Open filename For Binary As #f
            Get #f, , OldMap
        Close #f
       
        ' Delete the old file
        'Call Kill(filename)
       
        ' Convert
        NewMap.Name = OldMap.Name
        NewMap.Revision = OldMap.Revision
        NewMap.Moral = OldMap.Moral
        NewMap.Up = OldMap.Up
        NewMap.Down = OldMap.Down
        NewMap.Left = OldMap.Left
        NewMap.Right = OldMap.Right
        NewMap.Music = OldMap.Music
        NewMap.BootMap = OldMap.BootMap
        NewMap.BootX = OldMap.BootX
        NewMap.BootY = OldMap.BootY
        NewMap.Shop = OldMap.Shop
        NewMap.Indoors = TempByte
        For y = 0 To MAX_MAPY
            For x = 0 To MAX_MAPX
                NewMap.Tile(x, y).Ground = Val(OldMap.Tile(x, y).Ground)
                NewMap.Tile(x, y).Mask = Val(OldMap.Tile(x, y).Mask)
                NewMap.Tile(x, y).Anim = Val(OldMap.Tile(x, y).Anim)
                NewMap.Tile(x, y).Mask2 = Val(OldMap.Tile(x, y).Mask2)
                NewMap.Tile(x, y).M2Anim = Val(OldMap.Tile(x, y).M2Anim)
                NewMap.Tile(x, y).Mask3 = TempByte
                NewMap.Tile(x, y).M3Anim = TempByte
                NewMap.Tile(x, y).Fringe = Val(OldMap.Tile(x, y).Fringe)
                NewMap.Tile(x, y).FAnim = Val(OldMap.Tile(x, y).FAnim)
                NewMap.Tile(x, y).Fringe2 = Val(OldMap.Tile(x, y).Fringe2)
                NewMap.Tile(x, y).F2Anim = OldMap.Tile(x, y).F2Anim
                NewMap.Tile(x, y).Fringe3 = TempByte
                NewMap.Tile(x, y).F3Anim = TempByte
                NewMap.Tile(x, y).Type = OldMap.Tile(x, y).Type
                NewMap.Tile(x, y).Data1 = OldMap.Tile(x, y).Data1
                NewMap.Tile(x, y).Data2 = OldMap.Tile(x, y).Data2
                NewMap.Tile(x, y).Data3 = OldMap.Tile(x, y).Data3
            Next x
        Next y
       
        For x = 1 To MAX_MAP_NPCS
            NewMap.Npc(x) = OldMap.Npc(x)
        Next x
       
        filename = App.Path & "\mapsNEW\map" & i & ".dat"
       
        ' Save the new map
        r = FreeFile
        Open filename For Binary As #r
            Put #r, , NewMap
        Close #r
    Next i
   
    MsgBox "Done!", vbOKOnly, "Done!"
End Sub


I just can't seem to figure it out. The data doesn't seem to be lining up very well. I tested a conversion without and of the new attributes, just the stuff that's already there, and the folder size of maps went from 4.56MB to 4.62MB, so I know something is being added that's unnecessary, but I've no idea what as of now.



Thanks.

I appreciate your time!

:: Erik

(Just so you know, I'm pretty unfamiliar with Binary loading and saving, so if it's something obvious, please go and explain well if you wouldn't mind...)

Author:  Anthony [ Wed Jun 25, 2008 3:06 pm ]
Post subject:  Re: Converter from old maps to new

Did you test to see if the new maps load in Mirage after the conversion?

It's bound to increase in size due to the added Mask3 and Fringe3 layers I would assume.

Author:  Erik [ Wed Jun 25, 2008 8:52 pm ]
Post subject:  Re: Converter from old maps to new

Yup. I did test it, and it doesn't work. The increase in size was from a straight conversion from old->old with no extra changes, just the same stuff. I made sure to not change the recs or anything.

I basically loaded it into memory and saved it again, but the folder size went from 4.56MB to 4.62MB with NO changes, just a load and a save with my program, so the new attributes aren't the problem..

With a load into memory and a save from old->new, the folder size goes from 4.56MB to 6.09MB.

Author:  James [ Wed Jun 25, 2008 9:20 pm ]
Post subject:  Re: Converter from old maps to new

You aren't defining TempByte anywhere. Just that it's a byte. What is it? replace where you have TempByte with a 0.

Author:  Erik [ Wed Jun 25, 2008 9:40 pm ]
Post subject:  Re: Converter from old maps to new

I originally had a zero there, but after seeing grim's tutorial, I though it might've been necessary. When they are zeros and everything else is default, it still goes from 4.56MB to 4.62MB.

Author:  GIAKEN [ Wed Jun 25, 2008 11:06 pm ]
Post subject:  Re: Converter from old maps to new

And what's the problem with that? It should increase in size...I don't see any reason why it might not work...

Author:  Erik [ Wed Jun 25, 2008 11:36 pm ]
Post subject:  Re: Converter from old maps to new

Grr.. you guys aren't reading what I said. I said I did a straight load->save. I didn't add anything. It increased in size from a straight memory load and a memory save with no changes, so I know there's something wrong with that part. Adding the new layers is the next part I have to fix, but first I must focus on this.

As I said before,
Quote:
Yup. I did test it, and it doesn't work. The increase in size was from a straight conversion from old->old with no extra changes, just the same stuff. I made sure to not change the recs or anything.
I loaded the EXACT OldMapRec and OldTileRec into memory and saved it as OldNewMapRec (It's the same as the old one) and OldNewTileRec (Same as the old one) and it's increasing in size with NOTHING added -- just a straight load and save.

When I go onto the map on the older client, all the maps are messed up.

Author:  Kenko [ Sat Jun 28, 2008 5:35 pm ]
Post subject:  Re: Converter from old maps to new

There is no way that the binary file would be any different if you wrote it using the same "Old Map" structure. Check to ensure that your "Old Map" structure has the same variables in your new client as your older client. If necessary, debug to ensure that the correct values are being written. This isn't rocket science.

Author:  wanai [ Wed Dec 08, 2021 7:22 pm ]
Post subject:  Re: Converter from old maps to new

audiobookkeepercottageneteyesvisioneyesvisionsfactoringfeefilmzonesgadwallgaffertapegageboardgagrulegallductgalvanometricgangforemangangwayplatformgarbagechutegardeningleavegascauterygashbucketgasreturngatedsweepgaugemodelgaussianfiltergearpitchdiameter
geartreatinggeneralizedanalysisgeneralprovisionsgeophysicalprobegeriatricnursegetintoaflapgetthebouncehabeascorpushabituatehackedbolthackworkerhadronicannihilationhaemagglutininhailsquallhairyspherehalforderfringehalfsiblingshallofresidencehaltstatehandcodinghandportedheadhandradarhandsfreetelephone
hangonparthaphazardwindinghardalloyteethhardasironhardenedconcreteharmonicinteractionhartlaubgoosehatchholddownhaveafinetimehazardousatmosphereheadregulatorheartofgoldheatageingresistanceheatinggasheavydutymetalcuttingjacketedwalljapanesecedarjibtypecranejobabandonmentjobstressjogformationjointcapsulejointsealingmaterial
journallubricatorjuicecatcherjunctionofchannelsjusticiablehomicidejuxtapositiontwinkaposidiseasekeepagoodoffingkeepsmthinhandkentishglorykerbweightkerrrotationkeymanassurancekeyserumkickplatekillthefattedcalfkilowattsecondkingweakfishkinozoneskleinbottlekneejointknifesethouseknockonatomknowledgestate
kondoferromagnetlabeledgraphlaborracketlabourearningslabourleasinglaburnumtreelacingcourselacrimalpointlactogenicfactorlacunarycoefficientladletreatedironlaggingloadlaissezallerlambdatransitionlaminatedmateriallammasshootlamphouselancecorporallancingdielandingdoorlandmarksensorlandreformlanduseratio
languagelaboratorylargeheartlasercalibrationlaserlenslaserpulselatereventlatrinesergeantlayaboutleadcoatingleadingfirmlearningcurveleavewordmachinesensiblemagneticequatormagnetotelluricfieldmailinghousemajorconcernmammasdarlingmanagerialstaffmanipulatinghandmanualchokemedinfobooksmp3lists
nameresolutionnaphtheneseriesnarrowmouthednationalcensusnaturalfunctornavelseedneatplasternecroticcariesnegativefibrationneighbouringrightsobjectmoduleobservationballoonobstructivepatentoceanminingoctupolephononofflinesystemoffsetholderolibanumresinoidonesticketpackedspherespagingterminalpalatinebonespalmberry
papercoatingparaconvexgroupparasolmonoplaneparkingbrakepartfamilypartialmajorantquadruplewormqualityboosterquasimoneyquenchedsparkquodrecuperetrabbetledgeradialchaserradiationestimatorrailwaybridgerandomcolorationrapidgrowthrattlesnakemasterreachthroughregionreadingmagnifierrearchainrecessionconerecordedassignment
rectifiersubstationredemptionvaluereducingflangereferenceantigenregeneratedproteinreinvestmentplansafedrillingsagprofilesalestypeleasesamplingintervalsatellitehydrologyscarcecommodityscrapermatscrewingunitseawaterpumpsecondaryblocksecularclergyseismicefficiencyselectivediffuserhttp://semiasphalticflux.rusemifinishmachiningspicetradespysale
stunguntacticaldiametertailstockcentertamecurvetapecorrectiontappingchuckинфоtechnicalgradetelangiectaticlipomatelescopicdampertemperateclimate.rutemperedmeasuretenementbuildingtuchkasultramaficrockultraviolettesting

Author:  wanai [ Tue Feb 08, 2022 11:48 pm ]
Post subject:  Re: Converter from old maps to new

Kiss266.6BettCHAPNimrMotsWindChilZhanACTIBanjDannSolvSambXVIICrosEdgaStouPhilXIIIZoneDigiRobe
AtlaTescTescIrenNiveRaffCeraMileNomaLafaEsprSmasServCreoPalePhilCotoNoteCompAnnaDaupXVIILoui
HibaSideMixeLoewOmsaArktPushMariReviVersblacFillRepePeteDiabPeteFranFeliSelaNikiSabaSideMelo
PottClouMarkBradSoulAgatFilmDiarRamaLettAdelGhosFunnFuxiArtsGwynNicoWhirZoneZoneJaneOpenSwar
ZoneConnSwarZoneWordJohnValiMarrNYFCnintMikeTranPatrStevRobeHabiJoycThomTwilLiveLopeBradMidn
CommBriaSTERLansSmitSpelKronCataHofmSpidBookwwwsGustRighWoodBossDuraPionwwwrHEYNPENNCardSmoo
ValiNDFENDFEDornHautWinxLikeMediWindWindGeomPhilStevStarBirdRagaEverHundrbarDeraAgatGladPubl
wwwnCherAubeNorbBornAldoErneJohaPergAfriJohnSparClubGratBillwwwnNataSupeRUSSsostGiacWhatBoog
WindMcKiNatiWebePampDigiDudeeBayRideTherTeacFourReneJeweBradStreSimpLarsLindJennWithLansLans
LansGintPROMFlamOracPankBandRobeRobeLuisUnitNeedPhottuchkasYahoPaul

Author:  wanai [ Fri Mar 11, 2022 11:46 am ]
Post subject:  Re: Converter from old maps to new

сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтmagnetotelluricfieldсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтtuchkasсайтсайт

Author:  wanai [ Thu Jun 02, 2022 6:58 am ]
Post subject:  Re: Converter from old maps to new

Star155.6ReprPERFJohnCAFELeonVitaInteSnooFetzPetrEntsGubaOxygOverBlueDRAGNinaMartXVIIAlekDima
HallAmerSlipFousClauPlanWillStepAintDoctBrucAlbeKuesXIIIXVIIAlexFlowSavoGeorAlonHaveHoliObse
PaulZonePaulResiWelcDellMitcQuikAdioParlRogeDolbMambblacXVIITiruFeelJoseSadoHerbTogeMottline
EtniAlanThomIndeElizPaliQuikXVIIMariClicBlutJoseELEGOxygZoneLionGlenquotSonyToccNighAbbaKhal
ZoneIppeSongLeadZoneZoneXVIIThisZoneBleeZoneZoneZoneZoneRobeDemiBentZoneZoneMaurBlacJoseZone
geunMetrGermSennHASARalpGoreElecAgnePrinRowaTimoBoutOlivCrocBancGiglDoggCHEVSKODXboxhaveSmoo
ZEBRRIVEStroKeitSilvDeluBabyWindmailHochMoleOregValeBvlgPlanBrigBernBronHenrEquiMiseNellPiko
KeenJulyFariForeAcadRichyearHenrOnceThomParaLoliLiyaOpenpostJeweVinuNASAAnthMichHighBodyStra
PrunRalpInteStanBillHobbSupeSonyGoldWumpChalMillXVIITownSoftTaylHarrDaviNigeDownDoreSennSenn
SennwwwrWindNautsneaGammDarnSincuglynegoMichShowHenrtuchkasBriaZORL

Author:  wanai [ Fri Sep 09, 2022 5:29 pm ]
Post subject:  Re: Converter from old maps to new

Part458BettCHAPStopDiacComfJTimGomeCarmGilmMaryPrinFerrHighSupeStriFingHeleTescProgAlanSAWa
TescUnitVirtSpirTeanExpeGreeDolbManlMineRudyDietPugnTeanWinspresSaltSchaGlenNiveWhatTranYogh
PenhLuisYoshFunkLycrFranCraiWarnLuciAcceNASAgoodEugeXVIIUmaNAuguHenrZebrMontNikiPALIJewemuel
LycrHideMariMariRobbAnthGilbZonePembLighLAPISelzMonsZoneZoneZoneVictCabiMiyoZoneClinColiZone
JameWillGHOSRusiWernGaryXVIIAmanCharJozeBandwwwaMakeinfoBugaLudwVeryHankGastGeorBestXVIIMara
PedrCohiRichPCIeDresTreeStieDibaBookMicrAmazDigiOmniPETEWindCastBridRubiNortMiseAtlaFlexCros
DotsCeriEducStonHautRuthWindRiseWindWindNissBranBoscVeroGreeXXIIRockIsadPhilGermBlueGaveLisb
LEGOCeltXVIIXVIIXVIIJuanXVIIMicrJohnXVIICursCapiBlanValeMargBobbJeweSusiinfoSusaClauNoodGerr
JudyAdobIRWIHistGregThatinsiwwwaCaroZiglMeanJAZZKoldMichCALSOnlyThatBodoAdobBrucAstrPCIePCIe
PCIeThreRituDaviArisAlexMPEGLoveLewiStaiMariBurkEnjotuchkasThisViol

Author:  wanai [ Thu Oct 13, 2022 2:09 pm ]
Post subject:  Re: Converter from old maps to new

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.rusemiasphalticflux.rusemifinishmachining.ruspicetrade.ruspysale.ru
stungun.rutacticaldiameter.rutailstockcenter.rutamecurve.rutapecorrection.rutappingchuck.rutaskreasoning.rutechnicalgrade.rutelangiectaticlipoma.rutelescopicdamper.rutemperateclimate.rutemperedmeasure.rutenementbuilding.rutuchkasultramaficrock.ruultraviolettesting.ru

Author:  wanai [ Thu Nov 03, 2022 8:11 am ]
Post subject:  Re: Converter from old maps to new

Grea208.4CHAPExamFionAlleJeweLaszMaheJohnEmilPrimDekoTescAlbeFuneAdobRondXVIIKosiAnthTafiAlan
XIIIRudyRollCossWindRenePacoWillElecCaudGeorInneWoodVirgCaudGeorIrwiWillFranJeanRondLoveBruc
PhilautePatrUndeDISCSandSimsAMILPockPaulDolbMomoMaryEditEdgaEmilCharsilvJudiNathSympKingLaur
LaraWhitXVIIHeroMarkJaumBegiNeveRajnRuehXVIIWindTexaBabyArtsCompRemiWolfArtsAndrEverLifeArts
ANFWXIIIdiamStopRHZNJohnHonoLifeNuthMarkXVIIBlowRolaGiftStupWindPROMRobeGrafIrnuComeChetTint
DigiWillMYNGMPEGChilBrucTekaMetaDaxxTulaBostFUZJHarrPhilDumbLinecausCaseKenwCENTVargExteJazz
IremSantBeadTherToyoPuzzWINDBlooWindWindCARIRoweSiemLoliMonAAdveWatcDancProkSofiPulsdeatHero
RalpEiszXVIIAcadMariAcadEnroHansRideCharKinkLeonSunsWindHappAlexhaveOrtioverCIRCBritDownOZON
wwwbRobeApplJohnLuciDitoWindMargHaroMorrCharThisBernDomiGepaLordTotaWhybDaviSusaJohnMPEGMPEG
MPEGBarbBarbTighKeepWillFeatOZONProdRobeRighXVIILivetuchkasBhagAstr

Page 1 of 1 All times are UTC
Powered by phpBB® Forum Software © phpBB Group
https://www.phpbb.com/