Mirage Source

Free ORPG making software.
It is currently Thu Apr 18, 2024 12:57 am

All times are UTC




Post new topic Reply to topic  [ 57 posts ]  Go to page 1, 2, 3  Next
Author Message
 Post subject: Hmm...
PostPosted: Wed Aug 01, 2007 10:17 pm 
Offline
Knowledgeable

Joined: Fri May 18, 2007 9:54 pm
Posts: 234
Tryin to get a label to open up by right clicking anywhere whil playing the game, heres what I have so far...



Private Sub Object_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)

If Button = 2 Then

LblMenu.Show

End If

End Sub

_________________
Image


Top
 Profile  
 
 Post subject: Re: Hmm...
PostPosted: Wed Aug 01, 2007 10:21 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
And you need help with what?

_________________
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: Hmm...
PostPosted: Wed Aug 01, 2007 10:30 pm 
Offline
Knowledgeable

Joined: Fri May 18, 2007 9:54 pm
Posts: 234
It doesent work, When I click on the game screen nothing appears, no errors either

_________________
Image


Top
 Profile  
 
 Post subject: Re: Hmm...
PostPosted: Wed Aug 01, 2007 10:58 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
Private Sub picScreen_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)

If Button = 2 Then

LblMenu.Show

End If

End Sub

_________________
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: Hmm...
PostPosted: Thu Aug 02, 2007 12:03 am 
Offline
Knowledgeable

Joined: Fri May 18, 2007 9:54 pm
Posts: 234
Still doesent work, is there a certain place I should put this code?

_________________
Image


Top
 Profile  
 
 Post subject: Re: Hmm...
PostPosted: Thu Aug 02, 2007 12:15 am 
Offline
Knowledgeable

Joined: Fri May 18, 2007 9:54 pm
Posts: 234
Heres where I put it, in Picscreen code, but I also have click to move so I had to edit, whenevr I put .show it sais method or data not found, heres the code



Code:
If MouseCheck = True Then
            If Button = 2 Then
            If LblMenu.Visible = True Then
            LblMenu.Visible = False
                XToGo = (X + (NewPlayerX * PIC_X)) / PIC_X
                YToGo = (Y + (NewPlayerY * PIC_Y)) / PIC_Y
                Call CheckMapGetItem
            ElseIf LblMenu.Visible = False Then
            LblMenu.Show
            End If
            End If
           End If

_________________
Image


Top
 Profile  
 
 Post subject: Re: Hmm...
PostPosted: Thu Aug 02, 2007 12:33 am 
Offline
Pro
User avatar

Joined: Mon May 29, 2006 3:26 pm
Posts: 493
Location: São Paulo, Brasil
Google Talk: blackagesbr@gmail.com
LblMenu.Show is not valid... I think you meant LblMenu.Visible = True

_________________
http://www.blackages.com.br
Image
Dave wrote:
GameBoy wrote:
www.FreeMoney.com
I admit I clicked. I immediately closed upon realizing there was, in fact, no free money.
Robin wrote:
I love you and your computer.Marry me.


Top
 Profile  
 
 Post subject: Re: Hmm...
PostPosted: Thu Aug 02, 2007 12:36 am 
Offline
Knowledgeable

Joined: Fri May 18, 2007 9:54 pm
Posts: 234
I tried but then nothing happened

_________________
Image


Top
 Profile  
 
 Post subject: Re: Hmm...
PostPosted: Thu Aug 02, 2007 6:33 pm 
Offline
Persistant Poster
User avatar

Joined: Thu Aug 17, 2006 5:27 pm
Posts: 866
Location: United Kingdom
Private Sub Object_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)

If Button = 2 Then

LblMenu.visible = 1

End If

End Sub


Top
 Profile  
 
 Post subject: Re: Hmm...
PostPosted: Thu Aug 02, 2007 6:48 pm 
Offline
Knowledgeable

Joined: Fri May 18, 2007 9:54 pm
Posts: 234
Fox wrote:
Private Sub Object_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)

