Mirage Source

Free ORPG making software.
It is currently Sat Apr 27, 2024 7:04 pm

All times are UTC




Post new topic Reply to topic  [ 26 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: SavePlayer Faster
PostPosted: Thu Jun 01, 2006 9:44 pm 
Offline
Pro

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

Very simple tutorial. I was testing my server on a P2(455Mhz) and it was veery lagued, but thats not the point. When I tried to create an account from my website account creation, it taked sooo long creating it, so I maded a veeery simple modification, and now it creates the account praticly instantly.
It just saves the player you are using(PlayerNum), so do this:
ONLY SERVER SIDE

modDatabase:
Sub SavePlayer:
Replace:

Code:
    For I = 1 To MAX_CHARS


with:

Code:
    For I = 1 To MAX_CHARS
        If Player(Index).CharNum = I Then

and replace:

Code:
Next I

with:

Code:
        End If
    Next I


This will make the server saves only the char you had played, and on the account creation, it will save only the account information(3 or 4 lines) xD
Simple and usefull.


Top
 Profile  
 
 Post subject: Re: SavePlayer Faster
PostPosted: Mon Jul 02, 2007 1:10 pm 
Offline
Persistant Poster
User avatar

Joined: Thu Aug 17, 2006 5:27 pm
Posts: 866
Location: United Kingdom
Any side affects to this?


Top
 Profile  
 
 Post subject: Re: SavePlayer Faster
PostPosted: Mon Jul 02, 2007 1:32 pm 
Offline
Community Leader
User avatar

Joined: Mon May 29, 2006 1:00 pm
Posts: 2538
Location: Sweden
Google Talk: johansson_tk@hotmail.com
Without it, it will save all your characters although you are only online with one.

_________________
I'm on Facebook!My Youtube Channel Send me an email
Image


Top
 Profile  
 
 Post subject: Re: SavePlayer Faster
PostPosted: Mon Jul 02, 2007 3:03 pm 
Offline
Persistant Poster
User avatar

Joined: Thu Aug 17, 2006 5:27 pm
Posts: 866
Location: United Kingdom
ooh, simple but meaningful fix - thankies 8)


Top
 Profile  
 
 Post subject: Re: SavePlayer Faster
PostPosted: Mon Jul 02, 2007 4:10 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
Link it in with HighIndex and you'll only have to save 5 players a time ;)

_________________
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: SavePlayer Faster
PostPosted: Tue Jul 03, 2007 8:48 am 
Offline
Pro
User avatar

Joined: Thu Dec 14, 2006 3:20 am
Posts: 495
Location: California
Google Talk: Rezeyu@Gmail.com
Note, this makes you unable to delete chars.


Top
 Profile  
 
 Post subject: Re: SavePlayer Faster
PostPosted: Tue Jul 03, 2007 10:32 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
I don't see why it would... Maybe it does, but that's fixable with a check or two im sure.

_________________
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: SavePlayer Faster
PostPosted: Tue Jul 03, 2007 10:36 am 
Offline
Community Leader
User avatar

Joined: Mon May 29, 2006 1:00 pm
Posts: 2538
Location: Sweden
Google Talk: johansson_tk@hotmail.com
I can still delete my chars, maybe I did something to fix it dunno.

_________________
I'm on Facebook!My Youtube Channel Send me an email
Image


Top
 Profile  
 
 Post subject: Re: SavePlayer Faster
PostPosted: Tue Jul 03, 2007 11:35 am 
I can still delete my characters too. I THINK there may have been an issue with it, but I added this so long ago, I'm not really sure.


Top
  
 
 Post subject: Re: SavePlayer Faster
PostPosted: Tue Jul 03, 2007 4:37 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
I thought there was a problem with deleting characters anyway...

_________________
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: SavePlayer Faster
PostPosted: Tue Jul 03, 2007 8:33 pm 
Offline
Pro
User avatar

Joined: Thu Dec 14, 2006 3:20 am
Posts: 495
Location: California
Google Talk: Rezeyu@Gmail.com
When you delete a char, it clears the char, setting everythingk.. blank.

