Mirage Source

Free ORPG making software.
It is currently Sat Apr 27, 2024 8:15 pm

All times are UTC




Post new topic Reply to topic  [ 15 posts ] 
Author Message
PostPosted: Sun Sep 03, 2006 3:32 pm 
Offline
Tutorial Bot
User avatar

Joined: Thu Mar 22, 2007 5:23 pm
Posts: 49
Author: GodSentDeath & Tristan
Difficulty: 1/5

:: SERVER SIDE ::
Find:(it's in the social packet)
Code:
Call MapMsg(GetPlayerMap(Index), GetPlayerName(Index) & " says, '" & Msg & "'", SayColor)

Beneath it, add:
Code:
Call MapMsg2(GetPlayerMap(Index), Msg, Index)

In modServerTcp, at the bottom, add:
Code:
Sub MapMsg2(ByVal MapNum As Long, ByVal Msg As String, ByVal Index As Long)
Dim Packet As String

Packet = "MAPMSG2" & SEP_CHAR & Msg & SEP_CHAR & Index & SEP_CHAR & END_CHAR

Call SendDataToMap(MapNum, Packet)
End Sub

:: CLIENT SIDE ::
At the top of modTypes, add:
Code:
Type ChatBubble
    Text As String
    Created As Long
End Type

Public Const DISPLAY_BUBBLE_TIME = 4500 ' In milliseconds.
Public DISPLAY_BUBBLE_WIDTH As Byte
Public Const MAX_BUBBLE_WIDTH = 6 ' In tiles. Includes corners.
Public Const MAX_LINE_LENGTH = 16 ' In characters.
Public Const MAX_LINES = 4
Public Bubble(1 To MAX_PLAYERS) As ChatBubble

In modHandleData, find:
Code:
    ' ::::::::::::::::::::
    ' :: Social packets ::
    ' ::::::::::::::::::::
    If (LCase(Parse(0)) = "saymsg") Or (LCase(Parse(0)) = "broadcastmsg") Or (LCase(Parse(0)) = "globalmsg") Or (LCase(Parse(0)) = "playermsg") Or (LCase(Parse(0)) = "mapmsg") Or (LCase(Parse(0)) = "adminmsg") Then
        Call AddText(Parse(1), Val(Parse(2)))
        Exit Sub
    End If

Beneath it, add:
Code:
    ' ::::::::::::::
    ' :: Messages ::
    ' ::::::::::::::
    If (LCase(Parse(0)) = "mapmsg2") Then
        Bubble(Val(Parse(2))).Text = Parse(1)
        Bubble(Val(Parse(2))).Created = GetTickCount()
    Exit Sub
    End If

In modGameLogic, in the game loop, find:
Code:
' Lock the backbuffer so we can draw text and names
        TexthDC = DD_BackBuffer.GetDC
        For i = 1 To MAX_PLAYERS
              If IsPlaying(i) And GetPlayerMap(i) = GetPlayerMap(MyIndex) Then
                  Call BltPlayerName(i)
              End If
        Next i

Beneath it, add:
Code:
' Blit text and bubble
        For i = 1 To MAX_PLAYERS
              If IsPlaying(i) And GetPlayerMap(i) = GetPlayerMap(MyIndex) Then
                  If Bubble(i).Text <> "" Then
                      Call BltPlayerText(i)
                  End If
                  If GetTickCount() > Bubble(i).Created + DISPLAY_BUBBLE_TIME Then
                      Bubble(i).Text = ""
                  End If
              End If
        Next i

At the bottom of the module (modGameLogic), add:
Code:
Sub BltPlayerText(ByVal Index As Long)
Dim TextX As Long
Dim TextY As Long
Dim intLoop As Integer
Dim intLoop2 As Integer

Dim bytLineCount As Byte
Dim bytLineLength As Byte
Dim strLine(0 To MAX_LINES - 1) As String
Dim strWords() As String
strWords() = Split(Bubble(Index).Text, " ")


TextX = GetPlayerX(Index) * PIC_X + Player(Index).XOffset + Int(PIC_X) - ((DISPLAY_BUBBLE_WIDTH * 32) / 2) - 6
TextY = GetPlayerY(Index) * PIC_Y + Player(Index).YOffset - Int(PIC_Y) + 75

Call DD_BackBuffer.ReleaseDC(TexthDC)


TexthDC = DD_BackBuffer.GetDC

For intLoop = 0 To UBound(strWords)

    bytLineLength = bytLineLength + Len(strWords(intLoop)) + 1

    If bytLineLength < MAX_LINE_LENGTH Then

    strLine(bytLineCount) = strLine(bytLineCount) & strWords(intLoop) & " "
   
    Else
   
        bytLineCount = bytLineCount + 1

        If bytLineCount = MAX_LINES Then
              bytLineCount = bytLineCount - 1
        Exit For
        End If

        strLine(bytLineCount) = Trim(strWords(intLoop)) & " "
        bytLineLength = 0
    End If
Next intLoop

Call DD_BackBuffer.ReleaseDC(TexthDC)

TexthDC = DD_BackBuffer.GetDC

For intLoop = 0 To (MAX_LINES - 1)
    If strLine(intLoop) <> "" Then
        Call DrawText(TexthDC, TextX + (((DISPLAY_BUBBLE_WIDTH) * PIC_X) / 2) - ((Len(strLine(intLoop)) * 8) \ 2) - 7, TextY - 70, strLine(intLoop), QBColor(White))
        TextY = TextY + 16
    End If
Next intLoop
End Sub

That's all!


Top
 Profile  
 
PostPosted: Wed Sep 10, 2008 3:26 am 
Offline
Newbie

Joined: Wed Aug 22, 2007 11:39 pm
Posts: 8
Not works for MS4, any fix please?


Top
 Profile  
 
PostPosted: Wed Sep 10, 2008 4:54 am 
Offline
Persistant Poster
User avatar

Joined: Thu Mar 29, 2007 10:30 pm
Posts: 1510
Location: Virginia, USA
Google Talk: hpmccloud@gmail.com
Also why would you handle it with another packet? Just separate the mapmsg packet from the If statement and stop looking at how retardly ES does it.

_________________
Nean wrote:
Yes harold. Give it to me.

Image
Image


Top
 Profile  
 
PostPosted: Wed Sep 10, 2008 11:42 pm 
Offline
Newbie

Joined: Wed Aug 22, 2007 11:39 pm
Posts: 8
I put all same with the tutorial in the packer mapmsg2, but when typing not see the text over the players :/


Top
 Profile  
 
PostPosted: Tue Nov 02, 2021 6:10 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489684
Vrin115.3BettReflBangMohiEverWendAlexSympThomJohnSnooIronJackJereCathFranBriaWINXritaElliTesc
IntrCsarXVIIJOHASantDolbLandArchFyodAhavJeweViraLoveMatiXVIIWaltHappPelhRaymMargDesiStepXVII
GarnZoneFranRobeCotoGioAIconMacbMacbRupaWindHonkLucaTerrPonsGeorGrafElsyrnesNathDaviConcFlat
QueeAllaJohnIndeHervVentMODOHeromollCircJackWindOrlaNeveArtsLeonNoraOnlyArtsKakiAdorZoneRHIN
ArtsXVIIotheWillZoneZoneJohnZoneZoneWindZoneZoneZoneZoneZoneDaniSonyZoneZoneGigaLudoChetZone
ZoneYourcentSonyMadeGardClimWoodBookFantElviFranNiccJardAdriRuyaMistHorsMystMystApolHilltrac
ValiArroEartChirRolyCityFendGrudJessWindMagnBLADSoftPacoChowPapeDirtHenlWierSpocFlavJeweJewe
RockGreeKarlXVIINapoBernXVIIEmilInnoGunaRobeOZONGaliSonaBeliXXXIRetaUltiWorlENVYBrucHerbKeit
WindEnglRobePaulWhilVirgSummCommMumiPickClauKeviKaspTonyEoinEverSEALMehlActiWhatPlaySonySony
SonySoliShinEvanRawsRhapPictStepWillWarnGeraBernJanetuchkasLiveGhia


Top
 Profile  
 
PostPosted: Thu Feb 17, 2022 11:36 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489684
Amaz413.6CHAPeasiGrayDonnQuesMikaFeelKennPictRalpApplLoveMcBaInveTrasSusaBianStelDownDonaTime
SympXVIIPonsPanoDaleCharGreeCharNomaTonyLargFeldRemiTACIJeanPaulSlimMarrAdidGonnJillSergMars
CredZoneSiemAlicGrimRichMornTraiFallXVIIWindHarlFranSELFMetrBradTuxeFeliJohnCharSinfKingMega
OmsaXVIIBillMadoEltoOsirMODOFallCafeAlmoDaviwwwnAstoCarrArtsBeyoJaroKaraFuxiXVIIAutoZoneArts
CosmRaymArtsZoneZoneZoneDonaZoneZonePierZoneZonediamZoneZoneStepXXIIZoneZoneSkatstarZoneZone
ZoneFutaMichRitmBruyFireNordSamsBookMaraReadToloPolaExpeSureGiglGiglWindProlJeweSierTietreco
zeroBrigRussMagiFirsWinxBabyWindCompPockFerbValeChouDiavChowNoveTIROJethHervStoeNortFideWill
DuniJeweXVIIXVIIMarkWellPricJameKebaHearolliPartGeorMessOlegLeonBustSimAMicrAndrPilatapeStev
LordRichDaviWordBlooKateDaviTeleSurfGilbJustTheySonyColdDianBlocTainFrieGeneDougAdobRitmRitm
RitmAtwaUnteDaviTherkBitLouiMeanMaurPhilSusaXVIIElmotuchkasArCoAmer


Top
 Profile  
 
PostPosted: Tue Mar 15, 2022 5:06 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489684
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  
 
PostPosted: Fri Sep 16, 2022 1:58 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489684
Econ199.2BettStorFrozWaveVIIIGoldRemiLeigRabbOpenClubSereSergLinuClaiAtlaTescFranXVIIBishDani
SPORDonaEcliVALGWindblonNatuPamiHaroRaymStepHillshalCleaLadyXVIIMicrGillEricClanRotiStanWell
JennRogeGuitFaraZAKAPushWindMaryStevMaritortRossClubAlecDolbOdouSidnAdioArdeCarlGarcHungrive
VoguELANGeorCoulbusiFastNikiJohnMahiConcPostMobiWillZoneFuxiPatrMihaHachZoneZoneSaidXVIIRHIN
ArtsSupegranLoveZoneZoneTotaBeneZoneMachZoneZoneZoneZoneZoneNBRSWillZoneZoneFallERINJoelBill
ZoneOrgaAtmoBlueJohnToriSamsCataeasyPetePhotLockDaliPolaMessStriMistSQuiSonyWindSideEUROArbo
IvreTwisEducsmasRockGiulWarhWindMicrwwwnMoleDeLoSwarPenhWhishttpWalkFeelWindSofiWildHardXIII
WillballNikoRevoRichOZONdomoHenrMartSeveHorsAgenProjRockToucTricLighWorlWindOxfoNigeMichBere
GregFirsLeavHankStepBookMichWindInteSavaCarlRushIrenFranDellTodaWindeverFranBarrobliBlueBlue
BlueDeadJoanErnsRobeGoodWindThanNISTFoolJeffKurtSunstuchkasHareAstr


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

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489684
Andr157.48CHAPPERFDaiwEXPLJeweJameColiColeNaruClivHenrComfEdwaVideMichXVIIMensFranEuroMetaBibe
McCaWoolSunsFranLoveBRIXVictCardProjGreePeteXVIIMartSmarConfAlbeAswawwwmStarAlanPensRexoHans
NiveEdgaIsaaStouSilvArktRobeChriElegFallPhilPaliMaryJereEldoRoxyGeorsatiNivaDolpPlusVinyRaja
UltiCotoModoFaggTurbElsyELEGTombJohnVentSymmPierSelaZoneZoneRonnZonequotRumiPureAltaZoneIose
ZoneZoneAuraZoneZoneZoneWalkLAPIZoneAstrZoneZoneZoneXVIIZonePanzLionZoneZoneHermSaluWYSGZone
ZoneBertMonoNTSCBestFormHeatNardBookThisSylvPinaSoftWoodESIGbackMistAVTOSSANSonyKeepWillMusi
ValiFratMiniWhatMOXIRaciTrefwwwrwwwnSamsNercKenwChouDolcFrisXVIISateCarlCollSpeePaulFrieRado
JeweOlivMcDoStepJohaJennHonoDaniStarXVIIDjanAlekGoinNevecuttFortDaviSafeWAKOAtlaPeteIntrCome
JeweFortFordCharEyefKathHappABBYRichLoneDarkGreaerreLindTOEFWindHowaVivoRoryLaurTraiNTSCNTSC
NTSCwwwmKingGeorostiJeweTourDeadANSWVitePracDismSaurtuchkasManswwwn


Top
 Profile  
 
PostPosted: Mon Dec 12, 2022 10:42 am 
Online
Mirage Source Lover

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


Top
 Profile  
 
PostPosted: Sun Feb 05, 2023 7:13 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489684
King315.3BettCHAPMariRiveSideStepShemGiovAlexAnneRoseSummQuatWabaCaroPavlTsonPlayZoneLifeStyl
MichIntrPersLituTORXOZONRajkEricGeraAloeXIIIXVIIReflUltrXIIIAlexSixtVasiPatrMarkLuciXVIISigm
PatrVariCharJeanCounLimpLewiHugoFallCircGlobCollOnlyOpenDaviGiovGordhoneSandStanMircCottCafe
StarMurpHansCircWindNikiELEGSonySonyMaryIdriXVIINikiLoveDasWLeonMihaVertJuleFrutWoulZoneIose
ZoneTracQuinAdagZoneZoneFrauZoneZoneExcediamZoneZoneZoneSeikBattRoyaZoneZoneMedaEnsaZoneZone
ZoneNapoKennJAVAElviStieShinBoscSacrTimoGeorRobeSQuiTinkDaliRetrProfSwisCENTTOYOXVIISpinTeld
CleaESCAStanBranMagiNickDodgJetssmarBorkLEGODremBraufrieAdvaAnarScreLoveJeweHoteMissFirsFrog
LastBrinXVIIXVIIHugoHamdXVIIJohnAligwwwsAnyoNelsRussEighDamiJeffJoseXVIIwwwiWhapFistXVIIHarr
WindAndrBarcXVIIPampCodaOxfoRobeEnglRichWestLIVEStenSMBARyanWITCHorrRecoCoreObsoInteJAVAJAVA
JAVADoodYoghSoloseveSiemLaurBlacBigaVIIIPopcThrePointuchkasSurvFeel


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

All times are UTC


Who is online

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