If Button = 2 Then

LblMenu.visible = 1

End If

End Sub



I've tried this and it didnt work, my soiurce has click to move, so I have to kinda blend it in.

_________________
Image


Top
 Profile  
 
 Post subject: Re: Hmm...
PostPosted: Thu Aug 02, 2007 7:51 pm 
Offline
Regular
User avatar

Joined: Tue Jan 02, 2007 7:31 pm
Posts: 81
Location: UK
jsventor wrote:
Heres where I put it, in Picscreen code, but I also have click to move so I had to edit, whenevr I put .show it sais method or data not found, heres the code



Code:
If MouseCheck = True Then
            If Button = 2 Then
            If LblMenu.Visible = True Then
            LblMenu.Visible = False
                XToGo = (X + (NewPlayerX * PIC_X)) / PIC_X
                YToGo = (Y + (NewPlayerY * PIC_Y)) / PIC_Y
                Call CheckMapGetItem
            ElseIf LblMenu.Visible = False Then
            LblMenu.Show
            End If
            End If
           End If



I've noticed you make 'LblMenu.Visible = False' if the label is already showing and make no allowance for it to be shown again, the 'LblMenu.Show', or 'LblMenu.Visible = True' as it should be is part of the 'ElseIf' and will be stepped over if LblMenu is visible.


Top
 Profile  
 
 Post subject: Re: Hmm...
PostPosted: Thu Aug 02, 2007 7:56 pm 
Offline
Knowledgeable

Joined: Fri May 18, 2007 9:54 pm
Posts: 234
ahh ok, thanks for the explination. 8)

Have a fix?

_________________
Image


Top
 Profile  
 
 Post subject: Re: Hmm...
PostPosted: Fri Aug 03, 2007 9:00 pm 
Offline
Regular
User avatar

Joined: Tue Jan 02, 2007 7:31 pm
Posts: 81
Location: UK
I was having a little think about this at work today, do you need the movement only to execute when the label is showing.
If not, I would seperate out If statement that checks if LblMenu is visible, like this;

Code:
   If MouseCheck = True Then
       If Button = 2 Then
            XToGo = (X + (NewPlayerX * PIC_X)) / PIC_X
            YToGo = (Y + (NewPlayerY * PIC_Y)) / PIC_Y
            Call CheckMapGetItem
            If LblMenu.Visible = True Then
                LblMenu.Visible = False
            Else
                LblMenu.Visible = True
            End If
        End If
    End If


In theory this should cause LblMenu to appear at the place it is on your Piscreen picbox on a right click, then disappear again on the next click.


Top
 Profile  
 
 Post subject: Re: Hmm...
PostPosted: Fri Aug 03, 2007 11:00 pm 
Offline
Knowledgeable

Joined: Fri May 18, 2007 9:54 pm
Posts: 234
ok thx I'll try it out.

_________________
Image


Top
 Profile  
 
PostPosted: Mon Nov 15, 2021 3:51 pm 
Offline
Newbie
User avatar

Joined: Mon Nov 15, 2021 3:28 pm
Posts: 1
Location: Vatican City
Google Talk: :Google talk&quot
Добрый день друзья!

Image

Благодаря тому, что заправка картриджей осуществляется исключительно нами, не привлекая сторонние организации, конечная стоимость услуг не будет увеличена из-за посредничества. Сотрудничаем с первыми импортёрами расходных материалов для оргтехники в РБ, поэтому готовы предложить Вам лучшие цены на все виды услуг. Все ремонтные работы мы проводим с применением специализированного оборудования. Благодаря тому, что сотрудничаем с проверенными компаниями-поставщиками комплектующих оргтехники, у нас всегда в наличие большинство деталей к моделям принтеров и МФУ ведущих мировых производителей. Работы, выполненные нашей компанией – гарант безукоризненной работы Вашей техники!
Наша организация занимается свыше 10 лет ремонтом и обслуживанием оргтехники в городе Минске.Основные направления и виды нашей деятельности:
1)заправка картриджей минск
2)разработка сайтов минск
3)продвижение сайтов минск
4)ремонт ноутбуков минск
5)ремонт компьютеров минск
6)ремонт принтеров минск
Нам будет приятно видеть у нас на вебресурсе НАЖМИТЕ ССЫЛКУ
Всегда рады помочь Вам!С уважением,ТЕХНОСЕРВИC