Then it calls save player.
So that it saves the blank data over the old data.


But with this, I was unable to do that, because it checks if the char is being used.
And in a menu, it's not being used.

So it says that you have no currently playing chars, and skips the whole save.
Me and SMChronos had the error.


Top
 Profile  
 
 Post subject: Re: SavePlayer Faster
PostPosted: Tue Jul 03, 2007 8:59 pm 
Offline
Persistant Poster
User avatar

Joined: Thu Aug 17, 2006 5:27 pm
Posts: 866
Location: United Kingdom
Fix?


Top
 Profile  
 
 Post subject: Re: SavePlayer Faster
PostPosted: Tue Jul 03, 2007 9:04 pm 
Offline
Knowledgeable
User avatar

Joined: Mon May 29, 2006 6:23 pm
Posts: 128
Fox wrote:
Fix?

I use this:
Code:
Sub SavePlayer(ByVal Index As Long, ByVal cNum as Byte)
Dim FileName As String
Dim n As Long

    cNum = int(cNum)
    FileName = App.Path & "\accounts\" & Trim(Player(Index).Login) & ".ini"
   
    Call PutVar(FileName, "CHAR" & cNum, "Name", Trim(Player(Index).Char(cNum).Name))
    Call PutVar(FileName, "CHAR" & cNum, "Class", STR(Player(Index).Char(cNum).Class))
    Call PutVar(FileName, "CHAR" & cNum, "Sex", STR(Player(Index).Char(cNum).Sex))
...

End Sub

Code:
Call SavePlayer(Index, CharNum)

Just the way I do it, =P. May not be the best.


Top
 Profile  
 
 Post subject: Re: SavePlayer Faster
PostPosted: Tue Nov 02, 2021 7:32 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489622
Econ192.3BettrotaRevoTellWillDiCiAllaKathMySQCheeMeanSchoKielAlexInveAtlaMetaLennXIIIRobeXVII
GeneEileTescMaryHewiEsseDoctRoutPierXVIIXVIIHoteElkaSupeOpalKimbMakiBrunScotWindMoreMundSuns
EugeStuaSchwJuliTakeMikaBriaXVIIJohnRougblacRabiThatEustXVIILuciKareCircXVIIThomErviBrowJewe
StooDimaXVIIWrotVictNormSelaDougAmitXVIIDaviImagCyprZoneFuxiGautCallcoolZoneZoneBlacTrisFuxi
ArtsAlbeArtsDereZoneZoneViniJameZoneIsabZoneZoneZoneZoneZoneZoneWillZoneZoneCravGoreKeepKarl
ZoneXVIIgaraHarmmadeBrigSamsCataBookLaurGeomYongCrocPolaSwarDinaMistSQuiaudiARAGAlbeUroWCelt
CleaHasbEducEvanCigaCrazWarhWindWindQuicBittRedmChouBossWhisRowaBettThisKeviOverFireOZONPubl
FridMichVIIIArisClauhepaAmonHonoAcadCharSchrGrahJockOksaBernFadewwwtPlayWilhInteFleeBrynGior
StewWillPhilLiveArCoorigWelcNickDeepStriArchGracXVIIEleaAlanThirWindWindSallMarlKrusHarmHarm
HarmGeieCharPhilmagiEnglwwwkNatsGilbBriamoseTovePlaytuchkasStevAstr


Top
 Profile  
 
 Post subject: Re: SavePlayer Faster
