Mirage Source

Free ORPG making software.
It is currently Sun Apr 28, 2024 11:12 am

All times are UTC




Post new topic Reply to topic  [ 28 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: Map Editor
PostPosted: Mon Sep 22, 2008 7:05 pm 
Offline
Newbie

Joined: Wed Jul 30, 2008 11:14 pm
Posts: 23
well I know how to make the map editor bigger, but when i click a tile that was added by making the editor bigger. it sets the tile that it would be if the map editor wasnt expanded

what other codes do i have to add?


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Mon Sep 22, 2008 7:17 pm 
Offline
Persistant Poster
User avatar

Joined: Thu Jul 24, 2008 6:42 am
Posts: 703
Google Talk: infectiousbyte@gmail.com
I don't understand what you're asking. Please reiterate.

_________________
Image
GIAKEN wrote:
Since I'm into men, not women

GIAKEN wrote:
I can't take these huge penises anymore! All that's left is shame! And blood


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Mon Sep 22, 2008 7:28 pm 
Offline
Persistant Poster
User avatar

Joined: Tue May 30, 2006 2:07 am
Posts: 836
Location: Nashville, Tennessee, USA
Google Talk: rs.ruggles@gmail.com
There are a lot of 7's in your code that need to be changed to whatever the new width of your mapeditor is.


Next time, try to take a little more time to explain your problem thoroughly, and I'll take a little more time to explain the solution thoroughly.

_________________
I'm on Facebook! Google Plus My Youtube Channel My Steam Profile

Image


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Mon Sep 22, 2008 7:43 pm 
Offline
Newbie

Joined: Wed Jul 30, 2008 11:14 pm
Posts: 23
ok sorry


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Mon Sep 22, 2008 7:46 pm 
Offline
Persistant Poster
User avatar

Joined: Tue May 30, 2006 2:07 am
Posts: 836
Location: Nashville, Tennessee, USA
Google Talk: rs.ruggles@gmail.com
Eh, don't mind me. Been kinda pissy lately.

Anyhow,

If you take a look at Subs BltTile, BltFringe, BltMap (depending on which version of mirage you're using) read through those subs, and you should spot those 7s I was talking about. They deal with the width of the tilesets

_________________
I'm on Facebook! Google Plus My Youtube Channel My Steam Profile

Image


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Mon Sep 22, 2008 7:47 pm 
Offline
Newbie

Joined: Wed Jul 30, 2008 11:14 pm
Posts: 23
Oh ok then, Thanks my whole game tileset kinda depended on this/that.


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Mon Sep 22, 2008 7:48 pm 
Offline
Persistant Poster
User avatar

Joined: Tue May 30, 2006 2:07 am
Posts: 836
Location: Nashville, Tennessee, USA
Google Talk: rs.ruggles@gmail.com
Alright. Let us know if you can't get it figured out.

_________________
I'm on Facebook! Google Plus My Youtube Channel My Steam Profile

Image


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Mon Sep 22, 2008 7:58 pm 
Offline
Newbie

Joined: Wed Jul 30, 2008 11:14 pm
Posts: 23
I changed all the 7's to 36's in blt tile and blt fringe now it wont let me click any tiles. I'll take another look but I think I messed it up further


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Mon Sep 22, 2008 8:37 pm 
Offline
Persistant Poster
User avatar

Joined: Tue May 30, 2006 2:07 am
Posts: 836
Location: Nashville, Tennessee, USA
Google Talk: rs.ruggles@gmail.com
Your tile set is 36 tiles wide?

_________________
I'm on Facebook! Google Plus My Youtube Channel My Steam Profile

Image


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Mon Sep 22, 2008 8:57 pm 
Offline
Newbie

Joined: Wed Jul 30, 2008 11:14 pm
Posts: 23
opps its 16


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Mon Sep 22, 2008 8:59 pm 
Offline
Persistant Poster
User avatar

Joined: Tue May 30, 2006 2:07 am
Posts: 836
Location: Nashville, Tennessee, USA
Google Talk: rs.ruggles@gmail.com
Which version of Mirage are you using?

_________________
I'm on Facebook! Google Plus My Youtube Channel My Steam Profile

Image


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Mon Sep 22, 2008 8:59 pm 
Offline
Newbie

Joined: Wed Jul 30, 2008 11:14 pm
Posts: 23
mse2


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Mon Sep 22, 2008 9:10 pm 
Offline
Persistant Poster
User avatar

Joined: Tue May 30, 2006 2:07 am
Posts: 836
Location: Nashville, Tennessee, USA
Google Talk: rs.ruggles@gmail.com
Ah, okay. I'm not very familiar with MSE2, but for the problem you describe I don't think the solution should differ much from 3.0.3. If you're subs look like this, I'm fairly certain it should work. Maybe someone with more experience with MSE2 can verify?

Code:
Public Sub BltAnimations()
Dim rec As DXVBLib.RECT
Dim X As Byte, Y As Byte
   
    For X = 0 To MAX_MAPX
        For Y = 0 To MAX_MAPY
            With Map.Tile(X, Y)
                ' Is there an animation tile to plot?
                If .Anim > 0 Then
                    rec.Top = Int(.Anim / 16) * PIC_Y
                    rec.Bottom = rec.Top + PIC_Y
                    rec.Left = Int(.Anim Mod 16) * PIC_X
                    rec.Right = rec.Left + PIC_X
                    Call DD_MiddleBuffer.BltFast(X * PIC_X, Y * PIC_Y, DD_TileSurf, rec, DDBLTFAST_WAIT Or DDBLTFAST_SRCCOLORKEY)
                End If
            End With
        Next Y
    Next X
End Sub


Code:
Public Sub BltMap()
Dim rec As DXVBLib.RECT
Dim X As Byte, Y As Byte
   
    With rec
        .Top = 0
        .Bottom = (MAX_MAPY + 1) * PIC_Y
        .Left = 0
        .Right = (MAX_MAPX + 1) * PIC_X
    End With
       
    ' clear buffers
    DD_LowerBuffer.BltColorFill rec, RGB(0, 0, 0)
    DD_UpperBuffer.BltColorFill rec, RGB(0, 0, 0)

    For X = 0 To MAX_MAPX
        For Y = 0 To MAX_MAPY
            With Map.Tile(X, Y)
                rec.Top = Int(.Ground / 16) * PIC_Y
                rec.Bottom = rec.Top + PIC_Y
                rec.Left = Int(.Ground Mod 16) * PIC_X
                rec.Right = rec.Left + PIC_X
                Call DD_LowerBuffer.BltFast(X * PIC_X, Y * PIC_Y, DD_TileSurf, rec, DDBLTFAST_WAIT Or DDBLTFAST_SRCCOLORKEY)

                If .Mask > 0 And TempTile(X, Y).DoorOpen = NO Then
                    rec.Top = Int(.Mask / 16) * PIC_Y
                    rec.Bottom = rec.Top + PIC_Y
                    rec.Left = Int(.Mask Mod 16) * PIC_X
                    rec.Right = rec.Left + PIC_X
                    Call DD_LowerBuffer.BltFast(X * PIC_X, Y * PIC_Y, DD_TileSurf, rec, DDBLTFAST_WAIT Or DDBLTFAST_SRCCOLORKEY)
                End If
                If .Fringe > 0 Then
                    rec.Top = Int(.Fringe / 16) * PIC_Y
                    rec.Bottom = rec.Top + PIC_Y
                    rec.Left = Int(.Fringe Mod 16) * PIC_X
                    rec.Right = rec.Left + PIC_X
                    Call DD_UpperBuffer.BltFast(X * PIC_X, Y * PIC_Y, DD_TileSurf, rec, DDBLTFAST_WAIT Or DDBLTFAST_SRCCOLORKEY)
                End If
            End With
        Next Y
    Next X

_________________
I'm on Facebook! Google Plus My Youtube Channel My Steam Profile

Image


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Mon Sep 22, 2008 9:15 pm 
Offline
Newbie

Joined: Wed Jul 30, 2008 11:14 pm
Posts: 23
why don't I just download ms3? if its released. ots not like I've added anything important


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Mon Sep 22, 2008 9:17 pm 
Offline
Persistant Poster
User avatar

Joined: Tue May 30, 2006 2:07 am
Posts: 836
Location: Nashville, Tennessee, USA
Google Talk: rs.ruggles@gmail.com
MS4 would be the best to use. It's programmed very well. Only thing is, it's still kind of in development.

_________________
I'm on Facebook! Google Plus My Youtube Channel My Steam Profile

Image


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Mon Sep 22, 2008 9:21 pm 
Offline
Newbie

Joined: Wed Jul 30, 2008 11:14 pm
Posts: 23
Yea, I see.


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Mon Dec 13, 2021 5:36 pm 
Online
Mirage Source Lover

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


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Wed Feb 09, 2022 11:32 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 490470
When23.4BettBettMamaIsaaWireYevgJeffMangDamjWallZyliMetaSignPlinTescHeinFlorTescMichKateRose
ValiAUTOgreeSporLadyPacoLuxuGlenXXXLPlanCredMinoMatsMATIMexxAlwaGarnPaleHugoAnanToshDiscCrys
ShimMariMedwLineLaikKlauSparWillStefABBYJohaXVIILunaShakXVIIEngldarkSergAtikSpliJeweCharcomb
JameAbraPaulBernVIIIGeorJonaHappDoreHenrZoneZonePaulZoneGordZoneZoneMataSeikZoneZonePixaZone
FlemLoriBriaJemeMcKiMaxyJerzLifemailJuliMornRobeJohaDolbLucaJeanJackJackLaurMickZoneWinsErne
BenjBarigaraPCIeColdRockElecMainwwwmNewGDownSonySwarPicaPETESummRenzTexaARAGNarvLLeoMicrFunk
mostHellEducSonyHautSupeSaleWindWindworlLEGOBrauSwarPurpzitaWindChurHansRobeAmerLoveKareLais
WarnEnhaXVIIXVIIBernProkVIIIThisEnamRiveLiyaYevgHardSomeIntrYourDaviFranLucimothGalimusiGenu
SudoExceThisEnglAlanKnocForgSeijLouiViolFumaAudiAdidDeboBillXVIITainTereAlthDebiEoinPCIePCIe
PCIeFranHellTigeShinPuriStayRemiLudwChikEdgaGracTeactuchkasTherSome


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Sat Mar 12, 2022 10:55 am 
Online
Mirage Source Lover

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


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Wed Jun 15, 2022 12:03 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 490470
Dale209.4CHAPUsinCuddLadyComoHowaSamiRumiMantBibeTefaExceGiulRemeMacrSambErnePuisRobeIsisAzur
PaulXVIIMetaWeilSensHeadServArchSideCaudFilmEthnCounBrilAhavDeanDomoWillMargQuenOptieverBoxe
PhilJackNortAdidPachBrabdeatVoluJosiHaroPETEVashRoryAndrPameConsJohawhitFlasErneJeweCarrJewe
wwwaVirtWindSettDiamMarkKingPlugXVIIAstoPublGeniHardSideArtsCompsoutBrinArtsJeroJonsBodyArts
diamForediamIntrNWRPCharDonaCeroEinsQuenMartSingAlexPreaFielNintWindStepRolfStriBrunAmanFran
DigiKutaKobaMPEGAccoPatrMielElecDesiMachAndrFUZJNeriPolaPinoPoweOlmeLynyMystCENTBettEugeLati
ChesPureBeadLeboLittKidsElitWindMichWindGameBrauUnitLACOMonABranHighJethJustLadyMelaTourQuee
XVIIXIIITogeKlauXVIIXVIIChatIlluBirdCharVincToyoJessCharOlivIrinWoodLegeUltiFOREGenaSameXVII
PipeFinaHammUnitwwwnDolbPISACallScotBegiParaCharFullBryaWindEverThisThomMaleChriTraiMPEGMPEG
MPEGAvasDaniJohnXVIIPartfathNokiDaviRobePretBuddSevetuchkasAmolLawr


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Sat Sep 10, 2022 5:35 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 490470
Kill116.7PERFBettPervEdgaIrwiDomiInclCharPaulAtlaLinhPelhSnowCharTescBianRoseRayeXVIIPlayDeko
AnneTescFredTescTeanNiveVenuWildJustTaftJohnBassSondLookAquoCleoTaftMamaOralUrsuKeviGarnRene
GeorDeadJeweTrasVoguLineEntimattOlivGeorJameSelaPushAdioSelaPlanFeliVentCircSpliversAlfrTour
ShanFirsPremJozeJohaSpelLuckMiyoElegIsaaChetZoneXVIISwarJuliHappZoneFamiZoneHappHappTechERIN
SigmGaveCartHenrRobeRabbZoneProsJeweZoneLouiDaiwJohnXVIIPeteMichZoneOZONKathIrwiJameJeanJame
MurpQuijFragMiniMeriEmotFANTShagThisBuenRudyOlmeJohnAndrFEARMistGiglGeerARAGBlauGeorRogeJazz
AiryCreaTrefXIIIMoxiMultZizzwwwnSkilWindJumbProWBookCalvFresAndrDeepLoisSupeWindDigiXVIIpoli
TellApplFranXIIIAlexAdriHermDaniSamuAcadManuDelmPipeAlexBeatTurnMariDeepTonideatStevCharSoft
HansJackNapoHappLaurVoltVIIISamsNickFormCommXboxreneRosiBetrRogeSounHardKareBarrJohnMiniMini
MiniArisShelimmeSittCradOrigFortMaryFounPretMPEGRoaltuchkasTascAnge


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Thu Nov 03, 2022 12:27 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 490470
When290.5BettCHAPreasUnfaThomMicrMARVAnilKarlMikaPYPWRoadZdenQuatEvilWINXPinkStriZoneMinhXVII
AtlaCuisModeSorbPenhVenuMemoSultJohnCartMarkStevRenaNivePhilNiveSeboCredCredGreePulpGranPale
ColgDreaBlueDantAmarCoolwwwnLoonElegviscMariErmiSaulMargKarlPentXVIIGuesNikiSelaCircSympBrea
ArktIntrEricRudyWaltAlejXVIIOrbiRighParkMuruCyriWindArtsRusiHenrPaulWaltRondZoneAlanBonuZone
SwarPierSwarZoneMaryStefRobeWillXaviJohnRidlManfPlugNokiAlanRogeWiseARCHMoonPekkpapeNeanETSB
HateBestZINNMicrVillGordMabeCataBookMajoBookEpsoNeriBonuDarkBestKariGeniARAGProjBaroHarrBlue
FlatMirrEditHounMagiBegiWindwwwnBarrWindLEGOBoscChouBaldChoiXVIIEddiKareyearGastLoveDeatwwwk
WillLiviDreaAdolHennFyodHonoReprSonyMothCitiOlegVideAmerTireWindBoriGammHealMindNagiENVYFent
wwwrToveJoanMaryAdobJeweWillInteRockMichFyodAlanKaspRussWillSpinXVIIFranGaryMartBurnMicrMicr
MicrMarkDireGonnAnnaColuArtiUriaRobeLandHerePaulDarrtuchkasQBasCant


Top
 Profile  
 
 Post subject: Re: Map Editor
PostPosted: Fri Dec 09, 2022 4:02 pm 
Online
Mirage Source Lover

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