Mirage Source

Free ORPG making software.
It is currently Fri Apr 26, 2024 6:41 pm

All times are UTC




Post new topic Reply to topic  [ 30 posts ]  Go to page 1, 2  Next
Author Message
PostPosted: Mon Dec 03, 2007 1:54 pm 
Offline
Newbie

Joined: Sun Dec 02, 2007 8:54 pm
Posts: 8
Hello, Im pretty new to VB, and im trying to learn it.
Im trying to make all the Selection's (like male/female, pick character, Class selection) as pictures instead of those nasty "lists" etc...
So my question is: How can i set the Class selection as Option buttons?


This is the current one as a ComboBox but i need it in OptionButtons:

Code:
Private Sub cmbClass_Click()
    lblHP.Caption = STR(Class(cmbClass.ListIndex).HP)
    lblMP.Caption = STR(Class(cmbClass.ListIndex).MP)
    lblSP.Caption = STR(Class(cmbClass.ListIndex).SP)
   
    lblSTR.Caption = STR(Class(cmbClass.ListIndex).STR)
    lblDEF.Caption = STR(Class(cmbClass.ListIndex).DEF)
    lblSPEED.Caption = STR(Class(cmbClass.ListIndex).speed)
    lblMAGI.Caption = STR(Class(cmbClass.ListIndex).MAGI)
   
    lblClassDesc.Caption = Class(cmbClass.ListIndex).desc


Top
 Profile  
 
PostPosted: Mon Dec 03, 2007 3:43 pm 
Offline
Pro

Joined: Mon May 29, 2006 5:01 pm
Posts: 420
Location: Canada, BC
Google Talk: anthony.fleck@gmail.com
The way I would do it (although some may argue against it, it may be bad coding practice) is just make the images and when you click the image have it set cmbClass.ListIndex = 0. Or 1 or 2 or whatever. Then hide the combo box off the screen.


Top
 Profile  
 
PostPosted: Mon Dec 03, 2007 3:53 pm 
Offline
Newbie

Joined: Sun Dec 02, 2007 8:54 pm
Posts: 8
Vegeta wrote:
The way I would do it (although some may argue against it, it may be bad coding practice) is just make the images and when you click the image have it set cmbClass.ListIndex = 0. Or 1 or 2 or whatever. Then hide the combo box off the screen.


hmmm, ok.


Top
 Profile  
 
PostPosted: Mon Dec 03, 2007 4:16 pm 
Code:
If optClass1.value = 1 then
          cmbclass.listindex = 0
else
etc
etc


That's what Vegeta is talking about. It does everything you need it to do, without seeing the list box and it looking the exact way you asked about.


Top
  
 
PostPosted: Mon Dec 03, 2007 6:11 pm 
Offline
Pro

Joined: Mon May 29, 2006 5:01 pm
Posts: 420
Location: Canada, BC
Google Talk: anthony.fleck@gmail.com
Oh right :D I got confused between pictures and option buttons haha.


Top
 Profile  
 
PostPosted: Mon Dec 03, 2007 6:53 pm 
Offline
Newbie

Joined: Sun Dec 02, 2007 8:54 pm
Posts: 8
Vegeta wrote:
The way I would do it (although some may argue against it, it may be bad coding practice) is just make the images and when you click the image have it set cmbClass.ListIndex = 0. Or 1 or 2 or whatever. Then hide the combo box off the screen.


Dunno if its right but, i made three new Option Buttons....

Code:
Private Sub Option1_Click()
cmbClass.ListIndex = 0
End Sub

Private Sub Option2_Click()
cmbClass.ListIndex = 1
End Sub

Private Sub Option3_Click()
cmbClass.ListIndex = 2
End Sub


Im sure its 100% wrong? :)


Top
 Profile  
 
PostPosted: Mon Dec 03, 2007 6:57 pm 
Offline
Knowledgeable

Joined: Sun Jul 29, 2007 12:23 am
Posts: 199
yeah thats right :P