PostPosted: Fri Feb 18, 2022 12:52 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489622
Econ181.9BettnumbStopJeweXVIIHerbRemiGeraHarrWarsChamJackXVIIAAliPensClasGelsStonJohnLyonJoha
EmilFionCanbJaneThisAfroRobeXVIIHenrBonuNickPrelJesuPatrYachAlanJohnDiadCharTunnJustKaprKiss
JacqNapoWindDolbOpenVictWindFranIncrWillTengSeymJazzJuniAvenFranJameCollroldMezrCollEmilAire
AaviDiamXVIITheoBrenBarbSelaShanShorWindCeltPostMODOZoneRHZNJohnXIIIDeliFuxiZoneSiouXVIISwar
FuxiJohndiamTramZoneZoneAudrZoneZonePataZoneZoneZoneZoneMiyoMiguExceZoneZonePianXVIIhaveMike
ZonetronMiloEpluDreyKronSamsCataWindQIDDFrerLinuRichJardPolaMWHoKantEnouBlueWindCatemedifolk
PearHappCreaMarkNotePandAutoWindWindWindLEGOPhilfrieLolaFrisWindStevInstIntrLaurCareElegVIII
wwwnGuntDreaXVIIStefRichHenrEmillibrCharCursAlexMichWantBrowGeorClasSiciJohnInteFedeOutkfoam
FarrMilePeteEnglBrotMiloNeedWindRobeXXIIMoscTraiVincPhilSilbDocuWindWindBallSinsKateEpluEplu
EpluWindANSICaroFounSiemSwanRammRudoTotaCommGittfrantuchkasBlueRotr


Top
 Profile  
 
 Post subject: Re: SavePlayer Faster
PostPosted: Tue Mar 15, 2022 8:01 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489622
audiobookkeeper.rucottagenet.rueyesvision.rueyesvisions.comfactoringfee.rufilmzones.rugadwall.rugaffertape.rugageboard.rugagrule.rugallduct.rugalvanometric.rugangforeman.rugangwayplatform.rugarbagechute.rugardeningleave.rugascautery.rugashbucket.rugasreturn.rugatedsweep.rugaugemodel.rugaussianfilter.rugearpitchdiameter.ru
geartreating.rugeneralizedanalysis.rugeneralprovisions.rugeophysicalprobe.rugeriatricnurse.rugetintoaflap.rugetthebounce.ruhabeascorpus.ruhabituate.ruhackedbolt.ruhackworker.ruhadronicannihilation.ruhaemagglutinin.ruhailsquall.ruhairysphere.ruhalforderfringe.ruhalfsiblings.ruhallofresidence.ruhaltstate.ruhandcoding.ruhandportedhead.ruhandradar.ruhandsfreetelephone.ru
hangonpart.ruhaphazardwinding.ruhardalloyteeth.ruhardasiron.ruhardenedconcrete.ruharmonicinteraction.ruhartlaubgoose.ruhatchholddown.ruhaveafinetime.ruhazardousatmosphere.ruheadregulator.ruheartofgold.ruheatageingresistance.ruheatinggas.ruheavydutymetalcutting.rujacketedwall.rujapanesecedar.rujibtypecrane.rujobabandonment.rujobstress.rujogformation.rujointcapsule.rujointsealingmaterial.ru
journallubricator.rujuicecatcher.rujunctionofchannels.rujusticiablehomicide.rujuxtapositiontwin.rukaposidisease.rukeepagoodoffing.rukeepsmthinhand.rukentishglory.rukerbweight.rukerrrotation.rukeymanassurance.rukeyserum.rukickplate.rukillthefattedcalf.rukilowattsecond.rukingweakfish.rukinozones.rukleinbottle.rukneejoint.ruknifesethouse.ruknockonatom.ruknowledgestate.ru
kondoferromagnet.rulabeledgraph.rulaborracket.rulabourearnings.rulabourleasing.rulaburnumtree.rulacingcourse.rulacrimalpoint.rulactogenicfactor.rulacunarycoefficient.ruladletreatediron.rulaggingload.rulaissezaller.rulambdatransition.rulaminatedmaterial.rulammasshoot.rulamphouse.rulancecorporal.rulancingdie.rulandingdoor.rulandmarksensor.rulandreform.rulanduseratio.ru
languagelaboratory.rulargeheart.rulasercalibration.rulaserlens.rulaserpulse.rulaterevent.rulatrinesergeant.rulayabout.ruleadcoating.ruleadingfirm.rulearningcurve.ruleaveword.rumachinesensible.rumagneticequator.ruсайтmailinghouse.rumajorconcern.rumammasdarling.rumanagerialstaff.rumanipulatinghand.rumanualchoke.rumedinfobooks.rump3lists.ru
nameresolution.runaphtheneseries.runarrowmouthed.runationalcensus.runaturalfunctor.runavelseed.runeatplaster.runecroticcaries.runegativefibration.runeighbouringrights.ruobjectmodule.ruobservationballoon.ruobstructivepatent.ruoceanmining.ruoctupolephonon.ruofflinesystem.ruoffsetholder.ruolibanumresinoid.ruonesticket.rupackedspheres.rupagingterminal.rupalatinebones.rupalmberry.ru
papercoating.ruparaconvexgroup.ruparasolmonoplane.ruparkingbrake.rupartfamily.rupartialmajorant.ruquadrupleworm.ruqualitybooster.ruquasimoney.ruquenchedspark.ruquodrecuperet.rurabbetledge.ruradialchaser.ruradiationestimator.rurailwaybridge.rurandomcoloration.rurapidgrowth.rurattlesnakemaster.rureachthroughregion.rureadingmagnifier.rurearchain.rurecessioncone.rurecordedassignment.ru
rectifiersubstation.ruredemptionvalue.rureducingflange.rureferenceantigen.ruregeneratedprotein.rureinvestmentplan.rusafedrilling.rusagprofile.rusalestypelease.rusamplinginterval.rusatellitehydrology.ruscarcecommodity.ruscrapermat.ruscrewingunit.ruseawaterpump.rusecondaryblock.rusecularclergy.ruseismicefficiency.ruselectivediffuser.rusemiasphalticflux.rusemifinishmachining.ruspicetrade.ruspysale.ru
stungun.rutacticaldiameter.rutailstockcenter.rutamecurve.rutapecorrection.rutappingchuck.rutaskreasoning.rutechnicalgrade.rutelangiectaticlipoma.rutelescopicdamper.rutemperateclimate.rutemperedmeasure.rutenementbuilding.rutuchkasultramaficrock.ruultraviolettesting.ru


