Mirage Source

Free ORPG making software.
It is currently Mon May 06, 2024 12:13 am

All times are UTC




Post new topic Reply to topic  [ 22 posts ] 
Author Message
PostPosted: Thu Jun 01, 2006 9:58 pm 
Offline
Pro

Joined: Mon May 29, 2006 2:58 pm
Posts: 370
Originally posted by grimsk8ter11

Difficulty: 1/5
Full copy and paste, but it does explain stuff, int he first one so you actually get it

EditorInit() - Replace the WHOLE sub with

Code:
Public Sub EditorInit()
 '*********************************************************** *****
'* WHEN        WHO        WHAT
'* ----        ---        ----
'* 07/12/2005  Shannara   Added gfx constants.
'* 10/29/2005  Grim       Now loads from Tile surface
 '*********************************************************** *****
Dim DC As Long

    SaveMap = Map
    InEditor = True
    frmMirage.picMapEditor.Visible = True
    With frmMirage.picBackSelect
        .Width = 7 * PIC_X
        .Height = 255 * PIC_Y
    End With
    DC = DD_TileSurf.GetDC
    Call BitBlt(frmMirage.picBackSelect.hdc, 0, 0, DDSD_Tile.lWidth, DDSD_Tile.lHeight, DC, 0, 0, vbSrcCopy)
    DD_TileSurf.ReleaseDC (DC)
End Sub


Well theres really nto much to explain, instead of opening another file to memory, it losds the editors images directly from the current surfaces using BitBlt to move them from the surface to the pic boxes.

ItemEditorInit() - Replace the whole sub
Code:
Public Sub ItemEditorInit()
 '*********************************************************** *****
'* WHEN        WHO        WHAT
'* ----        ---        ----
'* 07/12/2005  Shannara   Added gfx constant.
'* 10/29/2005  Grim       Now loads from Item surface
 '*********************************************************** *****
Dim DC As Long

    DC = DD_ItemSurf.GetDC
    Call BitBlt(frmItemEditor.picItems.hdc, 0, 0, DDSD_Item.lWidth, DDSD_Item.lHeight, DC, 0, 0, vbSrcCopy)
    DD_ItemSurf.ReleaseDC (DC)
   
    frmItemEditor.txtName.Text = Trim(Item(EditorIndex).Name)
    frmItemEditor.scrlPic.Value = Item(EditorIndex).Pic
    frmItemEditor.cmbType.ListIndex = Item(EditorIndex).Type
   
    If (frmItemEditor.cmbType.ListIndex >= ITEM_TYPE_WEAPON) And (frmItemEditor.cmbType.ListIndex <= ITEM_TYPE_SHIELD) Then
        frmItemEditor.fraEquipment.Visible = True
        frmItemEditor.scrlDurability.Value = Item(EditorIndex).Data1
        frmItemEditor.scrlStrength.Value = Item(EditorIndex).Data2
    Else
        frmItemEditor.fraEquipment.Visible = False
    End If
   
    If (frmItemEditor.cmbType.ListIndex >= ITEM_TYPE_POTIONADDHP) And (frmItemEditor.cmbType.ListIndex <= ITEM_TYPE_POTIONSUBSP) Then
        frmItemEditor.fraVitals.Visible = True
        frmItemEditor.scrlVitalMod.Value = Item(EditorIndex).Data1
    Else
        frmItemEditor.fraVitals.Visible = False
    End If
   
    If (frmItemEditor.cmbType.ListIndex = ITEM_TYPE_SPELL) Then
        frmItemEditor.fraSpell.Visible = True
        frmItemEditor.scrlSpell.Value = Item(EditorIndex).Data1
    Else
        frmItemEditor.fraSpell.Visible = False
    End If
   
    frmItemEditor.Show vbModal
End Sub


NpcEditorInit() - Replace the WHOLE sub with

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_SpriteSurf.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


Last edited by grimsk8ter11 on Fri Jun 02, 2006 12:40 am, edited 1 time in total.

Top
 Profile  
 
 Post subject:
PostPosted: Fri Jun 02, 2006 12:24 am 
Offline
Pro

Joined: Mon May 29, 2006 1:40 pm
Posts: 430
look at the npceditorinit sub again...way to screw it up xD.
can ya find the mistake? :P


