Mirage Source

Free ORPG making software.
It is currently Sat Apr 27, 2024 11:32 pm

All times are UTC




Post new topic Reply to topic  [ 266 posts ]  Go to page 1, 2, 3, 4, 5 ... 11  Next
Author Message
PostPosted: Tue Aug 01, 2006 4:55 pm 
Offline
Knowledgeable
User avatar

Joined: Thu Jun 29, 2006 12:11 am
Posts: 120
I guess theres a bug I can succesfully create an account with no problem but when I try to login it says wrong password

Heres my Passwordok function

Code:
Function PasswordOK(ByVal Name As String, ByVal Password As String) As Boolean
Dim FileName As String
'Dim RightPassword As String
Dim RightPassword As String * NAME_LENGTH
Dim nFileNum As Integer

    PasswordOK = False
   
    If AccountExist(Name) Then
   
    nFileNum = FreeFile
    Open FileName For Binary As #nFileNum
   
        FileName = App.Path & "\Accounts\" & Trim(Name) & ".zap"
        Get #nFileNum, 20, RightPassword '= nFileNum.Password
   
                RightPassword = Player(Index).Password
       
        If UCase(Trim(Password)) = UCase(Trim(RightPassword)) Then
            PasswordOK = True
        End If
    End If
End Function


I been trying alot to make it load right but I cant make it work >.<

_________________
©Krloz 2004-2006. all rights, lefts and other directions reserved
Image


Top
 Profile  
 
 Post subject:
PostPosted: Tue Aug 01, 2006 5:35 pm 
Offline
Pro

Joined: Mon May 29, 2006 5:01 pm
Posts: 420
Location: Canada, BC
Google Talk: anthony.fleck@gmail.com
I had a similar problem, try removing the
Code:
RightPassword = Player(Index).Password


Top
 Profile  
 
 Post subject:
PostPosted: Tue Aug 01, 2006 7:26 pm 
Offline
Knowledgeable
User avatar

Joined: Thu Jun 29, 2006 12:11 am
Posts: 120
Commented it before didnt work.

_________________
©Krloz 2004-2006. all rights, lefts and other directions reserved
Image


Top
 Profile  
 
 Post subject:
PostPosted: Tue Aug 01, 2006 11:21 pm 
Offline
Knowledgeable
User avatar

Joined: Mon Jul 24, 2006 2:04 pm
Posts: 339
Heres a little debugging hint - try putting stoppers (click the left side of the screen and place the dot on the line) then when the code stops at that line, move the mouse over certain variables to see if they are what they should be. One good place to check is the password you are recieving. Hope that helps! 8)

_________________
NetGore Free Open Source MMORPG Maker


Top
 Profile  
 
PostPosted: Wed Aug 02, 2006 12:58 am 
Offline
Pro

Joined: Mon May 29, 2006 1:40 pm
Posts: 430
Code:
Function PasswordOK(ByVal Name As String, ByVal Password As String) As Boolean
Dim FileName As String
'Dim RightPassword As String
Dim RightPassword As String * NAME_LENGTH
Dim nFileNum As Integer

    PasswordOK = False
   
    If AccountExist(Name) Then
   
    nFileNum = FreeFile
    Open FileName For Binary As #nFileNum
   
        FileName = App.Path & "\Accounts\" & Trim(Name) & ".zap"
        Get #nFileNum, 20, RightPassword '= nFileNum.Password
   
                RightPassword = Player(Index).Password
       
        If UCase(Trim(Password)) = UCase(Trim(RightPassword)) Then
            PasswordOK = True
        End If
    End If
End Function


Tell me...why are you setting the file name after you need to open it using the filename? that doesn't seem smart. nor like that would even work :P

as for rightpassword = player(index).password. You are doing this before you load the entire account, therefore the player rec won't have any data in it. not to mention that the sub doesn't even know what index is. its not passed(nor should it be). You're also assuming rightpassword is 20 bytes from the start of the file. Is that still true(it might have been true for the person writing the tutorial, but you're game could be different)


Top
 Profile  
 
 Post subject:
PostPosted: Thu Aug 03, 2006 12:20 am 
Offline
Knowledgeable
User avatar

Joined: Thu Jun 29, 2006 12:11 am
Posts: 120
Ok Tried different things I still couldnt get it to work <.< any other hints? :P