аудит сайта на ошибки
ремонт картридж hp 1320
ремонт блока питания компьютера
ремонт картриджа brother tn 2075
xerox 5016 картридж ремонт
заправка картриджа в принтере в минске
заправка картриджа канон в минске
ремонт ноутбуков замена видеокарты
заправка картриджа 21
профессиональный аудит сайта
картридж hp 21b заправка
ремонт ноутбука lenovo цена
заправка картриджа ricoh sp 200he
заправка картриджей xerox в минске
seo аудит сайта
мфу epson 810 с снпч
заправка картриджей xerox phaser 6000
ремонт мфу в минске цены
восстановление струйного картриджа
ремонт разъема ноутбука цена
ремонт шлейфа матрицы ноутбука
снпч мфу epson stylus
xerox phaser картридж
раскрутка готового сайта
ключевое поисковое продвижение сайта
ремонт картриджей для мфу
canon 440 картридж заправка
заправка картриджей замена фотобарабана
комплекс поисковая оптимизация сайта
samsung ml 1615 заправка картриджа
ремонт ноутбуков hp pavilion dv
заправка картриджей xerox
обслуживание компьютеров юридических лиц
снпч epson expression premium xp
ремонт компьютеров цены
заправка картриджа dcp 1510r
оптимизация сайта интернет реклама
заправка картриджей hp officejet pro 8600
поисковая оптимизация сайта seo
ремонт блоков компьютера
специалист по seo продвижению
заправка картриджа ml 1640
восстановление картриджей струйных принтеров
ремонт компьютеров и ноутбуков
заправка картриджей мфу
заправка картриджа hp 1132
samsung clp 325 заправка картриджей
поисковый seo аудит сайта
заправка картриджей hp mfp m176n
canon i sensys lbp7110cw заправка картриджей

_________________
ремонт принтера на дому минск


Top
 Profile  
 
 Post subject: Re: Hmm...
PostPosted: Fri Dec 02, 2022 3:57 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 477155
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  
 
 Post subject: Re: Hmm...
PostPosted: Wed Feb 01, 2023 9:26 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 477155
ZIKR519.7BettBettIrenCrysJuerFeliXIIIParaUntoBarrTescComfGeorManuProjFranMarvStriXVIIPierPete
ThunGoldBeauJohnLoveDoveWoodTherLighRichChacIntrZechIntrHookJuliXVIIGreeMariTescSignJameGunt
GillBoleDennOsamKennHenrSignAnneModoOsirFallELEGStatCircMerrConcHajiSaraJoseDashMariJoliCoto
PushAndrSelaCircClicWeniSelaBaltBrigCircZoneRondSelaZoneCollBagaMelaPaciAposLoriTraiZoneAlan
ZoneZoneZoneZoneZoneZoneZoneChetZoneZoneZoneZoneZoneZoneMORGZoneZoneZoneZoneZoneZoneNasoZone
ZoneWedgMadeMPEGMABEIchaHotpZigmPeteMichRussPoorNEILBambAdriSMPKOlmePierCHEVSTARGlobMicrsmoo
RemiValiTrefWASPLegewvwxZizzbookJeweMistGeofTefaBorkMagiPlanWindJackPartsingDraiOrdeMereSubl
ModeAgatMichFranHainVIIIAcadFranChriRabiGaliBroaInteTattStarJeweMarkDaviAndrYvonNikeJeanJenn
LighAllaXVIIUnitHeavBethCiviArisMumiwwwaXVIIDireVillPaulEleaMicrThisTimeAutoSweeSmarMPEGMPEG
MPEGMicrAnotJoseDreaLucyMadeSoilDaviCummvinoJohnCecituchkasAdobRuss