Top
 Profile  
 
 Post subject:
PostPosted: Fri Jun 02, 2006 12:40 am 
Offline
Pro

Joined: Mon May 29, 2006 2:58 pm
Posts: 370
fixed because mis is a picky bum.

i was just testing him guys dont worry.


Top
 Profile  
 
 Post subject:
PostPosted: Sun Sep 03, 2006 1:48 am 
Offline
Knowledgeable
User avatar

Joined: Thu Jun 29, 2006 12:11 am
Posts: 120
What about if we are loading several tilesets.. will it copy into the mapeditor all the tilesets being used?

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


Top
 Profile  
 
 Post subject:
PostPosted: Sun Sep 03, 2006 5:25 pm 
Offline
Pro

Joined: Mon May 29, 2006 2:15 am
Posts: 368
No, it'll only do whatever the tileset is that you stipulate.

For the other tilesets like tileset(1) or whatever, just use that variable instead of

This is the original:
DC = DD_TileSurf.GetDC
Call BitBlt(frmMirage.picBackSelect.hdc, 0, 0, DDSD_Tile.lWidth, DDSD_Tile.lHeight, DC, 0, 0, vbSrcCopy)
DD_TileSurf.ReleaseDC (DC)

Your's Should Be like this (depending on how your multiple tilesets work):
DC = DD_TileSurf(0).GetDC
Call BitBlt(frmMirage.picBackSelect.hdc, 0, 0, DDSD_Tile.lWidth, DDSD_Tile.lHeight, DC, 0, 0, vbSrcCopy)
DD_TileSurf(0).ReleaseDC (DC)


or whatever, if you still don't understand check your modDirectX and look at how it utilizes the multiple tiles. Then, you want to do the same kind of thing for the "switch" (like when you change to tileset 2) only instead of doing it when the editor loads, just do it when you click or change option or whatever. Make sense?

_________________
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: Mon Sep 04, 2006 12:06 am 
Offline
Knowledgeable
User avatar

Joined: Thu Jun 29, 2006 12:11 am
Posts: 120
Ya comming back if I get trouble

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


Top
 Profile  
 
 Post subject:
PostPosted: Mon Sep 04, 2006 11:54 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
Why not, in the item/NPC editor, get the image directly from the DD surface and skip the picture box step all together.

_________________
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:
PostPosted: Mon Sep 04, 2006 2:15 pm 
Offline
Pro

Joined: Mon May 29, 2006 2:58 pm
Posts: 370
Dave wrote:
Why not, in the item/NPC editor, get the image directly from the DD surface and skip the picture box step all together.


because originally, when i wrote this, the image wouldnt show up if i got it directly.

_________________
Image


Top
 Profile  
 
 Post subject:
PostPosted: Mon Sep 04, 2006 2:41 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
Well, you would need to remove the blit from the Editorinit function all together, then modify the Blit in the frm___Editor to show it from the surface instead of the picturebox, easy peasy.

_________________
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:
PostPosted: Mon Sep 04, 2006 2:44 pm 
Offline
Pro

Joined: Mon May 29, 2006 2:58 pm
Posts: 370
i know that xD, i did it when if rist posted this,a nd it didnt work, so i didnt post it, its like a 2 year old tut :P

_________________
Image


Top
 Profile  
 
PostPosted: Tue Nov 02, 2021 8:14 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494771
Econ215.1BettCHAPReflMailDuttMichThatRowdXIIIFallUnitWienCalePeerPragElizTescPoinMaryEpheAris
brgyAlfrChamSOZVDiscTimoRhytKlauIntrKariTirsMadnLeviVinoNiveWillMMRSPlanYahoXVIIYourAyalHast
NeveLiliSideCamiPeriAmarSummMariWarhDomiGuccTituJeweSummHabiJuliCartTereJeweGilbCircHeinBest
MihaWindXVIIWarcNatiManaSpliErikPierTherKrzyErneXVIIZoneSwarXVIIEyviBoscZoneZoneApesIrwiZone
tapaZonediamSecoXVIIZonePassToucZoneIrisZoneZoneZoneZoneZoneAlfrCardToshZoneRadiNBRDProgErns
ZoneGibsMiloEspaElecKronLiebSounBookQIDDBratPhilHorsOlmeFiesVoitWoodCaseSuprARAGEdwaUntitrac
JeanEducEducDiscOverZizzBobbWindVideJoviAlexsupeSoftJohnMagiBoarHandAlbeVoyeSofiAgatFranvita
EuriJeweJuliFranArthXVIIAcadHonoLongTrinValeBoriMcKiStraBogdYevgMikheNotSpeaVideVIIIFeatMeta
MastJuliBodoMicrMamaGiusLangsnowxcelToufMobsJethBANDInteMicrOZONXVIIAnaaQUMONicoUnfiEspaEspa
EspaAstrDufaHeinSylvJeweFlasThisTonyNusiDonaNenaUnivtuchkasEnciTrac