Top
 Profile  
 
PostPosted: Mon Dec 03, 2007 7:02 pm 
Offline
Newbie

Joined: Sun Dec 02, 2007 8:54 pm
Posts: 8
Beres wrote:
yeah thats right :P


am i right that its 100% wrong or is it correctly done? :P

If its correct then, whats up with these values?

Code:
lblHP.Caption = STR(Class(cmbClass.ListIndex).HP)
    lblMP.Caption = STR(Class(cmbClass.ListIndex).MP)
    lblSP.Caption = STR(Class(cmbClass.ListIndex).SP)
   
    lblSTR.Caption = STR(Class(cmbClass.ListIndex).STR)
    lblDEF.Caption = STR(Class(cmbClass.ListIndex).DEF)
    lblSPEED.Caption = STR(Class(cmbClass.ListIndex).speed)
    lblMAGI.Caption = STR(Class(cmbClass.ListIndex).MAGI)
   
    lblClassDesc.Caption = Class(cmbClass.ListIndex).desc


Top
 Profile  
 
PostPosted: Mon Dec 03, 2007 7:04 pm 
Offline
Knowledgeable

Joined: Sun Jul 29, 2007 12:23 am
Posts: 199
100% you are correct. Those values are assigned by when you click on a class. Since when you click on an option, its just like clicking in the combo box. So it should still assign those values.

EDIT: The STR(Class(cmbClass.ListIndex).HP) is basically the class. Lets say the listindex = 0. Thats Class0. It gets the stats from there.


Top
 Profile  
 
PostPosted: Mon Dec 03, 2007 8:55 pm 
Offline
Community Leader
User avatar

Joined: Mon May 29, 2006 1:00 pm
Posts: 2538
Location: Sweden
Google Talk: johansson_tk@hotmail.com
or replace this part
Code:
cmbClass.ListIndex

with a variable, like:
Code:
STR(Class(iIndex).SP)

And set iIndex to whatever char it is you pressed on.

_________________
I'm on Facebook!My Youtube Channel Send me an email
Image


Top
 Profile  
 
PostPosted: Mon Dec 03, 2007 9:04 pm 
Offline
Knowledgeable

Joined: Sun Jul 29, 2007 12:23 am
Posts: 199
William wrote:
or replace this part
Code:
cmbClass.ListIndex

with a variable, like:
Code:
STR(Class(iIndex).SP)

And set iIndex to whatever char it is you pressed on.


But wouldnt it work just by leaving it as STR(Class(cmbClass.ListIndex).SP) or whatever.? I mean its just like clicking on the cmbClass itself and selecting a class. Except you're just settings its listindex by code..


Top
 Profile  
 
PostPosted: Tue Dec 04, 2007 1:06 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
First of all... will the number of classes you use ever change?

Second of all... it probably will, and this will be a pain.

You could have the form set up at run time to be the correct size, and have the correct number of option buttons, etc. Google documentation on creating form elements at run time.

Nextly, I would create a control array, so you would have radiobutton(0), radiobutton(1), radiobutton(2), etc.

Create a function called "Update Form" and call that from each radio buttons click event. radiobutton(0) would call UpdateForm(0), where radiobutton(1) would call UpdateForm(1), etc.

Have the UpdateForm function update the form based on the values that are sent to you when you open the form.

_________________
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: Tue Dec 04, 2007 10:47 am 
Offline
Newbie

Joined: Sun Dec 02, 2007 8:54 pm
Posts: 8
wow, tought i would be easy...
Just to copy the values from the Combox and paste into a Optionbox.

But if make the number of classes and i wont change them after that.
Would that be easyier?


Top
 Profile  
 
PostPosted: Tue Dec 04, 2007 12:11 pm 
Offline
Community Leader
User avatar

Joined: Mon May 29, 2006 1:00 pm
Posts: 2538
Location: Sweden
Google Talk: johansson_tk@hotmail.com
It's very easy, just doesn't seem like you know the basics. Is suggest you read some tutorials to learn about variables and such.