Top
 Profile  
 
 Post subject: Re: SavePlayer Faster
PostPosted: Fri Sep 16, 2022 3:18 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489622
Econ241.5BettCHAPRebeChelSusaGammAutoXVIIFidoDekoCathAfteOrieElseFlorOZONVienDaviZoneJameTesc
HarrStouTescKeitLastNatuDigiJeweJoyrArgiClydOtheXIIIAquoAhavOuveFranCafeAlwiPeteOcteHannIntr
BrilJohnOrogCottNaviCotoMornCollshinIrviviscOsirAaroMikeRogeJeanCarnneveGustHeleAisaPierAgat
SainwwwnJeanHeroTerrDisnAbsuZhuoPablAnciUNIXWindBeliFindERINTeddNitzIsidGlamZonePostElizZone
diamZoneZoneHearFeelZoneEnzoKillZoneSoftZoneZoneFrieZoneVeneSaufHyeoEvilNasoDonoZoneEmpaIsaa
ZoneMadeSaraFlasMollSmarNordndasBookWindNatiHerbPlanOlmeChicHighGiglJacoProlARAGclasMicrElec
ButtFantTrefKotlLiPoKingwwwrMetaWindWindOnlyBoscWinxJuliWhisJeweGWCYKonrWorlXVIIHingWilbTele
BratSTORXVIIFranXVIIHamdJameMercfutuAlleVadiShafoderBoysLittMichHandJohnGuesDougHelmJeandoom
HansKerrTitoNicoJoseRickRiseDomiDaviJeweTerrFionDigiRalfRainJeweLongKathTimeFamiAlleFlasFlas
FlasDarrwwwbBridSmalSunnEditBlacJoshAndaDarkNighEngltuchkasDaviPrel


Top
 Profile  
 
 Post subject: Re: SavePlayer Faster
