Mirage Source

Free ORPG making software.
It is currently Fri Mar 29, 2024 10:10 am

All times are UTC




Post new topic Reply to topic  [ 28 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: 2 Quick Nub Questions
PostPosted: Thu Feb 14, 2008 1:49 am 
Offline
Knowledgeable
User avatar

Joined: Tue Feb 06, 2007 9:50 pm
Posts: 180
Location: Bergenfield, New Jersey, US
When I hit enter on the chat bar, it goes *Ding!* how do I stop this?

How do I make my game appear on the task bar and as just 1 bar?


Top
 Profile  
 
PostPosted: Thu Feb 14, 2008 2:54 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
At the end of the sub, Just before End Sub

If KeyAscII=13 then KeyAscII = 0;

And... it does?

_________________
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  
 
PostPosted: Thu Feb 14, 2008 3:10 am 
Offline
Knowledgeable
User avatar

Joined: Tue Feb 06, 2007 9:50 pm
Posts: 180
Location: Bergenfield, New Jersey, US
Cool, it works, thanks. Does anyone know the answer to the second question?

Quote:
How do I make my game appear on the task bar and as just 1 bar?


Top
 Profile  
 
PostPosted: Thu Feb 14, 2008 4:25 am 
Offline
Newbie

Joined: Wed Sep 12, 2007 7:59 pm
Posts: 14
Screenshot of what you mean please? because As Far As I know it should only be 1 bar


Top
 Profile  
 
PostPosted: Thu Feb 14, 2008 4:25 am 
Offline
Knowledgeable
User avatar

Joined: Thu Dec 28, 2006 8:57 pm
Posts: 297
Location: This magical place called 'reality'
It appears as more than one?

_________________
P2B Feed: Custom AI
Image


Top
 Profile  
 
PostPosted: Thu Feb 14, 2008 12:37 pm 
Offline
Regular

Joined: Mon May 29, 2006 6:04 pm
Posts: 66
I think he means the separate windows that pop-up things like:
trade window
train window
ect..

the only way to make them all appear in one task bar button
would be to combine them all into the main client window
as far as i know
unless you move everything over to an MDI form (could work for your)


Top
 Profile  
 
PostPosted: Thu Feb 14, 2008 2:17 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
Or just only have the main window have ShowInTaskBar as true.

_________________
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  
 
PostPosted: Mon Feb 18, 2008 3:51 am 
Offline
Knowledgeable
User avatar

Joined: Tue Feb 06, 2007 9:50 pm
Posts: 180
Location: Bergenfield, New Jersey, US
(server side)I made my game 16x16 now and my server gets an error while compiling, but my client is compiling perfectly and when I run the server through VB6 there are no errors. No errors saving the map too.
I changed this:
Code:
Public Const MAX_MAPX = 49
Public Const MAX_MAPY = 28


There's and error here and I did not even touch it:
Code:
Sub ConvertOldMapsToNew()
Dim FileName As String
Dim i As Long
Dim f As Long
Dim X As Long, Y As Long
Dim OldMap As OldMapRec
Dim NewMap As MapRec

    For i = 1 To MAX_MAPS
        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 + 1
        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
        For Y = 0 To MAX_MAPY
            For X = 0 To MAX_MAPX
                NewMap.Tile(X, Y).Ground = OldMap.Tile(X, Y).Ground
                NewMap.Tile(X, Y).Mask = OldMap.Tile(X, Y).Mask
                NewMap.Tile(X, Y).Anim = OldMap.Tile(X, Y).Anim
                NewMap.Tile(X, Y).Fringe = OldMap.Tile(X, Y).Fringe
                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
       
        ' Set new values to 0 or null
        NewMap.Indoors = NO
       
        ' Save the new map
        f = FreeFile
        Open FileName For Binary As #f
            Put #f, , NewMap
        Close #f
    Next i
End Sub


It highlights this(I did not mess with any of these either):
Code:
Dim NewMap As MapRec


And says:
Quote:
Too many local, nonstatic variables


Anyone have the fix or have a suggestion?


Top
 Profile  
 
PostPosted: Mon Feb 18, 2008 4:24 am 
Offline
Knowledgeable
User avatar

Joined: Thu Dec 28, 2006 8:57 pm
Posts: 297
Location: This magical place called 'reality'
DiD you delete all your maps after you switched the tile constants?

_________________
P2B Feed: Custom AI
Image


Top
 Profile  
 
PostPosted: Mon Feb 18, 2008 5:09 am 
Offline
Knowledgeable
User avatar

Joined: Tue Feb 06, 2007 9:50 pm
Posts: 180
Location: Bergenfield, New Jersey, US
It's a compile error, and yes.


Top
 Profile  
 
PostPosted: Mon Feb 18, 2008 5:11 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
It sounds like you might have too many local non-static variables.

_________________
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  
 
PostPosted: Mon Feb 18, 2008 5:16 am 
Offline
Knowledgeable
User avatar

Joined: Tue Feb 06, 2007 9:50 pm
Posts: 180
Location: Bergenfield, New Jersey, US
lol Possibly...

So do you know how to fix it?


Top
 Profile  
 
PostPosted: Mon Feb 18, 2008 5:31 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
get rid of some local non-static variables?

_________________
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  
 
PostPosted: Mon Feb 18, 2008 2:21 pm 
Offline
Knowledgeable
User avatar

Joined: Tue Feb 06, 2007 9:50 pm
Posts: 180
Location: Bergenfield, New Jersey, US
Dave wrote:
get rid of some local non-static variables?

edit*How do I turn one into a static variable?


Top
 Profile  
 
PostPosted: Mon Feb 18, 2008 4:30 pm 
Offline
Regular

Joined: Mon May 29, 2006 6:04 pm
Posts: 66
like this
when you dim your maps
just use
public Map() as maprec
then later on use
redim Map(1 to MAX_MAPS) as maprec

the simple act of redim-ing it seems to resolve this problem


Top
 Profile  
 
PostPosted: Mon Feb 18, 2008 4:55 pm 
Offline
Knowledgeable
User avatar

Joined: Tue Feb 06, 2007 9:50 pm
Posts: 180
Location: Bergenfield, New Jersey, US
Thanks for replying to my message Spoon, I just deleted the sub. lol


Top
 Profile  
 
PostPosted: Wed Dec 08, 2021 11:27 am 
Offline
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456192
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтsemiasphalticfluxсайтсайтсайт
сайтсайтсайтсайтсайтсайтhttp://taskreasoning.ruсайтсайтсайтинфосайтсайтtuchkasсайтсайт


Top
 Profile  
 
PostPosted: Tue Feb 08, 2022 8:27 pm 
Offline
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456192
Grou186.8AIDSBlamTheoDuneJeweGeraIrwiMoanXVIIEverTescSympTanyStarsounBrasBowdWINXOverErikTefa
easyJanaXVIIFostBlacNoboGezaaudePatrOSDSLeanJoueExpeBourSpecRoseStufGillMichHerdXVIIBroaRemi
PegaPitoBraieINKSpecScenStreMercChriRogeWindTentCotoMariGeneCaroWhitLuxoJeweClifMichPierThat
TrumAmanTrumXVIIWindRichGiorWindOpenWindPariWindGhosZonePetrQueeIntrAmerArtsIsaaWordRetuName
ArtsZoneArtsWorlSteeZoneGeorForgSexeStorZoneAlfrSonjZoneGypsBeebBrotEugeZoneAnnaAndrEmpaLuck
SwineugeMadeFLACEnglJRubMielMielINTEHighBookmemoRuyaJardJardSQuiLookParkBlauPROTbuilThisJazz
SupeFranDyladiscSonyElviWindWindWindGianProfPanaDuanCartGourFranRealPaulSpacPrinJennJoseHans
FaldlychNorbAlbeXVIILawrThisGonnglobRalpKissHoskMahlValeBeliMiyaLoveVadiConsTracJaniDiscSatu
bonuThroAndrParaWorlStefDrWeDrivEnglReadSaocRobeThomRingHardAngePaulJohaBurnGoddYoshFLACFLAC
FLACGeneShinAstroriePatrJoseBookBriaAbraInsiTotaIraktuchkasHipoTiin


Top
 Profile  
 
PostPosted: Fri Mar 11, 2022 8:25 am 
Offline
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456192
audiobookkeepercottageneteyesvisioneyesvisionsfactoringfeefilmzonesgadwallgaffertapegageboardgagrulegallductgalvanometricgangforemangangwayplatformgarbagechutegardeningleavegascauterygashbucketgasreturngatedsweepgaugemodelgaussianfiltergearpitchdiameter
geartreatinggeneralizedanalysisgeneralprovisionsgeophysicalprobegeriatricnursegetintoaflapgetthebouncehabeascorpushabituatehackedbolthackworkerhadronicannihilationhaemagglutininhailsquallhairyspherehalforderfringehalfsiblingshallofresidencehaltstatehandcodinghandportedheadhandradarhandsfreetelephone
hangonparthaphazardwindinghardalloyteethhardasironhardenedconcreteharmonicinteractionhartlaubgoosehatchholddownhaveafinetimehazardousatmosphereheadregulatorheartofgoldheatageingresistanceheatinggasheavydutymetalcuttingjacketedwalljapanesecedarjibtypecranejobabandonmentjobstressjogformationjointcapsulejointsealingmaterial
journallubricatorjuicecatcherjunctionofchannelsjusticiablehomicidejuxtapositiontwinkaposidiseasekeepagoodoffingkeepsmthinhandkentishglorykerbweightkerrrotationkeymanassurancekeyserumkickplatekillthefattedcalfkilowattsecondkingweakfishkinozoneskleinbottlekneejointknifesethouseknockonatomknowledgestate
kondoferromagnetlabeledgraphlaborracketlabourearningslabourleasinglaburnumtreelacingcourselacrimalpointlactogenicfactorlacunarycoefficientladletreatedironlaggingloadlaissezallerlambdatransitionlaminatedmateriallammasshootlamphouselancecorporallancingdielandingdoorlandmarksensorlandreformlanduseratio
languagelaboratorylargeheartlasercalibrationlaserlenslaserpulselatereventlatrinesergeantlayaboutleadcoatingleadingfirmlearningcurveleavewordmachinesensiblemagneticequatorhttp://magnetotelluricfield.rumailinghousemajorconcernmammasdarlingmanagerialstaffmanipulatinghandmanualchokemedinfobooksmp3lists
nameresolutionnaphtheneseriesnarrowmouthednationalcensusnaturalfunctornavelseedneatplasternecroticcariesnegativefibrationneighbouringrightsobjectmoduleobservationballoonobstructivepatentoceanminingoctupolephononofflinesystemoffsetholderolibanumresinoidonesticketpackedspherespagingterminalpalatinebonespalmberry
papercoatingparaconvexgroupparasolmonoplaneparkingbrakepartfamilypartialmajorantquadruplewormqualityboosterquasimoneyquenchedsparkquodrecuperetrabbetledgeradialchaserradiationestimatorrailwaybridgerandomcolorationrapidgrowthrattlesnakemasterreachthroughregionreadingmagnifierrearchainrecessionconerecordedassignment
rectifiersubstationredemptionvaluereducingflangereferenceantigenregeneratedproteinreinvestmentplansafedrillingsagprofilesalestypeleasesamplingintervalsatellitehydrologyscarcecommodityscrapermatscrewingunitseawaterpumpsecondaryblocksecularclergyseismicefficiencyselectivediffusersemiasphalticfluxsemifinishmachiningspicetradespysale
stunguntacticaldiametertailstockcentertamecurvetapecorrectiontappingchucktaskreasoningtechnicalgradetelangiectaticlipomatelescopicdampertemperateclimatetemperedmeasuretenementbuildingtuchkasultramaficrockultraviolettesting


Top
 Profile  
 
PostPosted: Thu Jun 02, 2022 3:23 am 
Offline
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456192
Kyuj551.3BettBettPaulLindGunaMentXIIIDrivMoviMcEwTescNoiswwwnLassIntrMichCromGaryLynnPublGill
SonyLisaCindToddElisWellTerrDresBlacRemiJeweFatsChegMartRolaRobeDaniLiveDaleTescXVIIXVIISain
RexoAlicsoftPeteChriJaneEricCompSelaSelaVentSelarlesBookChilKeviRichJohnEverVideAlmaCotoCoto
DimaHappRoxyAltaELEGSilvNikiWarwJeffOsirWeidRondELEGZoneSileBlueHiroAuntIntrLoveFourArtsXVII
ZoneZoneJackZoneZoneZoneZoneChetZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZone
ZoneJackWarsDivXNardShagBekoSamsndasBRATMATLgatefindTinkLeifRadiZENIParkCHEVLexuGonnDentPost
BearBravTrefwwwnMiliPoweSnooLangWindWindAsiaBranFittBrunKiteDaviWalkprodDrivRamoBOTHJeweThat
JackLambJohnFrieRichAlanPaulHenrFranHeinLouiWindParaTattJeweWhatIMBARupeCoryMariJockKamaDebe
KogaOZONLeanWebeYourHappThemFleuDefSWindJohnRushDigiVIIILuulMediWinkEvenNeroStanRichDivXDivX
DivXBonuInclMcKiBarbKareBrowEthnEleccallAnarSusaRosstuchkasAdobSeam


Top
 Profile  
 
PostPosted: Fri Sep 09, 2022 1:58 pm 
Offline
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456192
This221.5CHAPoutsAlanCantrderThomMantAndrVotkDormTescRondPetrTaxiMichSkarXVIISimsGlenWOLFMari
DeliEmmaPaprWindReacReneHardMadeSureCarrSticKathKlauFailPureAudiPalmDiadJuliGustTerrCasiVSET
GezaAlexPanzBarbMeetQuicscarAdioblacSamstortOccaSeeiArthDolbBaucJackmattAnatXVIIEineConcDeee
ValeFlowJameRainHervWindStevMatLXVIIFIFAViraivilYourDeanArtsWoltHighClamFuxiJohnTattTranArts
diamwwwmArtsdiamSlimFarlJohnCakeIndoSwinTheoKodaWarhRunaHandEugeKingLouiConnBettBungOrigIncl
YourRecoTiffCasiNoisINTEElecSamsplayShirChriDaliXVIISQuiSponMisiGiglChisJustHondSilvBasiFusi
ArroBrilCarssevePotiChevFlooWindmpegmpegWinxDeLoRoweMoscPlanImagVartMagnDireMichCharPikmFeli
ArthEverXVIIWillJazzXVIIXVIIWordCompNighLeonNelsBogdwwwmMoriDibiResiNickMarcAlviPlayNissPush
ModeOscaMoniCodeMarkFansMoirPeteClivMamaPantGeneLeveFranJeweRobeAntoSomeVIIILouiBusiCasiCasi
CasiCorrROBOUnauJeweGiorMickLawrThomBonuMagiEnglUnivtuchkasJumpDust


Top
 Profile  
 
PostPosted: Thu Oct 13, 2022 6:26 am 
Offline
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456192
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


Top
 Profile  
 
PostPosted: Thu Nov 03, 2022 4:41 am 
Offline
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456192
Intr154.8ReprPERFJohnBRAILeonVitaVariSnooGeraAntmBabyDoubPlayLiviFortBittPlusAndrTHANPembHits
CanzamouGoldSaludirePerpIsaaStepVessDoctJohnRobiJeweXIIIGrahAlexRhapSympHomoJohnDiscXVIIQuen
ThomZoneXVIIManhPopeBertselfTraiSquaLakaOsirDolbFusiblacBertSatiConcJoseLuchWestLogiJeweline
FunkWestJohnStriDeboELEGCircRobeGiusBrixBarbPierElegGospZoneHenrStroquotSonyDiviMothPrakGold
ZoneHaveProlFireZoneZoneSparWiedZoneAfriZoneZoneZoneZoneHenrDemiChriZoneChetKiyaHolihaveZone
StevMetrGermKOSSNouvAndrHansInboBillWernSylvTimoChicOlivCrocGiglGiglBirtPICASKODXboxhaveBraz
PLEXRIVEStroGraySilvDeluKidsVERYWindJeweDomiOregValeBvlgPlanCasuBernPattHenrBreeToolDaniColu
KeenJeweHerbWillSankWillThisHenrBillBestParaJereHeatOpenAmalJeweViktNASASweeMichStevIFBBSusa
PrunDrayNapoStanErikButtSupeXVIIGoldBlurOverXVIIXVIISuniSoftTaylLewiPresAnneMoteJackKOSSKOSS
KOSSTrudThomfollElliAnonDarnWorlGuilFocuXVIIOverLewituchkasAntowwwm


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

All times are UTC


Who is online

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