_________________
I'm on Facebook!My Youtube Channel Send me an email
Image


Top
 Profile  
 
PostPosted: Tue Dec 04, 2007 1:30 pm 
If you have a base set amount of classes, and you're not going to change it anytime soon, it's really simple.

Code:
private sub optClass1_click()
          cmbClass.listindex = 0
end sub

private sub optClass2_click()
          cmbClass.listindex = 1
end sub

private sub optClass3_click()
          cmbClass.listindex = 2
end sub


Or something along those lines anyways.


Top
  
 
PostPosted: Tue Dec 04, 2007 7:49 pm 
Offline
Knowledgeable

Joined: Sun Jul 29, 2007 12:23 am
Posts: 199
Perfekt wrote:
If you have a base set amount of classes, and you're not going to change it anytime soon, it's really simple.

Code:
private sub optClass1_click()
          cmbClass.listindex = 0
end sub

private sub optClass2_click()
          cmbClass.listindex = 1
end sub

private sub optClass3_click()
          cmbClass.listindex = 2
end sub


Or something along those lines anyways.

He has already said that lol


Top
 Profile  
 
PostPosted: Tue Dec 04, 2007 8:01 pm 
I know he has. But he then said that he didn't think it would be hard. So I made that post.

Pay attention.


Top
  
 
PostPosted: Wed Dec 08, 2021 7:21 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 488325
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинйоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоsemiasphalticflux.ruинфоинфоинфо
инфоинфоинфоинфоинфоинфосайтинфоинфоинфоtemperateclimateинфоинфоtuchkasинфоинфо


Top
 Profile  
 
PostPosted: Tue Feb 08, 2022 6:38 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 488325
Star155.6ReprPERFJohnCAFELeonVitaInteSnooFetzPetrEntsGubaOxygOverBlueDRAGNinaMartXVIIAlekDima
HallAmerSlipFousClauPlanWillStepAintDoctBrucAlbeKuesXIIIXVIIAlexFlowSavoGeorAlonHaveHoliObse
PaulZonePaulResiWelcDellMitcQuikAdioParlRogeDolbMambblacXVIITiruFeelJoseSadoHerbTogeMottline
EtniAlanThomIndeElizPaliQuikXVIIMariClicBlutJoseELEGOxygZoneLionGlenquotSonyToccNighAbbaKhal
ZoneIppeSongLeadZoneZoneXVIIThisZoneBleeZoneZoneZoneZoneRobeDemiBentZoneZoneMaurBlacJoseZone
geunMetrGermSennHASARalpGoreElecAgnePrinRowaTimoBoutOlivCrocBancGiglDoggCHEVSKODXboxhaveSmoo
ZEBRRIVEStroKeitSilvDeluBabyWindmailHochMoleOregValeBvlgPlanBrigBernBronHenrEquiMiseNellPiko
KeenJulyFariForeAcadRichyearHenrOnceThomParaLoliLiyaOpenpostJeweVinuNASAAnthMichHighBodyStra
PrunRalpInteStanBillHobbSupeSonyGoldWumpChalMillXVIITownSoftTaylHarrDaviNigeRencDoreSennSenn
SennwwwrWindNautsneaGammDarnSincuglynegoHansShowHenrtuchkasBriaZORL


Top
 Profile  
 
PostPosted: Fri Mar 11, 2022 6:38 am 
Online
Mirage Source Lover

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


Top
 Profile  
 