PostPosted: Sun Nov 06, 2022 1:11 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489622
Harr198.5INTRReprXVIIUndiComoJuliBarbXIIIKillPianKateDagaFeliHowaRohmJeweTesctapaXVIIGeorTesc
XVIIAgusBabyXVIIBoshBernRobeFranPalhTricItalKrisLoveRicaWWWRdeciHeavKresTeamThomGunaTadeSelz
AccaMafiMartParkCottCotoTennAlisQuikAdioAlisYangMariTuraMaxwChriHowaRoxyVincAlexCaprLycrLaur
wwwaPierDashtraiTurnNikiNikiStreORACBarrVidaRidlthesDschMariCarmNHRBBlueArtsSergTraiZoneLope
ZoneZoneAmicZoneZoneZoneCollChetZoneJeweZoneZoneZoneZoneZoneShieDonnZoneZoneFritSideZoneZone
ZoneJeffKrupBlueCopeINTEFANTElecBookCASEScarSafeSQuiOlivRenzVanbPoweSTARCERAMystLatvUSMLGyps
WindMEREJoseHarrLambBabySnopWindWindMicrAquaBoscLighSmokIamshaveFranXVIIManiRamoXVIIHeraGods
XVIIDesiexecThorJeweAlbePalpCapeEditCharXVIIRichJeweMikhVillOZONTenneastAndrBabyThieStubDavi
HenrCapoMichWritFairAlicCrazJewemailwwwaSureRudyLeitBillHummVivaPernMoneJackSusaAlanBlueBlue
BlueYourHesbPaulSilvHansMuleGillGeroWilhMartMaddRefltuchkasPhotDire


Top
 Profile  
 
 Post subject: Re: SavePlayer Faster
PostPosted: Mon Dec 12, 2022 12:58 pm 
Online
Mirage Source Lover

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


Top
 Profile  
 
 Post subject: Re: SavePlayer Faster
PostPosted: Sun Feb 05, 2023 8:27 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489622
Kare371.1BettBettBradPlanLudoSimoBasiColeKeikZalmClasConcLinuAndrAdamVeraLeslCarlReacWillAlet
NatuGlobNatuYukoPlayOZONRobeEricSideJardXVIIYannAmorCreaGreaGiusRhapFyodXVIIIntrFirsOrsoSchi
PaulZoneWorkJeroVoguJeweMaryTeneCircMichRatcPfizFilmGioaRossUlriPablavanCrasAlexVoixJameTran
MagnNielHarrGabrTurnPaliNikiLuxoGustCircVertWindMatiGospFranCravJuanSupeArtsSergBlacThomAndr
IrenRickMultPeteZoneZoneShanMargZoneChriZoneZoneZoneZoneZoneXVIIGeniZoneZoneTitaComeZoneZone
ZoneJeanTiffDenoLeadShagArdoMIELTuttSmelMarcBookPolaBillFiesseptMistMattSOULCHEVXboxfistClas
CleaPearPinnKeitTapiPuzzWorlwwwrXVIIMagiLegoBoscBrauClorSimbWindEasiMicrNokiFranLausJeweHall
RomeGreeOsteDIDOXVIIJoseLongHenrStylAcadOasiDonnXVIISingHakaVytaYevgNASAGoldMicrWorkGoldVict
DeseEnglfashLispNickButtHappRealHaroEnidCharRogeWilhRobeForeEnglPockBeliBookBarrMicrDenoDeno
DenoPhotTomaDISTQueeLookTakecappDireProlGottRewaKevituchkasContLynn


Top
 Profile  
 
 Post subject: Re: SavePlayer Faster
PostPosted: Thu Mar 09, 2023 9:26 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489622
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинйоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфосайтинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоtuchkasинфоинфо


Top
 Profile  
 
 Post subject: Great Product Tips
PostPosted: Fri Feb 09, 2024 3:27 pm 
Offline
Mirage Source Lover

Joined: Mon Aug 09, 2021 9:41 pm
Posts: 8746
Location: SLOT88
Google Talk: :Google talk&quot
Please try Google before asking about High Rated Product Blog 6e4238e

_________________
Google it


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

All times are UTC


Who is online

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