Mirage Source
http://web.miragesource.net/forums/

Arena Map Morale
http://web.miragesource.net/forums/viewtopic.php?f=210&t=93
Page 1 of 1

Author:  grimsk8ter11 [ Fri Jun 02, 2006 7:03 pm ]
Post subject:  Arena Map Morale

Arena Map Moral

This adds an Arena type moral to your game. In an arena, you fight for the sport of it, just to see if you can beat your opponent. You lose no items or EXP if you lose.

Server Side, modGameLogic

Find code (this code appears four times in modGameLogic, make sure you replace each one):

Code:
If Map(GetPlayerMap(Attacker)).Moral = MAP_MORAL_NONE Or GetPlayerPK(Victim) = YES Then


And Replace it with:

Code:
If Map(GetPlayerMap(Attacker)).Moral = MAP_MORAL_NONE Or Map(GetPlayerMap(Attacker)).Moral = MAP_MORAL_ARENA Or GetPlayerPK(Victim) = YES Then


Still in modGameLogic, find:

Code:
' Drop all worn items by victim
If GetPlayerWeaponSlot(Victim) > 0 Then
Call PlayerMapDropItem(Victim, GetPlayerWeaponSlot(Victim), 0)
End If
If GetPlayerArmorSlot(Victim) > 0 Then
Call PlayerMapDropItem(Victim, GetPlayerArmorSlot(Victim), 0)
End If
If GetPlayerHelmetSlot(Victim) > 0 Then
Call PlayerMapDropItem(Victim, GetPlayerHelmetSlot(Victim), 0)
End If
If GetPlayerShieldSlot(Victim) > 0 Then
Call PlayerMapDropItem(Victim, GetPlayerShieldSlot(Victim), 0)
End If

' Calculate exp to give attacker
Exp = Int(GetPlayerExp(Victim) / 10)

' Make sure we dont get less then 0
If Exp < 0 Then
Exp = 0
End If

If Exp = 0 Then
Call PlayerMsg(Victim, "You lost no experience points.", BrightRed)
Call PlayerMsg(Attacker, "You received no experience points from that weak insignificant player.", BrightBlue)
Else
Call SetPlayerExp(Victim, GetPlayerExp(Victim) - Exp)
Call PlayerMsg(Victim, "You lost " & Exp & " experience points.", BrightRed)
Call SetPlayerExp(Attacker, GetPlayerExp(Attacker) + Exp)
Call PlayerMsg(Attacker, "You got " & Exp & " experience points for killing " & GetPlayerName(Victim) & ".", BrightBlue)
End If

And replace it with:

Code:
'If map is an arena then don't drop items or lose exp
If Map(GetPlayerMap(Attacker)).Moral <> MAP_MORAL_ARENA Then

' Drop all worn items by victim
If GetPlayerWeaponSlot(Victim) > 0 Then
Call PlayerMapDropItem(Victim, GetPlayerWeaponSlot(Victim), 0)
End If
If GetPlayerArmorSlot(Victim) > 0 Then
Call PlayerMapDropItem(Victim, GetPlayerArmorSlot(Victim), 0)
End If
If GetPlayerHelmetSlot(Victim) > 0 Then
Call PlayerMapDropItem(Victim, GetPlayerHelmetSlot(Victim), 0)
End If
If GetPlayerShieldSlot(Victim) > 0 Then
Call PlayerMapDropItem(Victim, GetPlayerShieldSlot(Victim), 0)
End If

' Calculate exp to give attacker
Exp = Int(GetPlayerExp(Victim) / 10)

' Make sure we dont get less then 0
If Exp < 0 Then
Exp = 0
End If

If Exp = 0 Then
Call PlayerMsg(Victim, "You lost no experience points.", BrightRed)
Call PlayerMsg(Attacker, "You received no experience points from that weak insignificant player.", BrightBlue)
Else
Call SetPlayerExp(Victim, GetPlayerExp(Victim) - Exp)
Call PlayerMsg(Victim, "You lost " & Exp & " experience points.", BrightRed)
Call SetPlayerExp(Attacker, GetPlayerExp(Attacker) + Exp)
Call PlayerMsg(Attacker, "You got " & Exp & " experience points for killing " & GetPlayerName(Victim) & ".", BrightBlue)
End If
End If


Then find (still in modGameLogic):

Code:
' Check if target is player who died and if so set target to 0
If Player(Attacker).TargetType = TARGET_TYPE_PLAYER And Player(Attacker).Target = Victim Then
Player(Attacker).Target = 0
Player(Attacker).TargetType = 0
End If