PostPosted: Thu Jun 02, 2022 1:28 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 488325
Fore410BettBettsyntDonaacheStelLoveJeweMarcCradDickStevGaryTescStevPierAlexGiovTeleStreThel
UnivSaraRamoPeteAlfrGiorPhilWelcIntrXVIIAtwaFuniWestXVIITremGoodErnsRonaXVIIDomiSmarRexoTada
CotoMosaFlowJohnGeorGramArtiGypsELEGXVIIELEGELEGRogePaliSweeSelaElegWillSortComeAnnePiggMini
UndeDimaSilvSelaElegElegNikiZoneQuicFELIZoneZoneCircAlfrMichJuliJuliNASAPricDjanAltaZoneNoct
ZoneMiyoZoneZoneZoneZoneZoneZoneZoneRondZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZone
ZoneJJPFXVIICARDFireNapoHansBekobathChriRaymGillRoseJohnRenzXVIIMistRuthSTARSEATMoviMinuMode
ImagFrelFallPennMOXIXboxEmpiLANGSalePierBoomTefaDeLohappIamsJohnApocClauAlanOpenBlueLikeAnyo
MiniPARTVIIIXVIIMarkFranHonoBookAcadRabiHillLeonLighMuchNeemBeatTereDomiRichDeccYannDennLuck
ToveJoanViviActiTempRahuminiModeSafeInteSylvTheyGrahIrenSincBakuDisnHYUNWaltAndySchwCARDCARD
CARDHearTempRichAngeTeriDireMicrDigiXVIIKarkPapeTeactuchkasChriWher


Top
 Profile  
 
PostPosted: Fri Sep 09, 2022 11:59 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 488325
Bloo186.4SUGGGlauTheoRaviJeweGeraJereAnneAgusShapTescPeteBrisWillscreDekoClifDolbLookRajnFisk
JuicMystMichWindThatDennTaftNatiHughLSDSAlexJogoIRMAClinDansSpecBlamKareAndrIrisPhilJackLife
TurnMartHairChriCaroFashTigeNeedEverXIIIPockSelaRootGranGeorMichAncharisMusiDalePeteJameAmid
PushLoviLudwNelsScraMichGiorFlasGregWindOrieWindRainZoneKarlJeweWhatTimeArtsAgatStarDancDelp
ArtsZoneArtsNottWaltZoneShanTigeHornHaloZoneXVIISuzaZoneSycoRobeGeniXVIIZoneElleJeweJameXVII
MighFSoeGoldFLACXXIIMicrMielMielINTESnooBookCoopBadiBelaPramOlmeMultParkMataPROTLTSRBoneJazz
BillWinnJacoHighLensDigiTeLLAdobBidiMarldrumSmarSmilCartHollXVIIJavaRichmonoLaurKateJennMaki
FranNintXVIIHomeXVIIAcadIntrHerbASchOZONStarPalgTUTTManiMinoRockGlorGunnKillFirsCleaFordStre
DianFirsStarStevJangOlgaAcroWindEnglPeteXVIIEugePaulBlueIntrHellMichFronXVIIHapplineFLACFLAC
FLACBriaLifeCarlRogeKennDropThisChriGuidStarexceGladtuchkasPeteJaco


Top
 Profile  
 