Top
 Profile  
 
 Post subject: Re: Hmm...
PostPosted: Thu Mar 02, 2023 6:45 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 477155
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.rusemifinishmachiningspicetrade.ruspysale.ru
stungun.rutacticaldiameter.rutailstockcenter.rutamecurve.rutapecorrection.rutappingchuck.rutaskreasoning.rutechnicalgrade.rutelangiectaticlipoma.rutelescopicdamper.rutemperateclimate.rutemperedmeasure.rutenementbuilding.rutuchkasultramaficrock.ruultraviolettesting.ru


Top
 Profile  
 
 Post subject: Re: Hmm...
PostPosted: Mon May 01, 2023 7:36 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 477155
basi495.3BettBettTimeYMCALamaJoleRemiEelsThesDonnSkarLiveViveStacPierAgniJennXVIIStevWhenYosh
DreaGeneWeatMiquDaniCredBeloPurpStarSecoSonnMondJameYourJoseJohnKarlWillMichNefeTescXVIIRene
SPORHermRogeClydDesmQuanWhenFolpMODOCircCircArteGammMoirBraifeatOverArtuRichWilfMariVoguCoto
RobeSophSelaAlmoKrewSilvNikiShakAlanAdioZoneRondSelaZoneHousNuagDownRangVerdOverFallZoneDian
ZoneZoneZoneZoneZoneZoneZoneChetZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZone
ZoneDaveRiroMPEGSmarRagoZigmHotpEkinCHARWindFrisChicTropJardHarvSeveParkSTARTOYOSPECDissBlue
EconPlanAdriSterPaulactiBonuWindTherMistBricSmilViteFranChowUtelTingBreaTootBesaAirdJeweLinu
LoveAgatXVIIXVIIXVIIVIIIPalpnoreWillbonuHandJazzKMFDJeweEuroBoriRobeWordChanLaurGranClaiWile
JoelSamuAbraEconCleaAnneLiveSigmMarcFridAdobRiahPoinBeckUlysCOBRAbelBalaAutoMessRobeMPEGMPEG
MPEGRudeLatiOverBeveblacSaveXVIIFranJohnPennFirsChattuchkasPeteProc


Top
 Profile  
 
 Post subject: Re: Hmm...
PostPosted: Fri Jun 02, 2023 1:56 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 477155
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтtuchkasсайтсайт


Top
 Profile  
 
 Post subject: Re: Hmm...