Code:
Function PasswordOK(ByVal Name As String, ByVal Password As String) As Boolean
Dim FileName As String
'Dim RightPassword As String
Dim Rightpassword As String * NAME_LENGTH
Dim nFileNum As Integer

    FileName = App.Path & "\Accounts\" & Trim(Name) & ".zap"
    PasswordOK = False
       
    'If AccountExist(Name) Then
       
    nFileNum = FreeFile
    Open FileName For Binary As #nFileNum
       
     
              Get Trim(Name), , Rightpassword '= nFileNum.Password
              Password = Rightpassword
              Rightpassword = Player(Index).Password
           ' Password = Rightpassword
                'RightPassword = Player(Index).Password
       
        If UCase(Trim(Password)) = UCase(Trim(Rightpassword)) Then
               If AccountExist(Name) Then
            PasswordOK = True
                  End If
    End If
End Function

_________________
©Krloz 2004-2006. all rights, lefts and other directions reserved
Image


Top
 Profile  
 
 Post subject:
PostPosted: Thu Aug 03, 2006 12:25 am 
Offline
Regular

Joined: Mon May 29, 2006 9:47 pm
Posts: 49
When you save the accounts, do you use.

Code:
 Put CharName, , RightPassword


CharName of course might be different, but the RightPassword part.


Top
 Profile  
 
 Post subject:
PostPosted: Thu Aug 03, 2006 2:44 am 
Offline
Pro

Joined: Mon May 29, 2006 1:40 pm
Posts: 430
Code:
Get Trim(Name), , Rightpassword


by leaving it blank, you don't know where it is taking it from(probably from the start of the file)...noooooo....tell it what to do!!!

Code:
Password = Rightpassword

Why?!
Password is what they guessed!

Code:
Rightpassword = Player(Index).Password

you dont even know what index is!, the player hasn't been loaded! noo! baddd!


Top
 Profile  
 
 Post subject:
PostPosted: Thu Aug 03, 2006 5:20 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
Code:
Function PasswordOK(ByVal Name As String, ByVal Password As String) As Boolean
Dim FileName As String
Dim RightPassword As String * NAME_LENGTH  'An empty string of the right length, this lets us pull the right ammount of bytes without using a byte array.... easy peasy
Dim nFileNum As Integer

    PasswordOK = False 'Set it to false incase there's an error
   
    If AccountExist(Name) Then 'If the account is there...
        FileName = App.Path & "\Accounts\" & Trim$(Name) & ".vac"
        nFileNum = FreeFile
        Open FileName For Binary As #nFileNum 'Open the file
       
        Get #nFileNum, 20, RightPassword  'Pull the password from the binary encoded file.  The password's first letter starts on byte 20.  I know this because I know how the file was saved... it may be different for you.  Because RightPassword is a fixed length string, it will pull the next 20 bytes out automaticly.  For more information about how this works, see my binary tutorials
       
        Close #nFileNum 'Dont leave files open...
       
        If Trim$(Password) = Trim$(RightPassword) Then 'compare... Mine is case sensitive, add UCase$ or LCase$ to make it not.
            PasswordOK = True
        End If
    End If
   
End Function



Code ripped from Valkorian, comments added on the spot by yours truely...


Dave~

PS: I FIXED MY COMPUTER AN DI GOT EVERYTHING BACK YAYYYS!


Top
 Profile  
 
 Post subject:
PostPosted: Fri Aug 04, 2006 12:54 am 
Offline
Knowledgeable
User avatar