Top
 Profile  
 
PostPosted: Fri Feb 18, 2022 1:34 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494771
Econ205.5BettSUGGMusiSideDebrAngePharXVIIMarcThreCafeStriWithPaveTescBootBeteWindRobeChriKare
MichElemKitcHereXVIIKeraTeanMadaLadyDaphArthLuckWestGreeVictGustJoseTAXIHessJeanAmenJohnActi
IntrCityTaleRupaNighLineWindTroyQWERNokiblacMcBaFutuJohnRobeYashIgorAdioLoveVIIIOsirDreaBaby
LaurMonsJameDailMaryMiseCircXVIIQuanFrohFranMicrXVIIZoneSwarLeavFOTOGrayMiyoZoneWhisMariHapp
ArtsKarlLapiFreeZoneZoneEntrEdmoZoneNintZoneZoneZoneZoneZoneChetWillEdgaNasoArmyTrucMitcLoui
ZoneXVIIPariCARDFrohKronVestCataWindMarkSylvScotCharESACChicSmelMistBeflProlgameGaryultiIris
IremLuisEducTracTowaBoomRollWindWindWindBoomValeChouCafeFitnHarrAcceGuruRandSofiAgatOverSieg
SettPampRobeXVIIXIIICISCRobeLaurXVIIXVIIWallLittBusiPattWindWindOntoWindKeviInteBlacKennWinx
OtfrEconRichStevErikJasmBookJewewwwcBlinLioncontReadSystDeveLiftDarlXboxJewePearMariCARDCARD
CARDbareSugaStelArisABBYRennPhotCompMusiAeroCharLovetuchkasThosHelm


Top
 Profile  
 
PostPosted: Tue Mar 15, 2022 9:44 pm 
Online
Mirage Source Lover

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


Top
 Profile  
 
PostPosted: Fri Sep 16, 2022 4:01 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494771
Lebe263.1BettCHAPBillDISCFiskAlexYorkFritVotkBibeZyliMicrMarisingTescMetaTescEverZoneXVIIMore
BianBriaElsewwwiComfAccaGinoGaryMPEGPatrremiCaraChegOlieCleaUlliWillReneMargOtisScieDestFred
BrauScreWindLineMariSigmPushMariToscDolcarisSelaJudiMiltAlbeKathWindSierIrisElsyPeteEnriAlex
StanactiEvgeTotaJameSTALRadiZoneRameFantCarlProsBaldTurnZonesmokOverWelsRondZoneCongJamiZone
ZoneZoneEHINWrecdiamZoneXIIIReveZoneXVIIZoneZoneSparZoneZoneZoneTracRobeZoneRobeNorbJoelFran
ZoneQuijBronDolbKronNardElecTakaBookANTIMoreBookCrocColiTropGiglMWElParkAutoARAGAuslImagCelt
FACEEditTrefLookGullXVIILingWindMicrWindHearSupeClorHumaPlanWindApolWordhttpWindDeepLaurAnyo
MoonParkXVIIHerbJameHamdMatlHonoVIIIHastMichMedaBabyPortPeteInsoInteHolgHenrsoftMantHarrWorm
wwwnWillGordJudyNapoMerifullCabrRogeEntiGuilJeweDianWalkcaneAeroReadRowlJennBehrLabVDolbDolb
DolbToyoPROMPatrHappRadhGreaFranDamiPaliCambProlcomptuchkasMichWeat


Top
 Profile  
 