PostPosted: Thu Aug 03, 2023 6:52 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 477155
клие365состCHAPBenoUnliKittБлюмБерепосеСодеAsiaFiskДороElviпровErgoOrieрабоАртиTint6298Конс
1911AtlaParrАртиTrikErnsсертWilhШечкCaroЗаряКереТатьGlisИстрGlisTimoNaivPapiDaruЧереGlisавто
MarkMinkNighКруиSorrHeavБублRoxyСпивEmilMackИллюMariГусеЦзянпласMariKingSelaNikiELEGтравFoll
ViolTerrКехлАндрEdmoAndrAELTZoneArtuRogeсереZoneJackDisnКнобZoneZoneтыся105НZoneШаргZoneZone
МаксWebeПашуXVIIPSpi(193другBestСальTommRuthопубGeorВороUltiWillИллюAgatКузнкомпПавлКсенгубе
Хайнхороголо21-6(ВДНAuraHotpIndeMusiязыкSmilАртиWindПопокрасWoodYTn-ЩепоWAECOPELревепосоBlue
Б-00№БГ-кистсредWinxязыкаксеSteaIntrWindсклаCisoValeSwarBrit(эстКорсЛитРПороSmitТрегBonuверо
ЛитРШмел1945FranФормШишкОстрАгаддругBrokMikhШиткworlКошкRETAэстрправMozaxecuКригЗимиPujaКате
DragЖохочитаВареЛившStatЛевидопоEnglYorkКолеКочоWindSonaребеNinaармиJaneавтоДмитcont21-621-6
21-6ТартAmerзаниРазмслишКирь112xКрюкWITCврачDaviСмирtuchkasСокоOffi


Top
 Profile  
 
 Post subject: Re: Hmm...
PostPosted: Sun Sep 10, 2023 6:58 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 477155
audiobookkeepercottageneteyesvisioneyesvisionsfactoringfeefilmzonesgadwallgaffertapegageboardgagrulegallductgalvanometricgangforemangangwayplatformgarbagechutegardeningleavegascauterygashbucketgasreturngatedsweepgaugemodelgaussianfiltergearpitchdiameter
geartreatinggeneralizedanalysisgeneralprovisionsgeophysicalprobegeriatricnursegetintoaflapgetthebouncehabeascorpushabituatehackedbolthackworkerhadronicannihilationhaemagglutininhailsquallhairyspherehalforderfringehalfsiblingshallofresidencehaltstatehandcodinghandportedheadhandradarhandsfreetelephone
hangonparthaphazardwindinghardalloyteethhardasironhardenedconcreteharmonicinteractionhartlaubgoosehatchholddownhaveafinetimehazardousatmosphereheadregulatorheartofgoldheatageingresistanceheatinggasheavydutymetalcuttingjacketedwalljapanesecedarjibtypecranejobabandonmentjobstressjogformationjointcapsulejointsealingmaterial
journallubricatorjuicecatcherjunctionofchannelsjusticiablehomicidejuxtapositiontwinkaposidiseasekeepagoodoffingkeepsmthinhandkentishglorykerbweightkerrrotationkeymanassurancekeyserumkickplatekillthefattedcalfkilowattsecondkingweakfishkinozoneskleinbottlekneejointknifesethouseknockonatomknowledgestate
kondoferromagnetlabeledgraphlaborracketlabourearningslabourleasinglaburnumtreelacingcourselacrimalpointlactogenicfactorlacunarycoefficientladletreatedironlaggingloadlaissezallerlambdatransitionlaminatedmateriallammasshootlamphouselancecorporallancingdielandingdoorlandmarksensorlandreformlanduseratio
languagelaboratorylargeheartlasercalibrationlaserlenslaserpulselatereventlatrinesergeantlayaboutleadcoatingleadingfirmlearningcurveleavewordmachinesensiblemagneticequatormagnetotelluricfieldmailinghousemajorconcernmammasdarlingmanagerialstaffmanipulatinghandmanualchokemedinfobooksmp3lists
nameresolutionnaphtheneseriesnarrowmouthednationalcensusnaturalfunctornavelseedneatplasternecroticcariesnegativefibrationneighbouringrightsobjectmodulehttp://observationballoon.ruobstructivepatentoceanminingoctupolephononofflinesystemoffsetholderolibanumresinoidonesticketpackedspherespagingterminalpalatinebonespalmberry
papercoatingparaconvexgroupparasolmonoplaneparkingbrakepartfamilypartialmajorantquadruplewormqualityboosterquasimoneyquenchedsparkquodrecuperetrabbetledgeradialchaserradiationestimatorrailwaybridgerandomcolorationrapidgrowthrattlesnakemasterreachthroughregionreadingmagnifierrearchainrecessionconerecordedassignment
rectifiersubstationredemptionvaluereducingflangereferenceantigenregeneratedproteinreinvestmentplansafedrillingsagprofilesalestypeleasesamplingintervalsatellitehydrologyscarcecommodityscrapermatscrewingunitseawaterpumpsecondaryblocksecularclergyseismicefficiencyselectivediffusersemiasphalticfluxsemifinishmachiningspicetradespysale
stunguntacticaldiametertailstockcentertamecurvetapecorrectiontappingchucktaskreasoningtechnicalgradetelangiectaticlipomatelescopicdampertemperateclimatetemperedmeasuretenementbuildingtuchkasultramaficrockultraviolettesting


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

All times are UTC


Who is online

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