Joined: Thu Jun 29, 2006 12:11 am
Posts: 120
oK ill try it later school started and I cant be on pc >,> all I can do is homework =(

_________________
©Krloz 2004-2006. all rights, lefts and other directions reserved
Image


Top
 Profile  
 
 Post subject:
PostPosted: Fri Aug 04, 2006 1: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
o-o where do you live?


Top
 Profile  
 
 Post subject:
PostPosted: Fri Aug 04, 2006 6:57 pm 
Offline
Knowledgeable
User avatar

Joined: Thu Jun 29, 2006 12:11 am
Posts: 120
I live in mexico im in high school and we started 2 days ago 7am to 3pm is the time I have to be in school but its worth it because I leave as a profesionist :P

_________________
©Krloz 2004-2006. all rights, lefts and other directions reserved
Image


Top
 Profile  
 
 Post subject:
PostPosted: Fri Aug 04, 2006 7:02 pm 
Offline
Pro

Joined: Mon May 29, 2006 1:40 pm
Posts: 430
well its not like...oh poof im professional right when you get out of school :P.

And those are about the same hours you have that we have for school(though school doesnt start till the begining of september for me)


Top
 Profile  
 
 Post subject:
PostPosted: Fri Aug 04, 2006 7:23 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
7am!?

If we had school at 7am I would have to get up at... at... 5am!! :O

We have school at about 8:30, but I need to get two trains to get there.


Top
 Profile  
 
 Post subject:
PostPosted: Fri Aug 04, 2006 7:28 pm 
Offline
Pro
User avatar

Joined: Thu Jun 01, 2006 5:52 pm
Posts: 461
Kite wrote:
7am!?

If we had school at 7am I would have to get up at... at... 5am!! :O

We have school at about 8:30, but I need to get two trains to get there.


Two Trains? How a terrible way of starting the day... xD. My Schools like 30 meter from my home.


Top
 Profile  
 
 Post subject:
PostPosted: Fri Aug 04, 2006 8:31 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
Lucky :S

But I do get a chance to grab a Latté whilst switching trains so it's not all bad.

Anyway, tell us if you manage to sort out your problem!


Top
 Profile  
 
 Post subject:
PostPosted: Fri Aug 04, 2006 9:00 pm 
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
my school is a 15 minute car ride, or a 25 minute bus ride. I get up at 6:00 in the morning, get to school at 7:00 and school officially starts at 7:25.

yay wisconsin!


Top
 Profile  
 
 Post subject:
PostPosted: Fri Aug 04, 2006 9:33 pm 
Offline
Knowledgeable

Joined: Sun May 28, 2006 9:06 pm
Posts: 147
Dave wrote:
my school is a 15 minute car ride, or a 25 minute bus ride. I get up at 6:00 in the morning, get to school at 7:00 and school officially starts at 7:25.

yay wisconsin!



i have to walk to school ^^, i get up at 6:50, leave my house at 7:30 and school starts at 8:05, so 35 mins way :/


Top
 Profile  
 
 Post subject:
PostPosted: Fri Aug 04, 2006 11:56 pm 
Offline
Pro

Joined: Mon May 29, 2006 1:40 pm
Posts: 430
Quote:
my school is a 15 minute car ride, or a 25 minute bus ride. I get up at 6:00 in the morning, get to school at 7:00 and school officially starts at 7:25.

yay wisconsin!


Wow its the same here, though I wake up 15 minutes later and get to school 15 minutes later...but I think it starts at 7:25.

Oh, and I'm in a good state xD


Last edited by Misunderstood on Sat Aug 05, 2006 2:24 am, edited 1 time in total.

Top
 Profile  
 
 Post subject:
PostPosted: Sat Aug 05, 2006 1:56 am 
Offline
Knowledgeable
User avatar

Joined: Thu Jun 29, 2006 12:11 am
Posts: 120
Thread went a bit offtopic xDDD


Well I got it working now when I try to change the classes I get a bug I think i will leave it for another time for now I think the accs are only the binary thing needed :P

_________________
©Krloz 2004-2006. all rights, lefts and other directions reserved
Image


Top
 Profile  
 
PostPosted: Wed Dec 08, 2021 12:28 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489857
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.ruинфоhttp://semifinishmachining.ruhttp://spicetrade.ruhttp://spysale.ru
http://stungun.ruhttp://tacticaldiameter.ruhttp://tailstockcenter.ruhttp://tamecurve.ruhttp://tapecorrection.ruhttp://tappingchuck.rutaskreasoning.ruhttp://technicalgrade.ruhttp://telangiectaticlipoma.ruhttp://telescopicdamper.ruсайтhttp://temperedmeasure.ruhttp://tenementbuilding.rutuchkashttp://ultramaficrock.ruhttp://ultraviolettesting.ru


Top
 Profile  
 
PostPosted: Tue Feb 08, 2022 8:51 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489857
Xant196.5CHAPReflKallDeanDigiLuisCharBienAnheStralassBeerJavaFaitRogeClasMissReneJohnTescOlga
EdgaStouPonswwwnCircPeteTeanFaraBrotGlisRudoConsToshSupeNiveEmilMausMarrPaulTommInclMariOrie
LacaStewWillFranOlivLineWindTroyMPLSRobeWindAdioIchaJoseGaumMamaJeroLuxoWeslCarlLargJohnTraf
UnrePushJameHeroGordAiAiSourKungDwigXVIIBeyoWindAntiWhenArtsWinxPreflineArtsJohnTyraSaisMika
ArtsOrazInviWhitThinStevTheuNowhRealRobeZoneElizWennJoelTigeFlasNielEricPeteJohnCrusLionIsaa
NaraMaruhromFLASGranWindNardElecAnthPalmBookSQuiJardShakPolaPostSeriParkMystScheSigmCiveSoul
CleaEducStanHoddSonyGlobToyoBabyDinaMabuIwakDeLoTefaBailRoyaMaryJeweReneXVIIVladDianAgatPERS
TensElizDaviXVIIPercXVIIHenrconsRainGeorLoveJustValeTranHaveStudBeliinfoWhenStedBlacBodyFina
NintBodyHansWinkPanaOZONSonyChisRichYorkXIIIQuicLogiMichPresThisPalmSpoeCathVisaFritFLASFLAS
FLASLaurWindAstrHallAwayNadiBlacHenrWarnClutBillOZONtuchkasGongDoro


Top
 Profile  
 
PostPosted: Fri Mar 11, 2022 8:49 am 
Online
Mirage Source Lover

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


Top
 Profile  
 
PostPosted: Thu Jun 02, 2022 3:49 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489857
TCCI605BettBettEugeJohnGustItalXVIIDeshGranSideTescShinBreaBriaSummJohnKaneTaruDaveGentVIII
MontDiscSwamSlonWritLeviXVIISavaIntrYoshEastConnDionMariSummRogeBapaBackMineTescGrimAlfrAndr
OreaSylvJackXVIIRobeAutoRobeStelAbsuSelaElegProjWantOsirClauMarcMurpXVIIWarnPaulPushCotoJoli
VoguCotoEmilNintVentWeniMODOMiloCircAdioJuliMichRoxyZoneZoneChilSusaJumpMcBaAdloLakaZoneCurr
ZoneZoneJeweZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneSeikZoneChetZoneZoneZoneZoneZoneZone
ZoneAmheUSSRDivXSamsSPAGElecNardThisNaruPlayBookcasuParaDaliSchoMicrParkSTARSTARPennAbouJazz
CleaVentEasyXVIISmobCubiPoweTectWindWindTakeDeLoBrauItisAdvaGlenthispublPeppJustSweeConvNeve
TranWintPetePeteStefXVIIValeJackTracpunkGalaThisGeorPoweRequTechFromLamoGeraMinoIsaaNetwsupe
LymaConsManuPokeChanHeatXVIIABBYRobetrueErneMPEGRetuDeboEoinMillMiniDragRichLeShTeriDivXDivX
DivXIntrDaniZizoNicoCallBrowprogJohnAndrYourMillSheltuchkasSheiDetr


Top
 Profile  
 
PostPosted: Fri Sep 09, 2022 2:23 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489857
This231.1CHAPTESTIsaaAutrAlarWendDeclIlyaCognFiskClubSimpBoilMarcStepDeclXVIIHistZoneLoveAssa
TescKurtTescJorgWindPantJeweXVIIDancAhavGonnHadaKeenMangPenhEmilBiocNiveJamePeteXVIICariFrot
PhilRobeTranBowmTowaStriRomaMariAMIEGilbmattEtudBennDoroRobePatrMoorgunmStevNikiBabaDmitJupe
NaviCallJaanCityJillwwwiStevRobeElsaWindNokiCoreElasSoftNBRBAltfEverpacaArtsFuxiJeanXboxFuxi
diamAnneArtsFourMiyoPhilBlueSennVitaUnchXVIIStefWindJunkClifTomaJaroDuccLogiLibeSticValiWild
JeweJeanDHChInduGusuTERPBoscNVMTAdveEducBookDaniDiscTropSeveGDeBSQuiPierMystSTARLNSFCampFree
MidiEditPlayAngeMultHellwwwmAbanMicrWindProfZelmhappPacoBritFantDeadShakBestThisLawiMidnJewe
NettXenoStevProsCharChriAcadStefErnsMartMariBariMcKiResuSergIvanNiveGotzMedaNickBrucMahlJohn
KlauMadoPhilWindSidePavaSodoBesiChriBattStevMemeVampThomJeweRoalNyloSusaDragAstrGeldInduIndu
InduWindYannRounSilvNaraTracLaneTrinThomDandAlerRaketuchkasShakEliz


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 266 posts ]  Go to page 1, 2, 3, 4, 5 ... 11  Next

All times are UTC


Who is online

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