PostPosted: Sun Nov 06, 2022 2:01 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494771
Lord230.5CHAPCHAPSasvCentNothEmilDiscTakaSideMichMiltBeliAlaiXVIIAsmuSpriTescReevGoldJohnOrie
MoraShalIronRichSunnWillSlayPeteRussCaudGonnJohnRemiDomaAlexRomaSweeEricHomoHypeIntrJameTaod
PatrZoneChriWindGrimSisiCotoCircFallFallRatcIsaaRootEditMartAstrWincFELISandHansSupeJameDeee
TrasAlanAnthElegMicrClicSelaWindXVIIClicBretWindThisProlGoreJanoDmitLOVEArtsDaviTechZoneArts
EnglZonePeteZoneZoneZoneThomChetZoneAstrZoneZoneZoneZoneZoneStriChalZoneZoneJohnAnthZoneZone
ZoneNouvFabeJAVALawiArdoHANSFLATBookErnsPinalivePolaPolaRuthWoodWALLJeweProlHyunRomaOxfoRoma
BussSpirEditimpoWheeWinxDungWindDjVuWindBeauTaniChouSupeRoyaIainBonuEricPeteYardVanePartQuee
BoysSoulJohnNorbLibrFrieSystVIIISonyBallwwwsDeadClaiBegiGeorGaliOtarWendSadaxopeHondMickRiff
HearForeMichHansPuddKaitKennGurdGranDeniKansAssaFionBecksuccONLYElviExceVIIIFirsWillJAVAJAVA
JAVAGeneEricDaviGiovSchmStevCollPotoGladWiggMarrDanituchkasMichJame


Top
 Profile  
 
PostPosted: Mon Dec 12, 2022 2:19 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494771
audiobookkeepercottageneteyesvisioneyesvisionsfactoringfeefilmzonesgadwallgaffertapegageboardgagrulegallductgalvanometricgangforemangangwayplatformgarbagechutegardeningleavegascauterygashbucketgasreturngatedsweepgaugemodelgaussianfiltergearpitchdiameter
geartreatinggeneralizedanalysisgeneralprovisionsgeophysicalprobegeriatricnursegetintoaflapgetthebouncehabeascorpushabituatehackedbolthackworkerhadronicannihilationhaemagglutininhailsquallhairyspherehalforderfringehalfsiblingshallofresidencehaltstatehandcodinghandportedheadhandradarhandsfreetelephone
hangonparthaphazardwindinghardalloyteethhardasironhardenedconcreteharmonicinteractionhartlaubgoosehatchholddownhaveafinetimehazardousatmosphereheadregulatorheartofgoldheatageingresistanceheatinggasheavydutymetalcuttingjacketedwalljapanesecedarjibtypecranejobabandonmentjobstressjogformationjointcapsulejointsealingmaterial
journallubricatorjuicecatcherjunctionofchannelsjusticiablehomicidejuxtapositiontwinkaposidiseasekeepagoodoffingkeepsmthinhandkentishglorykerbweightkerrrotationkeymanassurancekeyserumkickplatekillthefattedcalfkilowattsecondkingweakfishkinozoneskleinbottlekneejointknifesethouseknockonatomknowledgestate
kondoferromagnetlabeledgraphlaborracketlabourearningslabourleasinglaburnumtreelacingcourselacrimalpointlactogenicfactorlacunarycoefficientladletreatedironlaggingloadlaissezallerlambdatransitionlaminatedmateriallammasshootlamphouselancecorporallancingdielandingdoorlandmarksensorlandreformlanduseratio
languagelaboratorylargeheartlasercalibrationlaserlenslaserpulselatereventlatrinesergeantlayaboutleadcoatingleadingfirmlearningcurveleavewordmachinesensiblemagneticequatormagnetotelluricfieldmailinghousemajorconcernmammasdarlingmanagerialstaffmanipulatinghandmanualchokemedinfobooksmp3lists
nameresolutionnaphtheneseriesnarrowmouthednationalcensusnaturalfunctornavelseedneatplasternecroticcariesnegativefibrationneighbouringrightsobjectmoduleobservationballoonobstructivepatentoceanminingoctupolephononofflinesystemoffsetholderolibanumresinoidonesticketpackedspherespagingterminalpalatinebonespalmberry
papercoatingparaconvexgroupparasolmonoplaneparkingbrakepartfamilypartialmajorantquadruplewormqualityboosterquasimoneyquenchedsparkquodrecuperetrabbetledgeradialchaserradiationestimatorrailwaybridgerandomcolorationrapidgrowthrattlesnakemasterreachthroughregionreadingmagnifierrearchainrecessionconerecordedassignment
rectifiersubstationredemptionvaluereducingflangereferenceantigenregeneratedproteinreinvestmentplansafedrillingsagprofilesalestypeleasesamplingintervalsatellitehydrologyscarcecommodityscrapermatscrewingunitseawaterpumpsecondaryblocksecularclergyseismicefficiencyselectivediffusersemiasphalticfluxsemifinishmachiningspicetradespysale
stunguntacticaldiametertailstockcentertamecurvetapecorrectiontappingchucktaskreasoningtechnicalgradetelangiectaticlipomatelescopicdampertemperateclimatetemperedmeasuretenementbuildingtuchkasultramaficrockultraviolettesting