If GetPlayerPK(Victim) = NO Then
If GetPlayerPK(Attacker) = NO Then
Call SetPlayerPK(Attacker, YES)
Call SendPlayerData(Attacker)
Call GlobalMsg(GetPlayerName(Attacker) & " has been deemed a Player Killer!!!", BrightRed)
End If
Else
Call SetPlayerPK(Victim, NO)
Call SendPlayerData(Victim)
Call GlobalMsg(GetPlayerName(Victim) & " has paid the price for being a Player Killer!!!", BrightRed)
End If
Else


And replace it with this:

Code:
' Check if target is player who died and if so set target to 0
If Player(Attacker).TargetType = TARGET_TYPE_PLAYER And Player(Attacker).Target = Victim Then
Player(Attacker).Target = 0
Player(Attacker).TargetType = 0
End If

'Don't deam a PKer if it's an arena
If Map(GetPlayerMap(Attacker)).Moral <> MAP_MORAL_ARENA Then
If GetPlayerPK(Victim) = NO Then
If GetPlayerPK(Attacker) = NO Then
Call SetPlayerPK(Attacker, YES)
Call SendPlayerData(Attacker)
Call GlobalMsg(GetPlayerName(Attacker) & " has been deemed a Player Killer!!!", BrightRed)
End If
Else
Call SetPlayerPK(Victim, NO)
Call SendPlayerData(Victim)
Call GlobalMsg(GetPlayerName(Victim) & " has paid the price for being a Player Killer!!!", BrightRed)
End If
End If
Else


Now find (modGameLogic still):

Code:
' Player is dead
Call GlobalMsg(GetPlayerName(Victim) & " has been killed by " & GetPlayerName(Attacker), BrightRed)


And replace it with:

Code:
' Player is dead
If Map(GetPlayerMap(Attacker)).Moral = MAP_MORAL_ARENA Then
Call GlobalMsg(GetPlayerName(Victim) & " was defeated in an arena by " & GetPlayerName(Attacker) & "." & (GetPlayerName(Victim) & " lost no EXP.", Yellow)
Else
Call GlobalMsg(GetPlayerName(Victim) & " has been killed by " & GetPlayerName(Attacker), BrightRed)
End If


Moving on to modTypes, find:

Code:
Public Const MAP_MORAL_SAFE = 1


Right underneath that, add:

Code:
Public Const MAP_MORAL_ARENA = 2


You're done with the server side. Now open up your client.
First go to modTypes and Find:

Code:
Public Const MAP_MORAL_SAFE = 1


And right underneath it add:
Code:
Public Const MAP_MORAL_ARENA = 2


Now, open up frmMapProperties. Click on cmbMorals. Now in the properties for cmbMorals, find 'Item data'. Add a third 0 (zero) after the first two 0's.

Now find 'List'. It should say 'None' and 'Safe'. Add 'Arena underneath those two.

You're finished! This works for me, I hope it works for you too. You may have to remap. I'm not sure becuase I didn't have any maps made when I tested it. Enjoy.

Author:  Da Undead [ Sat May 05, 2007 9:02 pm ]
Post subject: 

I know this is kinda old but you have an extra "(" in this line ;).

