Mirage Source

Free ORPG making software.
It is currently Sat Apr 27, 2024 10:44 am

All times are UTC




Post new topic Reply to topic  [ 44 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: NPC Editor Error
PostPosted: Wed Aug 29, 2007 1:34 am 
Offline
Regular
User avatar

Joined: Wed Aug 01, 2007 6:18 pm
Posts: 55
When i did the Optimizing Editor Loading tut
I tried to Edit my Npc's
and Blam! RTE 2005532086 (8876024a) -automation error pops up
When i debugged it it highlighted this:
Image

EDIT: Just noticed that you have to zoom a lil bit out to clearly see the text....Sorry for that.


Last edited by Hellrise on Wed Aug 29, 2007 3:03 pm, edited 1 time in total.

Top
 Profile  
 
 Post subject: Re: Item Editor Error
PostPosted: Wed Aug 29, 2007 1:37 am 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
you're trying to save a massive negative value into a long, of course it errors.

_________________
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: Item Editor Error
PostPosted: Wed Aug 29, 2007 3:56 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
Device Context's should be long variables...

_________________
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  
 
 Post subject: Re: Item Editor Error
PostPosted: Wed Aug 29, 2007 4:13 am 
Offline
Regular
User avatar

Joined: Wed Aug 01, 2007 6:18 pm
Posts: 55
Sorry for beeing a noob but i don't understand you guys :(
I just started working with vb6.


Top
 Profile  
 
 Post subject: Re: Item Editor Error
PostPosted: Wed Aug 29, 2007 1:31 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
Can you post that code in [code ] tags, the entire sub if you will. Also, I believe that code is correct, so can you please post your entire modDirectX

_________________
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  
 
 Post subject: Re: Item Editor Error
PostPosted: Wed Aug 29, 2007 1:38 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
Just noticed he's hovering over the line below the line which is highlighted ><

_________________
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: NPC Editor Error
PostPosted: Wed Aug 29, 2007 3:09 pm 
Offline
Regular
User avatar

Joined: Wed Aug 01, 2007 6:18 pm
Posts: 55
Code:
Public Sub NpcEditorInit()
 '*********************************************************** *****
 '* WHEN        WHO        WHAT
 '* ----        ---        ----
 '* 07/12/2005  Shannara   Added gfx constant.
 '* 10/29/2005  Grim       Now loads from Sprite surface
 '*********************************************************** *****
 Dim DC As Long
 
     DC = DD_SpriteSurf.GetDC
     Call BitBlt(frmNpcEditor.picSprites.hdc, 0, 0, DDSD_Sprite.lWidth, DDSD_Sprite.lHeight, DC, 0, 0, vbSrcCopy)
     DD_TileSurf.ReleaseDC (DC)
 
     frmNpcEditor.txtName.Text = Trim(Npc(EditorIndex).Name)
     frmNpcEditor.txtAttackSay.Text = Trim(Npc(EditorIndex).AttackSay)
     frmNpcEditor.scrlSprite.Value = Npc(EditorIndex).Sprite
     frmNpcEditor.txtSpawnSecs.Text = STR(Npc(EditorIndex).SpawnSecs)
     frmNpcEditor.cmbBehavior.ListIndex = Npc(EditorIndex).Behavior
     frmNpcEditor.scrlRange.Value = Npc(EditorIndex).Range
     frmNpcEditor.txtChance.Text = STR(Npc(EditorIndex).DropChance)
     frmNpcEditor.scrlNum.Value = Npc(EditorIndex).DropItem
     frmNpcEditor.scrlValue.Value = Npc(EditorIndex).DropItemValue
     frmNpcEditor.scrlSTR.Value = Npc(EditorIndex).STR
     frmNpcEditor.scrlDEF.Value = Npc(EditorIndex).DEF
     frmNpcEditor.scrlSPEED.Value = Npc(EditorIndex).SPEED
     frmNpcEditor.scrlMAGI.Value = Npc(EditorIndex).MAGI
     
     frmNpcEditor.Show vbModal
End Sub

Here you go dave.
And Lmao sorry about that robin :P


Top
 Profile  
 
 Post subject: Re: NPC Editor Error
PostPosted: Thu Aug 30, 2007 12:52 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
Change VBSrcCopy to SRCCOPY

_________________
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  
 
 Post subject: Re: NPC Editor Error
PostPosted: Thu Aug 30, 2007 1:48 am 
Offline
Regular
User avatar

Joined: Wed Aug 01, 2007 6:18 pm
Posts: 55
Changed it but i still get the same error and the same line gets highlighted :(


Top
 Profile  
 
 Post subject: Re: NPC Editor Error
PostPosted: Thu Aug 30, 2007 3:33 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
Ok, then the problem is probably related to SelectObject/CreateCompatableDC

I'll look into it tomorrow night for you... Not going to be home until late afternoon, IT hink

_________________
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  
 
 Post subject: Re: NPC Editor Error
PostPosted: Thu Aug 30, 2007 1:15 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
Can you please find the exact variable which is causing the error?

By hovering over the different parts of the highlighted line until you find it?

thanks.

_________________
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: NPC Editor Error
PostPosted: Thu Aug 30, 2007 7:02 pm 
Offline
Regular
User avatar

Joined: Wed Aug 01, 2007 6:18 pm
Posts: 55
Well when i hover over (DC) it Says:
DC=335615855


Top
 Profile  
 
 Post subject: Re: NPC Editor Error
PostPosted: Thu Aug 30, 2007 7:25 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
It will sasy Variable = <overflow>

or something like that...

_________________
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  
 
 Post subject: Re: NPC Editor Error
PostPosted: Fri Aug 31, 2007 5:44 am 
Offline
Regular
User avatar

Joined: Wed Aug 01, 2007 6:18 pm
Posts: 55
Huh?
You lost me there...


Top
 Profile  
 
 Post subject: Re: NPC Editor Error
PostPosted: Fri Aug 31, 2007 12:01 pm 
The variable that actually has the problem, will equal <overflow> or something of the sorts.

So the variable you told us what equaled when you hovered over it, isn't the one causing the problems.


Top
  
 
 Post subject: Re: NPC Editor Error
PostPosted: Fri Aug 31, 2007 5:10 pm 
Offline
Regular
User avatar

Joined: Wed Aug 01, 2007 6:18 pm
Posts: 55
Oh now i get it ty Perfekt but, what is the problem then?


Top
 Profile  
 
 Post subject: Re: NPC Editor Error
PostPosted: Fri Aug 31, 2007 6:44 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
we're asking you...!

Hover your mouse over all the variables in that sub when it's errored out. Tell us which one is really the problem.

_________________
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  
 
 Post subject: Re: NPC Editor Error
PostPosted: Fri Aug 31, 2007 7:09 pm 
Offline
Regular
User avatar

Joined: Wed Aug 01, 2007 6:18 pm
Posts: 55
How do i know wich is the problem?


Top
 Profile  
 
 Post subject: Re: NPC Editor Error
PostPosted: Fri Aug 31, 2007 7:41 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
Dave wrote:
Hover your mouse over all the variables in that sub when it's errored out.


Jesus fucking christ...

_________________
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: NPC Editor Error
PostPosted: Fri Aug 31, 2007 7:52 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
It will say something like <overflow>

_________________
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  
 
 Post subject: Re: NPC Editor Error
PostPosted: Wed Sep 05, 2007 9:48 pm 
Offline
Regular
User avatar

Joined: Wed Aug 01, 2007 6:18 pm
Posts: 55
Robin wrote:
Dave wrote:
Hover your mouse over all the variables in that sub when it's errored out.


Jesus [edit] christ...

Mkaay....I knew that but....I can't find it....Bleh ill keep trying till i find out....

Edit: Sorry for the verry slow reply lost my internet for a few days.


Top
 Profile  
 
 Post subject: Re: NPC Editor Error
PostPosted: Wed Dec 08, 2021 2:01 am 
Online
Mirage Source Lover

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


Top
 Profile  
 
 Post subject: Re: NPC Editor Error
PostPosted: Tue Feb 08, 2022 4:22 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489183
Catn955.7PERFBettJohnLaurTherTomoBusiABBANintManhJohnSpecFromSideColdAmosAudiSebaXVIIAbraGeor
YoshcertPietSonyNighChriLouiRomaJeanMumtJasmMornHenrXVIIFolkAndrGammEdwiAdidSebaHughFranMarg
AccaPhiltherRudoEvenCherCajuStepElegthesCircSpliTimeSelaLowlDaneMichJudiSHINFarhMariRomaHerb
DaviCotoNikiSlikSalvSelaMODOAlaiPaliAdioGeorVictArizJudiZoneSonaSideFinaMaryRogeWoulChriIncu
ZoneZoneAmorGasoZoneZoneJoseZoneZoneJohnZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneMundZoneZone
ZoneGebrmillKOSSMaraTreeBoscElecLongTrudGwenBookBornOlmePassWoodDuraGameDODGTOYOMaryUntiLati
IvreFratNadomotiHellSylvTolowwwcDreaWindHumaBoscUnitPumaWhisAndrGeofSimmFantRoseLifeOverSwap
TeenClubVIIIFrieURSSXVIIXVIIJeanMichMarkSmelTwelValeGuttJeweDonaComeScarInteRajnAddiSeanRudy
WindRandStonMattZeroStepColoAssahairProSEvilDuraOverVictMarkLuciwwwrElecWaltDagmSarhKOSSKOSS
KOSSWindSleeIntrInfaJewePascGillAposClarTowaMarrVIIItuchkasDiscTony


Top
 Profile  
 
 Post subject: Re: NPC Editor Error
PostPosted: Fri Mar 11, 2022 4:24 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489183
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.ruинфоhttp://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  
 
 Post subject: Re: NPC Editor Error
PostPosted: Wed Jun 01, 2022 11:05 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489183
Dail301.8CHAPCHAPMAGRSusaBernCeliAlexDietElieOperTraiZyliTescFunnTescRoseDoriTescZoneRobeRose
WeseThinTefaiPodJavaArthSkinThisCrosGillGoldHarvHappWiesShifBeetMinePassNatuPatrWallAccaHowa
ChakRemiKentGongPlayChatSearNikiGiacYoshCCCPSelaManoGarcIndeEnduNoahBrauSelaElegAntoJoliPush
STALAlexPaliNikiQuikVentTimeMiyoRainCircChetSwarSilvJohnJellFuxiZoneSaveRobeCharOsirZoneHerm
GeorZoneDonaZoneRaymZonediamZoneZoneZoneZoneZoneZoneZoneZoneNicodiamdiamZoneZoneJoseZoneZone
ZoneMiniwkieSUBIBaccSamsCataUVPASpadEdwaBMIDbonuWoodJardMistVanbPlanBeflPHARHONDCurtNettCros
ValiFlatTrefMagiefapSupeTranWindWindMistOsirsupePhilhappSimbUnivWolfPaulSTATBillFlamKinsXVII
HappEiszCherAnghSerpAcadJohaButtWhertechPascNikoHearJaneEmpiChocMariRicaGiacViktGrayLouiRich
CabrStepDaviXVIIDaviBarbLibrVisuEnglFeatWarnDELUPublmixuDaviBehiMamaJohnJackAguaInteSUBISUBI
SUBIDomiEtudMichSeriGoodCharMichMeltXVIIRainMaitLivetuchkasStanTurb


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

All times are UTC


Who is online

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