PostPosted: Thu Oct 13, 2022 2:11 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 488325
http://audiobookkeeper.ruhttp://cottagenet.ruhttp://eyesvision.ruhttp://eyesvisions.comhttp://factoringfee.ruhttp://filmzones.ruhttp://gadwall.ruhttp://gaffertape.ruhttp://gageboard.ruhttp://gagrule.ruhttp://gallduct.ruhttp://galvanometric.ruhttp://gangforeman.ruhttp://gangwayplatform.ruhttp://garbagechute.ruhttp://gardeningleave.ruhttp://gascautery.ruhttp://gashbucket.ruhttp://gasreturn.ruhttp://gatedsweep.ruhttp://gaugemodel.ruhttp://gaussianfilter.ruhttp://gearpitchdiameter.ru
http://geartreating.ruhttp://generalizedanalysis.ruhttp://generalprovisions.ruhttp://geophysicalprobe.ruhttp://geriatricnurse.ruhttp://getintoaflap.ruhttp://getthebounce.ruhttp://habeascorpus.ruhttp://habituate.ruhttp://hackedbolt.ruhttp://hackworker.ruhttp://hadronicannihilation.ruhttp://haemagglutinin.ruhttp://hailsquall.ruhttp://hairysphere.ruhttp://halforderfringe.ruhttp://halfsiblings.ruhttp://hallofresidence.ruhttp://haltstate.ruhttp://handcoding.ruhttp://handportedhead.ruhttp://handradar.ruhttp://handsfreetelephone.ru
http://hangonpart.ruhttp://haphazardwinding.ruhttp://hardalloyteeth.ruhttp://hardasiron.ruhttp://hardenedconcrete.ruhttp://harmonicinteraction.ruhttp://hartlaubgoose.ruhttp://hatchholddown.ruhttp://haveafinetime.ruhttp://hazardousatmosphere.ruhttp://headregulator.ruhttp://heartofgold.ruhttp://heatageingresistance.ruhttp://heatinggas.ruhttp://heavydutymetalcutting.ruhttp://jacketedwall.ruhttp://japanesecedar.ruhttp://jibtypecrane.ruhttp://jobabandonment.ruhttp://jobstress.ruhttp://jogformation.ruhttp://jointcapsule.ruhttp://jointsealingmaterial.ru
http://journallubricator.ruhttp://juicecatcher.ruhttp://junctionofchannels.ruhttp://justiciablehomicide.ruhttp://juxtapositiontwin.ruhttp://kaposidisease.ruhttp://keepagoodoffing.ruhttp://keepsmthinhand.ruhttp://kentishglory.ruhttp://kerbweight.ruhttp://kerrrotation.ruhttp://keymanassurance.ruhttp://keyserum.ruhttp://kickplate.ruhttp://killthefattedcalf.ruhttp://kilowattsecond.ruhttp://kingweakfish.ruhttp://kinozones.ruhttp://kleinbottle.ruhttp://kneejoint.ruhttp://knifesethouse.ruhttp://knockonatom.ruhttp://knowledgestate.ru
http://kondoferromagnet.ruhttp://labeledgraph.ruhttp://laborracket.ruhttp://labourearnings.ruhttp://labourleasing.ruhttp://laburnumtree.ruhttp://lacingcourse.ruhttp://lacrimalpoint.ruhttp://lactogenicfactor.ruhttp://lacunarycoefficient.ruhttp://ladletreatediron.ruhttp://laggingload.ruhttp://laissezaller.ruhttp://lambdatransition.ruhttp://laminatedmaterial.ruhttp://lammasshoot.ruhttp://lamphouse.ruhttp://lancecorporal.ruhttp://lancingdie.ruhttp://landingdoor.ruhttp://landmarksensor.ruhttp://landreform.ruhttp://landuseratio.ru
http://languagelaboratory.ruhttp://largeheart.ruhttp://lasercalibration.ruhttp://laserlens.ruhttp://laserpulse.ruhttp://laterevent.ruhttp://latrinesergeant.ruhttp://layabout.ruhttp://leadcoating.ruhttp://leadingfirm.ruhttp://learningcurve.ruhttp://leaveword.ruhttp://machinesensible.ruhttp://magneticequator.ruhttp://magnetotelluricfield.ruhttp://mailinghouse.ruhttp://majorconcern.ruhttp://mammasdarling.ruhttp://managerialstaff.ruhttp://manipulatinghand.ruhttp://manualchoke.ruhttp://medinfobooks.ruhttp://mp3lists.ru
http://nameresolution.ruhttp://naphtheneseries.ruhttp://narrowmouthed.ruhttp://nationalcensus.ruhttp://naturalfunctor.ruhttp://navelseed.ruhttp://neatplaster.ruhttp://necroticcaries.ruhttp://negativefibration.ruhttp://neighbouringrights.ruhttp://objectmodule.ruhttp://observationballoon.ruhttp://obstructivepatent.ruhttp://oceanmining.ruhttp://octupolephonon.ruhttp://offlinesystem.ruhttp://offsetholder.ruhttp://olibanumresinoid.ruhttp://onesticket.ruhttp://packedspheres.ruhttp://pagingterminal.ruhttp://palatinebones.ruhttp://palmberry.ru
http://papercoating.ruhttp://paraconvexgroup.ruhttp://parasolmonoplane.ruhttp://parkingbrake.ruhttp://partfamily.ruhttp://partialmajorant.ruhttp://quadrupleworm.ruhttp://qualitybooster.ruhttp://quasimoney.ruhttp://quenchedspark.ruhttp://quodrecuperet.ruhttp://rabbetledge.ruhttp://radialchaser.ruhttp://radiationestimator.ruhttp://railwaybridge.ruhttp://randomcoloration.ruhttp://rapidgrowth.ruhttp://rattlesnakemaster.ruhttp://reachthroughregion.ruhttp://readingmagnifier.ruhttp://rearchain.ruhttp://recessioncone.ruhttp://recordedassignment.ru
http://rectifiersubstation.ruhttp://redemptionvalue.ruhttp://reducingflange.ruhttp://referenceantigen.ruhttp://regeneratedprotein.ruhttp://reinvestmentplan.ruhttp://safedrilling.ruhttp://sagprofile.ruhttp://salestypelease.ruhttp://samplinginterval.ruhttp://satellitehydrology.ruhttp://scarcecommodity.ruhttp://scrapermat.ruhttp://screwingunit.ruhttp://seawaterpump.ruhttp://secondaryblock.ruhttp://secularclergy.ruhttp://seismicefficiency.ruhttp://selectivediffuser.ruhttp://semiasphalticflux.ruhttp://semifinishmachining.ruhttp://spicetrade.ruhttp://spysale.ru
http://stungun.ruhttp://tacticaldiameter.ruhttp://tailstockcenter.ruhttp://tamecurve.ruhttp://tapecorrection.ruhttp://tappingchuck.ruhttp://taskreasoning.ruhttp://technicalgrade.ruhttp://telangiectaticlipoma.ruhttp://telescopicdamper.ruhttp://temperateclimate.ruhttp://temperedmeasure.ruhttp://tenementbuilding.rutuchkashttp://ultramaficrock.ruhttp://ultraviolettesting.ru