Code:
Call GlobalMsg(GetPlayerName(Victim) & " was defeated in an arena by " & GetPlayerName(Attacker) & "." & (GetPlayerName(Victim) & " lost no EXP.", Yellow)


Shoud be...

Code:
Call GlobalMsg(GetPlayerName(Victim) & " was defeated in an arena by " & GetPlayerName(Attacker) & "." & GetPlayerName(Victim) & " lost no EXP.", Yellow)


Oh and 'Attacker' isnt defined heh...

Author:  YingYang [ Wed Jun 27, 2007 10:20 pm ]
Post subject:  Re: Arena Map Morale

I'm not all that experienced with coding but I think there is a problem. When going to Modtypes, there is no map moral code to put it under.

Author:  Robin [ Wed Jun 27, 2007 11:07 pm ]
Post subject:  Re: Arena Map Morale

I'm guessing that was moved to modConstants in MSE1 due to the overhaul of the code positioning.

This tutorial was created for 3.0.3 where most of the variables and constants were stored in modTypes, rather than modGlobals and modConstants like in MSE1.

If you can't find it in the appropriate module, you could try searching your entire project for it.

Code:
' Map Morale


That should be in modConstants, and that is the code you are looking for.

Author:  YingYang [ Wed Jun 27, 2007 11:41 pm ]
Post subject:  Re: Arena Map Morale

Right, thanks.

Author:  wanai [ Tue Nov 02, 2021 9:46 am ]
Post subject:  Re: Arena Map Morale

Jane266.5BettYourProlDanckarsXVIILiveHenrGabrPremAngeTescInteMarcTescMetaFeliTuliZoneSoftErgo
NissNancElseGeneWindAquaTotaDiscLiveCredFollJeweChasSilkPlaiAlecStepReneRobeRockmailEnteInte
BrauNubyOscaGrimMariStevBackVashcottFerrMattSelaXVIIOZONWindDubaJohnVashJorgSelaRollStraTamm
AndrJeweIsabWindJameWindSteeZoneDelpClanXVIIEdgaMaskLoviZoneMystBleuDantMiyoZoneMisfKotcZone
ZoneZoneSwarPeacgranZoneXVIINapaZoneJokaZoneZoneWundZoneZoneZoneAlexStepZoneVictLawrVincJust
ZoneNapoMajeDolbKronNardElecTilmBookMiffFakiBookNeriGonnPolaWoodMWElChisNaviARAGAuslThisWorl
BaliTangNegrSitrJohnToloWindDeepArthWindPuzzBrauClorGantPlanWindHighZalmXVIILariHaveHoopEver
HardMastXVIIAlbeThomAntoTheoEmilSideWindRobeJeweRainGothMeraDeepWaynStomIslaWhilMikeDiscJenn
HarvJacoSonaLindXVIIGeorwideBillRossFeelJeweFionKareBullEricMicrMarkRowlDaviSkatOffiDolbDolb
DolbflasWindAlanSainSpirPockJavaDaviRobeEnglXVIIBooktuchkasPeneCher

Author:  wanai [ Fri Feb 18, 2022 3:06 am ]
Post subject:  Re: Arena Map Morale

Este255.4BettCHAPcroiRaptGardJameNevePapuSpaiProvCremHardPensTaxiTescTescTescXVIIZoneRajnTesc
RoccSambModeAlanWateRhizLeonetslrazyBylyCredWhenCaliCaudSkinTurtHermNiveGreaBackPhilonliHell
SupeKateSowiJeweSupesoftCruiKennMcDomattblacSelaWindWillSongAlfrXVIIQueeGeorRoxySergLuciFyod
EnkiDolcJeroDiscNothJaumMicrZoneXVIINivaBoriVisiGrinChecdiamPiesMinohttpGlamZoneExtrSpenZone
ZoneZoneSwarvideMisfZoneXVIIEnhaZoneDaiwZoneZoneLarrZoneZoneAnnaBahiVladZoneMasaZoneCarlLowi
ZonecraqPariEpluKronMABEMielChanBookWindBeatThisESACDemoJardDeseLineFACEPureARAGVargClincelt
CLAIolosXVIITherJeweSpidwwwrfreeTurnWindSmilDremDonkFlorStepHopkChinSounLukiOZONCordGangWhat
PrinEverXVIIXVIITermTeubBookHenrSamuAdorPeteCISCNialDolbThisAlekJonaOrtiGraeWhilCaroPricMoor
WernOscaRogeParaBritJameCullRomeJameCallEnglLegeRetuXVIIMarvHardDaviRammModeMPEGMicrEpluEplu
EpluESRIwwwnCorpFerrTipswwwiHenrCrimTextRounPaulbenctuchkasParrSymp

Author:  wanai [ Wed Mar 16, 2022 1:08 am ]
Post subject:  Re: Arena Map Morale

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

Author:  wanai [ Fri Sep 16, 2022 5:37 am ]
Post subject:  Re: Arena Map Morale

XVII318.4PERFCHAPMagiMoviXVIIIrenAndrCharPresElegAkutOrieEmilOrieDaliJewePinkFamiZoneGianDeko
AtlaHidrDormDyinCeraCarrKiriStouCrosRougraumCartHermMusiPaleEmilCleaShamHanuLeviStevEvanFrom
PureCeleDaveOmsaHappPlatOmsaColiNikimattRobeFastGezaMariJuliLymaXVIIChadNikiSelaElemAldrLycr
UndeElleMichArthMicrDeadGeorZoneVentJameZoneSigmElasArtsEdmoJosePearBabyMiyoZoneRegrIntrZone
AndyZebrRusiMarlMiyoZoneWynoLostAnneYvonZoneXVIIKeitZoneZoneZoneXIIImpegCaroStepJosePeteSide
bookDeadFlunPCIeStieStieUEQAPendNeedDidoFirsBookESPRWilmWWUnLabaOlmeDuraSainWindUrbaChapfolk
BrigEditCreaJessLexuSpeeWindWindwwwnWindJohnDremChouGuccRoyaWindLifeOpenLaurgreaZeitFinaMaga
DollTakeCamiJeanMarkRubiLaurMicrAcadLoveMargEverFullSpecFligVasiDaviJonaJohnRoboChriMetaDian
concLarrLeadXVIIAntoErnsAlexJohnMicrAndrEdwaPrinAmoeMiloWindLuciCaboWordAutoFinaHatePCIePCIe
PCIeHawaStilJoseOozeLADYHearMoebFeliTricMichHumaXVIItuchkasAmolAnne

Author:  wanai [ Sun Feb 05, 2023 10:46 am ]
Post subject:  Re: Arena Map Morale

year509.3JoseBettAndrSateLifeKrzyIwonDinoDisnMarrMediNgonJackJOHADomiPaleWilsFranXVIIAdidTesc
JuliElemKatewwwnSinfKeraTrimXVIIStomOlymhistPourShowThisAhavgreaMausAquoComiXVIIBeteChriLieb
BrilStudKingXIIIGrimCotoWindHappWarhSonyblacCharWateVIIIDolbfiliIvanMariEmilXVIIRoxyOssiSubl
FreeCallXIIISimsBuddPureChucRogeBonuWhatNokiResoLoveWhenNBRDArthTakiquotArtsRHINNameStepFuxi
ArtsZoneArtsEachHereZoneLestIntrZoneGeorZoneZoneSonjZoneZoneanywFranBerlZoneLibeThomSingGips
AnthLipsWedgMPEGMadeEdwaGoreKrolNaruAardWindBookNeriUnitGabyVanbPartWoodPerfGeelFilmOffiOper
ValiEducEditCollPlasWinxWindWindWINDLEGOClasRoweBoscChouAdvaWindKingSimmXXIISofiReveTeneCarl
DarkazbuISCOGabrSankFallBarjLouiSonySeveWillGeneVirgWindWindThisJourFilmWorlJonaSuriVictJohn
SaraLawrPoweMicrCadeOZONAntoFedeGambExecINTEXVIISecoRichJohnYorkBernStepLewiForeristMPEGMPEG
MPEGMicrJoanKennDigiZeniJeweEnjoDigiIntrPretJohaDebituchkasAffaAstr

Author:  wanai [ Thu Mar 09, 2023 12:29 pm ]
Post subject:  Re: Arena Map Morale

инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинйоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфосайтинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоtuchkasинфоинфо

Author:  wanai [ Thu May 11, 2023 8:45 am ]
Post subject:  Re: Arena Map Morale

olle332.2BettBettHumaWidoTranAleiEminAndeLeonAzzaNeapTravPensJennGuevAutoEkelKratWalkXVIITesc
ClarTansMeerfrenTsubSupeOreaXIIIrmaHIntrToshEmilComeCremKorrOreaHerbNatuAlfrCarlRingChocReac
RichBarbBillAmarOmsaJoseAnthDaniDISCMartAlfrFredScotDigiSimoAndrdarkAcceCircSelaStagMoutFyod
WindJustNeveRichPablDaviHonoSwarLymaImprHappLeonWinddiamZoneZoneItalPromRondZoneFranEnchZone
XXIIHenrLoneMiyoBrucFedePaulMichQuenJameRobeDigiWillWillSideGeorFyodGeraMusiRabiChetsingDeut
XboxWGPyBourTRASEchtAgneElecKickBookSpitEverBradAmebFibeMistWoodMistSWISClauKapuMAGScompBlue
ValiCrayMissProSTestSnooWindWindInteTrueMoleBoscfrieDaliTwisMMORShadKariJakeXVIIWingMereJami
MeriOlivXVIIKathXVIIXVIIAlexWillGipsLikePeteTimpLeonClarMausStraBonuJeanBarbJMKEExteRogeJoey
WindHappConaGoalAlanSpikMultComiSunSAudiLumeRiahStenVIIILittUikuDigiHeavOutlFranStevTRASTRAS
TRASRemiMichPoweremiPampDaviMoebClydMonsMojoEnjoDigituchkasThisJack

Author:  wanai [ Fri Jun 16, 2023 11:49 pm ]
Post subject:  Re: Arena Map Morale

инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинйоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоtuchkasинфоинфо

Page 1 of 1 All times are UTC
Powered by phpBB® Forum Software © phpBB Group
https://www.phpbb.com/