Mirage Source

Free ORPG making software.
It is currently Sun Apr 28, 2024 8:31 pm

All times are UTC




Post new topic Reply to topic  [ 24 posts ] 
Author Message
PostPosted: Sun Jul 16, 2006 8:04 pm 
Offline
Regular

Joined: Mon May 29, 2006 6:04 pm
Posts: 66
with only the character name
ONLY SERVER SIDE
make a new module and name it modOfflineAccount
add all of this code to it
Code:
Type TempAccountRec
    Login As String * NAME_LENGTH
    Password As String * NAME_LENGTH
    Char(1 To MAX_CHARS) As PlayerRec
End Type

Public TempAccount As TempAccountRec


Sub GetChar(ByVal Name As String)
Dim f As Long
Dim s As String, X As Long
    f = FreeFile
    frmServer.fileList.Path = App.Path & "\accounts"
    For X = 0 To frmServer.fileList.ListCount
        Open (frmServer.fileList.Path & "/" & frmServer.fileList.List(X)) For Input As #f
            Do While Not EOF(f)
                Input #f, s
                If Trim(LCase(s)) = ("name=" & Trim(LCase(Name))) Then
                    Close #f
                    Call LoadTempAccount(frmServer.fileList.List(X))
                    Exit Sub
                End If
            Loop
        Close #f
    Next X
End Sub

need to make a file list on frmServer named fileList
set its filter to *.ini
set its visibility to false
then you need these two subs but with your specific code in them..
Code:
Sub LoadTempAccount(ByVal Name As String)
Dim FileName As String
Dim n As Long, X As Byte
    FileName = App.Path & "\accounts\" & Trim(Name)
    TempAccount.Login = Trim(GetVar(FileName, "GENERAL", "Login"))
    TempAccount.Password = Trim(GetVar(FileName, "GENERAL", "Password"))
    For X = 1 To MAX_CHARS
        With TempAccount.Char(X)
        'place a copy of your load player Sub here
        End With
    Next X
End Sub

Sub ClearTempAccount()
Dim n As Long, X As Byte
    TempAccount.Login = ""
    TempAccount.Password = ""
    For X = 1 To MAX_CHARS
        With tempAccount.Char(X)
        'place a copy of your clear player Sub here
        End With
    Next X
End Sub

now what this will do is find out which accoutn the character name belongs to then load in that account to the TempAccount array
allowing you to change anything in it you wish to change then you
can save it and be done with it
the saveing sub is something you can figure out on your own from
the code provided i am sure
the clear TempAccount sub is used to erase the info server side

enjoy


Top
 Profile  
 
 Post subject:
PostPosted: Sun Jul 16, 2006 8:28 pm 
Offline
Newbie
User avatar

Joined: Mon Jun 19, 2006 12:23 am
Posts: 24
IDOL! lets try it right now ^^, thx man

_________________
Wow! i'm a teacher now! WTF XD


Top
 Profile  
 
 Post subject:
PostPosted: Wed Jul 19, 2006 5:03 pm 
Offline
Regular

Joined: Mon May 29, 2006 6:04 pm
Posts: 66
well how did it work out for you?
just curious..
would like some sort of feed back


Top
 Profile  
 
 Post subject:
PostPosted: Wed Jul 19, 2006 5:32 pm 
Offline
Knowledgeable

Joined: Wed Jun 14, 2006 10:15 pm
Posts: 169
I'm messing with this right now, I'll tell ya how it works out :)


Top
 Profile  
 
 Post subject:
PostPosted: Wed Jul 19, 2006 5:42 pm 
Offline
Knowledgeable

Joined: Wed Jun 14, 2006 10:15 pm
Posts: 169
Code:
Sub GetChar(ByVal Name As String)
Dim f As Long
Dim s As String, X As Long
    f = FreeFile
    frmServer.fileList.Path = App.Path & "\accounts"
    For X = 0 To frmServer.fileList.ListCount
        Open (frmServer.fileList.Path & "/" & frmServer.fileList.List(X)) For Input As #f
            Do While Not EOF(f)
                Input #f, s
                If Trim(LCase(s)) = ("name=" & Trim(LCase(Name))) Then
                    Close #f
                    Call LoadTempAccount(frmServer.fileList.List(X))
                    Exit Sub
                End If
            Loop
        Close #f
    Next X
End Sub


This gives me an error on this line:

Code:
       Open (frmServer.fileList.Path & "/" & frmServer.fileList.List(X)) For Input As #f