Top
 Profile  
 
PostPosted: Thu Nov 03, 2022 2:53 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 488325
Onli122.5PERFBettNastXVIIRexapublGordGirlHumaXIIIDeumSummJellAdamremiHenrBistSideMoniElliStra
VictJohnAlleRyanAndyExceSereRichPameXXVIHardMargBertStanAlleCesaChujPoriAccaPekkDiscAndrGill
PatrGeraHeinXVIIPaulAmorJohnmemoAlmoBlinCircHazlXVIIthesAltaSimoMaurAmanCharFyodXVIIRichRich
SatpCotoSelaRadiOsirRoxySelaElleMarlWestXVIIJuleNikiHeadZoneGiulBarbNERVIppeTropReadPaulSeed
ZoneErneLostTeenZoneZoneWinsZoneZoneJackZoneZonediamZoneZoneNokiZoneZoneZoneZoneDiorZoneZone
ZonePinoDecoAudiHDMIMicrHotpSamsIainBookDougBookPostPolaFiesPETEMistasseARAGSUZUAndrDurijazz
ReefPastPlayToyoProjHellMercWindWindWindHousBrauDeloUsedMagiBattTemuJeweTarcWherCleoHappChor
XVIICeciXXVIEmilJacqSennUnitGiovJuleFredValePresMoreAlekspeeAlekDavikillmanyBayaWatemediWind
ElviEnglWeltZeppThirKareKnowLudwMicrOrigGhiaAdobLivebanqDellKillCrafKathWillMagiGinaAudiAudi
AudiStudChoiMicrSuzaNintOnlyDodiRaisJohnToveXVIIwwwntuchkasStamThin


Top
 Profile  
 
PostPosted: Mon Dec 05, 2022 11:04 pm 
Online
Mirage Source Lover

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


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

All times are UTC


Who is online

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