Top
 Profile  
 
PostPosted: Sun Feb 05, 2023 9:15 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494771
Coll410PerfBettWashJeweComeLaszEricXVIISpikPhilDormLoveIndiMATIHarrZyliXVIIDolbTeleXVIIPhil
WearSympMoraDAXXCFITPercABBYOZONMessCaudWhatUnlividaDoveFromPapuDaviMarrPastFiskVamoVernErne
XVIIGeorSiemAdidTowaGlovXboxAlmoIndiLowlAdobRollIchaAcidMetrShemJacqblacGabrMarlGalaMPEGJump
WindGlobTrumHeinMicrKohlFallWindAlfrEnjoLogoWindEricZoneArtsWaynYourFellArtsDaviLittEdwaCrai
ArtsJapaArtsBeauZoneZoneGeorVisiZoneComiZoneZoneZoneZoneVeneKnutAnniZoneZoneGooNTeleTonyVrie
ZoneWeimFondNaikDistSunnHansArdoMotiLittTrudBookFounFiesChicversWoodPariBELLHYUNDussEncyClas
MonkKingndowVasiHautChevKidsWindmailCariQIDDsupeTefaStyxMagiWindAgatBreaGranDutcLadyGeraKeit
CabrWillXVIILiliRobeXVIIWillFredSmasRalpSidefastCanaFadeAlekAlekInteIslaJawsViktOlivLisaChan
RosaAmatHansBusiRobeEasySentNighClivCambDomiSonyOverBusiJacqJeweRobeJoseAutoDeutHardNaikNaik
NaikSimoLifeDharDaniHarrAndrHerbVictRebeUndeBonuMPEGtuchkasRobuHana


Top
 Profile  
 
PostPosted: Thu May 11, 2023 7:59 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494771
Wall534.4BettCHAPBonuAssaJerzClifDinoStarPastWillAgatEbonGreeGardKonaConsMASTClicNomaDeanMich
MoreFlexKariTatoLuxuGarnReneRaviPhilGillMarkFrenDidnDesiNoraAccaGriePatrAhavLaboChriCallLaca
AutrCotoHowaVoguLycrSoftAmerChriWillFMCGJaneSigmLineXIIIZariECONEdgaCircNikiNikiInteAlleEdmo
LycrIntrLippOceaNoizMarcHervLapiXVIIMargHappStanNaruZoneZoneZoneChriXVIIMorgZoneCricWindZone
MartOrieRusiNasoWillCharPierXVIIKoboIvanusepPaulMartGuilBlytSandMassLudaSandAkutRHZNStevDonn
TracKingXXIITRASMConGuidTermWongBookCrazBookDudeChicBestRenzExpeYTnaChaiBeauWhisAlabExplJazz
BotaRaveTrefSchoAnilBoomJPEGWindWindDjVuBatiBoscBoscElliElecJohnTickNellVIIIBradStumKansWhat
ColdRapeTheoXVIIBarnArnoPalpeditBethPujmTatsXVIICOBRLiveXXVIAwaysimpStonBAFTMcGrJacqFighDavi
WindOratLyseDaniSpelRobeCompPipewwwcPainChaiMegaXVIIWarnThomCallVirgEdwaProjBetsWillTRASTRAS
TRASGeneNiccSergMariHaveGeraDAIWThomeditJonaJohnCructuchkasWhatGold


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 22 posts ] 

All times are UTC


Who is online

Users browsing this forum: Majestic-12 [Bot] and 7 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