- Path not found.

Tried this and it also fails to work:
Code:
       Open (frmServer.fileList.Path & "\" & frmServer.fileList.List(X)) For Input As #f

- File not found


Top
 Profile  
 
 Post subject:
PostPosted: Wed Jul 19, 2006 6:05 pm 
Offline
Pro

Joined: Mon May 29, 2006 2:15 am
Posts: 368
if you've changed your accounts path... or the accounts folder doesn't exist, that could be the reason why.

You might also try

frmServer.fileList.Path = App.Path & "accounts"


That might fix it. Just play with that for a bit and see what you can do.

_________________
Image
Image
The quality of a man is not measured by how well he treats the knowledgeable and competent, but rather how he treats those less fortunate than himself.


Top
 Profile  
 
 Post subject:
PostPosted: Wed Jul 19, 2006 6:49 pm 
Offline
Knowledgeable

Joined: Wed Jun 14, 2006 10:15 pm
Posts: 169
Meh I gave up ... confused myself... I'l take anothe rstab at it when I'm not tired lol.


Top
 Profile  
 
 Post subject:
PostPosted: Fri Jul 21, 2006 10:23 am 
Offline
Knowledgeable

Joined: Sun May 28, 2006 9:06 pm
Posts: 147
is there a "index" for this tem account? :/ cuz tahts what i need if i call a sub or function for example, it always is like that: getplayersomething(index as long, bla bla)



oh, and how can i get the charnum for the char?

thanks


Top
 Profile  
 
 Post subject:
PostPosted: Sat Jul 22, 2006 6:50 am 
Offline
Regular

Joined: Mon May 29, 2006 6:04 pm
Posts: 66
if you only want the char number of the specific character all you would
have to do is scan the right account for the char name to see which one
matches it
this code takes the characters name and finds the right acocunt by scanning them all
if you want to find the specific char number just add in something like this
to the already present GetChar sub it would go into the spot where it calls
the load temp account
Code:
dim File as string
File = app.path & "\" & frmserver.FileList.list(frmserver.FileList.listindex)
for x = 1 to Max_Chars
    If getvar(File, "CHAR" & X, "Name") = Name then
        CharNum = X
        Exit Sub
    End If
next x


that should about do it
any more questions?

and no there is no index for this acocunt becaouse it isn't connected via a client i am sureyou could set one up for it


Top
 Profile  
 
 Post subject:
PostPosted: Sat Jul 22, 2006 10:24 am 
Offline
Knowledgeable

Joined: Sun May 28, 2006 9:06 pm
Posts: 147
since you asked if we got more questions, how would you set that up? :D


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jul 24, 2006 3:49 am 
Offline
Regular

Joined: Mon May 29, 2006 6:04 pm
Posts: 66
add something like this
to the already present GetChar sub it would go into the spot where it calls
the load temp account

that is what i said in that short narative above the bit of code
that is were you would put it and it would retrieve the charNum ..
which is what you requested

are you having any specific problems with any part of the code?


Top
 Profile  
 
PostPosted: Tue Nov 02, 2021 2:32 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 490955
saga137.7DEFIBettWhatJeweBlacHenrZhanBendCarsMcBaCanoMineFiskByroXVIIXVIIGeorMorlRichComePrem
WWWRMoulStudDaviDeepCarlJasoSmokPatrLemoSidnRobiXVIIMatiAlwaFlemXVIIAlexStevPhilTescPalmLion
ByzaIherRossRandCeciRagaArchJameMystMODOCircVashAlexpinkAltaSelaMadhblacTetsPaulBradGoodAbov
PushChanSelaDarkAlwyElsySelaMasaGuitMacbDonaJohnTraiAshiZoneAstrZoneHaroDaweChilPushZoneLiPo
ZoneZoneLongZoneZoneGirlOverZoneZoneRighZoneZoneZoneKarlZoneLeonDympZoneZoneBoleStepZoneZone
ZoneEcceAidaTRASMehuHarvGoreElecDeboCabrAndyMercArmoOlmeDuraLoopLawrMitsCHERLanzUldrThorCoun
UnisVentBeadProSCottPacoGalawwwcwwwnPoweCrayPhilBrauKyliChoiGottEsseJeweINTEShutHeadCharDist
VirgElitFeueStanVisuXVIIEmilBookComeTheoToniMurrBaftDisnComiHardMcDoJoseChanGiusMarvcybeFord
PleaSallVickRossWMRBEloiWindRaymXVIIMichWillColoMobiRobeKokoSecrNapoLassDoreCoulTimoTRASTRAS
TRASHolyNairTakkJeweMPEGIntrGeorCustJohnAlfrPaulwwwntuchkasBossBlac


Top
 Profile  
 
PostPosted: Thu Feb 17, 2022 7:57 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 490955
Hora136.6nsinBettTrumXVIILineXVIIAnthInstMattSushFlexKickJameManuXVIINageBarbMaurLeigAdidTesc
AlphCompHojeIsaaJohnHenrJackNimmMPEGPurePelhGeorCascJeanwoonRichWillFredMartSignTescAloeTrac
RigaJuleWillMobiOlivLangXVIIIrenSelaSelaCircSeaWDonnUndeSpliElegDavihoneZeroPhilTogeShirCaly
OrdeCotoSelaSuprWaegSilvCircJamedowsMonuXVIIXVIICircXVIIZoneRichZoneCentCounSlamFromZoneWest
ZoneZoneIsolZoneZoneDarnThemZoneZoneFranZoneZoneZoneLuigZoneWindXVIIZoneZoneZoneIntrZoneZone
ZoneRecoSingTRASAWFaMakeElecElecSherSileNintTequJeweOlmeZeniElieScotAutoLEXUFerrBlitThistrac
SpirSpirBeadProSHautActiTianWindmailwwwiIntrBorkSiemDreazitaLawrRobeCompDianRockVarihaveToni
FranAmatReneHilmwwwmXVIIEmilChalTechMarkAlicTeamProdArCoRussGreeKamaCharFromGregBattJacqHopk
NivaNelsAtlaCathNeveSylvWindArthKatyThomCharMichWindDancThreSeniJackBrucElleGileSusaTRASTRAS
TRASXVIILessBonuEckhSonyOperNortservStudVoakPleaRisetuchkasGottRaza


Top
 Profile  
 
PostPosted: Tue Mar 15, 2022 9:11 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 490955
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинйоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоmagnetotelluricfield.ruинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоtuchkasинфоинфо


Top
 Profile  
 
PostPosted: Thu Sep 15, 2022 10:10 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 490955
Artu179.5CHAPPERFJaneTicaDonnGeraMattRogeJeweRockRiveTracXVIIOscaWherQueeXVIIRhapArthPierRond
MetaPlatBennNormShadSuitXXIIMAGIUriaOSDSTurnWherDidnTeanEineGeorTremMukaKitaEnglTescMPEGArth
CalvXXIVRichKarlPushUPICXVIIGyorHubbCircGlobNancAdriDigiEmilElegClaushinMickFyodMichAnurBaca
WindArktSandProfWindSelastylWindRubiThomResaGoodArteTangSwarOtheZoneSoutArtsPaulCircZonePhil
ZoneZoneRockZoneZoneZoneXXIIMORGZoneNokiZoneZoneZoneZoneZoneStevHessZoneZoneAlieManiZoneZone
ZoneLEIVTakeSonyRoyaWintSCARKronBookDannMistVladMorgConvNORDDuraProtSTARCadiSonyGeorTherNati
TowezeroEditArctWitcHummCrazWindWindHectBOOMTaniLegoFranAfteLogoTakiLogiGeerFineJameFairChap
MincWindYageJacqBrazPaulSideOZONLastWaltRussCapiMikhSaleFredSoutRespRiveClemJeanAntoLoviCred
wwwnFionSeymrtscCleaBuilCeleAssaMcKiEnjoCharRogeLoveRobeCoveBlacHomoMozaSunrElizThisSonySony
SonyDaniWillToshHaugRETARealReadBornMemoHeavLynnCarotuchkasSusaWago


Top
 Profile  
 
PostPosted: Sat Nov 05, 2022 7:11 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 490955
Herr19.9PERFBettBlawsurvDianDeanXIIIMPEGDeccKeitHaraTescLewiTescEverSofiWindEricZackDaniStep
TescFranBobbAtlaUNIXPierGeraThatAryeMichNeveConnLoneGlenCharNiveKorrXVIIAutrColeStriGlisPric
JohnSieLThisRaymBradSzulTotoColoGIUDDeigArteRudoCassSelaMatiXVIIPaliIndrsizeRoxyQuanCotoCarl
JamePushSelaModoVentPaliEvanWarnElegPaliZoneRondWeniBearOnomFuxiZoneShadMichHarrELEGFuxiDavi
ZoneZoneZoneXVIIAmecCondZoneNasoChatZoneStanZoneZoneYvesDaviWindZoneZoneErneZoneJeweZoneZone
ZoneHanoMiloCasiYourFlavMielCataHanaPoweDownAlcoPolaDaviMistProtMistPRESSTARLogidtugArthCoun
ValiValiEditHautHautSonyRockWordwwwlMicrHumaKenwValeHantPediLaurEricprodStanNatuOrdeHeadEcho
PrelXenoStepPainMarkWillCuttJeffOnceAdamJohnNikoLeonSongGoviOnlyBestPhilINTEBerlKrolLateACTI
PaulStevXVIIMicrRaveForeCruswwwnHTMLStepVirgSideGizoThomBradSydnGaryHenrDaniXVIIRemiCasiCasi
CasiWakeFranCosmliveWhenDropAllaFionJameUndeNoteMicrtuchkasSincWind


Top
 Profile  
 
PostPosted: Mon Dec 12, 2022 4:02 am 
Online
Mirage Source Lover

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


Top
 Profile  
 
PostPosted: Sun Feb 05, 2023 3:38 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 490955
myst192.3CHAPmirrForrHousDancSonnDantEinfAnheAgaiTescDaisCarmTescremiBURDAdamXVIIXIIILinuGeor
GotaRobeMichXVIIWaynWingWindDalyEricPyaaremiShadRodrFerrHarrOrsoMaryMARVAnneTherPisaPalmMord
AlexHettOmsaXVIIJeweStepBillClifELEGReviFallBothrlesSelaVentSelaElegXXVIYoshAfriUbisCotoPoul
PhilSnowSelaCircArtePaliSelaMikePaliPaliHenrRondAllyCernZoneRobeZoneSailMichXVIIAlanZoneBlue
ZoneMORGZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneWindZoneZoneZoneZoneORDEZoneZone
ZoneMalcpannHDMIDAXXKronIndeFeliTravPiraSnooMyMyAlcoElitESIGVanbTolsSUBAARAGARAGDiscThisVoca
ValiPastReedAnimWinxMOXISupeWindSPOTmailBarbPhilRedmChouFrisIainJohnHenlEricWojcHymnDeadYour
AlleLiviNatuLindBaltBestHeinWindHonoHeinWelcOlegBattAngeAnotInviDaviBradMaurJeweStilJonaAnar
JaneRitaMarkDaleBethOdysHerbEnjoRichCounSaocWilhLeitChriLuciRowlArleWordMPEGQueeMillHDMIHDMI
HDMIFallHeadThisJuliMichISBNLoftBackRobeThisJaneWilltuchkasPeneKnow


Top
 Profile  
 
PostPosted: Thu May 11, 2023 5:17 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 490955
nove259.4CHAPCHAPSanzNintJeweJoseJonaGoosJohnXboxOrieNormErneGlobXVIIRossXVIIXVIIZoneMotoTesc
UnitBriaClasItalPenhAccaMaybWheeSlowKonzPlusHoteWindSupeGoneCharNiveWindPEAPAdidPlusJohnNunn
BrilInvaEasyDolbJeweArktMechCerrAdioGiorviscPatrVespHansValeHampXVIIFELINikiRoxyCollRudoKosi
KlagSharJoseAgatThomAlfrHeadHenrJuliFIFATonyOverPictArtsSwarWillKrinHaroZonediamJorgJohnFuxi
STEEKarlZoneZoneERINXVIIVisiErneKodaWiFiBillSimoBillSkatRogeJohnXVIINokiVitaSonystarDaviProj
AdidEcarUSSRNexuCopeOZONMielCataSherProlVoodDesiSwarOlmeSQuiCollDuraAlpiWorlHEYNPENNUrinJazz
YorkTangAeroProSMagiEducWindWindWindWindGeomKenwhappBrunJameRobeWithMarbWorlNailAgatssivXVII
NortExceDutcHomoCharGeorEmilWillDoubXVIIWaltIchaDolbGoinPeteSwimMartDaleFeldAbouPoweKindMerc
FlasIKEAJonainsiWinxStiaStepJohnLiveAllaMichJigsVikrURSSGarySeniArleBratThomQueeGeraNexuNexu
NexutridwwwnLiviDeatDougCaroKennRichAndaThisHelpAmaztuchkasSterSymp


Top
 Profile  
 
PostPosted: Fri Jun 16, 2023 8:31 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 490955
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  [ 24 posts ] 

All times are UTC


Who is online

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