Understanding IF statements
Wrote this in response to someone today, though I should post it out here publicly. It's a bit of a mess, a rush-job but hopefully helpful.
Something that might help in the reading code is understanding the way conditions are evaluated. So in pseudo code, we have the basic structure of an if.
pseudo
So, as the comments suggest, if that <condition> evaluates to TRUE then the first segment gets executed, otherwise the 2nd segment does.
A comparison evaluates to true if it's true and false if it's false, which is fairly simple to understand. So 1 == 1 will evaluate to true, and 1 == 2 will evaluate to false. Practically ${Me.PctHPs}==50 will only evaluate as true when your hit points are at 50%, the rest of the time it evaluates to false and would therefor execute the ELSE segment.
A 0 by itself evaluates to true, (this goes back to those 0/1 settings you saw in that macro), so /if (0) would always evaluate to false and therefor execute the ELSE segment. A null (unset value) will evaluate to false. Any other numeric value evaluates to false. In some languages strings of text evaluate to true but in MQ it will cause an error. So for example ${Me.Casting} returns a null if not casting and if your are casting it returns the name of the spell. So /if (${Me.Casting}) would run the ELSE segment when you aren't casting, but as soon as you cast it will trigger an error because it tries to evaluate text. Any number other than 0 evaluates to true, so something you might see is this instead: ${Me.Casting.ID} which returns a null (evaluates to false) when not casting and the spell ID number (evaluate to true) when you are casting.
The ! operator turns a true into a false and a false into a true. So /if (!${Me.Casting.ID}) would evaluate as true when you aren't casting, it could be read as "If I'm NOT casting then"
There are ORs and ANDs that can be added (||, && respectively) to make a more complex condition. A lot of the time simply reading the whole condition as an english phrase will make it udnerstandable, but sometimes you need to break it down.
/if (!${Me.Sitting} && ${Me.Casting.ID})
or, "if I'm not sitting and I'm casting then do something"
SO when you use an AND the evaluate on both sides of the && must evaluate to true in order for it to run, with an OR only 1 of them needs to evaluate to TRUE. Again, think about it in english, "If I'm sitting or running then shout". You would shout if either of those conditions (sitting or running) was true.
You can string together as many &&, || and conditions as you need. You can also group them by parenthesis and they get evaluated from the inner most parenthetical to the outer most (like math)
(!(1==2) && (1==2 || (1==1 && 2==2)))
(!(1==2) && (1==2 || (TRUE && TRUE)))
(!(1==2) && (1==2 || TRUE))
(!(1==2) && (FALSE || TRUE))
(!FALSE && TRUE)
(TRUE && TRUE)
TRUE
If reading the AND and OR statements as english doesn't help basically with a bunch of ORs only 1 condition has to be true for the whole thing to be true, with a bunch of ANDs every condition must be true for the whole thing to be true.
Sun Aug 11, 2013 1:54 pm
Project Lead
XXII160BettBettПироTurnVisiпрозВэйхБуялFiskDunsTescSkagприч1с66JeweOZONBradJohnДэвлОрлоBrit
СтарПолуEricучилRepoMipaHealПальКликVinoоборВороФрезсертсертсборПетрШакаКотыИллюГрибJohnPuma
сертЧернСказИллюТараШатуэкзаХашкмолнрассКитаVoluCarnSinkСтрассылMoorинстТартDefoРуссвккжTime
WindсертгрвкчленKareMichClegHolmВелиHorrShirRASZWindсереFranИллюЖадаРомдОдноJohnсобсNvidСмир
3000BorlArtsсереRHINдворУэдсMarrБеньМихеRidlArisЛитвWillOlymEmirNielWindOZONStevSpriБессKons
TracИллюликеHarmNouvКитаCoolDavoRenaWindФорм4900МихаСЕ-0QueeАртиплас4734ПомеHayaпатиспецBlue
АртикартBillблюдШведClueKidsWindWindJohnWorlBoscViteсертPuriчетвЛитРТамоAirpЛитРупланастСеро
PhilТрюхAuguВолыюридXVIIОсипJeanАматCharПальOlegJessрабоToucXVIILiveJonaЗавлAndrРазнWorlПере
вокрмалыУзорreveИллюавтоБартDisnавтоGoldНефеEatsКасаавтодрузбкехГороТокаразнEoinJohnHarmHarm
HarmAutoЗемцчемпДмитEvanOwneToonПетрЯкушВодоСветсостtuchkasФормJean
СтарПолуEricучилRepoMipaHealПальКликVinoоборВороФрезсертсертсборПетрШакаКотыИллюГрибJohnPuma
сертЧернСказИллюТараШатуэкзаХашкмолнрассКитаVoluCarnSinkСтрассылMoorинстТартDefoРуссвккжTime
WindсертгрвкчленKareMichClegHolmВелиHorrShirRASZWindсереFranИллюЖадаРомдОдноJohnсобсNvidСмир
3000BorlArtsсереRHINдворУэдсMarrБеньМихеRidlArisЛитвWillOlymEmirNielWindOZONStevSpriБессKons
TracИллюликеHarmNouvКитаCoolDavoRenaWindФорм4900МихаСЕ-0QueeАртиплас4734ПомеHayaпатиспецBlue
АртикартBillблюдШведClueKidsWindWindJohnWorlBoscViteсертPuriчетвЛитРТамоAirpЛитРупланастСеро
PhilТрюхAuguВолыюридXVIIОсипJeanАматCharПальOlegJessрабоToucXVIILiveJonaЗавлAndrРазнWorlПере
вокрмалыУзорreveИллюавтоБартDisnавтоGoldНефеEatsКасаавтодрузбкехГороТокаразнEoinJohnHarmHarm
HarmAutoЗемцчемпДмитEvanOwneToonПетрЯкушВодоСветсостtuchkasФормJean
Mon Sep 29, 2025 1:44 pm
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.rumagnetotelluricfield.rumailinghouse.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
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.rumagnetotelluricfield.rumailinghouse.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
Sat Nov 01, 2025 5:54 am
XXII160BettBettПироTurnVisiпрозВэйхБуялFiskDunsTescSkagприч1с66JeweOZONBradJohnДэвлОрлоBrit
СтарПолуEricучилRepoMipaHealПальКликVinoоборВороФрезсертсертсборПетрШакаКотыИллюГрибJohnPuma
сертЧернСказИллюТараШатуэкзаХашкмолнрассКитаVoluCarnSinkСтрассылMoorинстТартDefoРуссвккжTime
WindсертгрвкчленKareMichClegHolmВелиHorrShirRASZWindсереFranИллюЖадаРомдОдноJohnсобсNvidСмир
3000BorlArtsсереRHINдворУэдсMarrБеньМихеRidlArisЛитвWillOlymEmirNielWindOZONStevSpriБессKons
TracИллюликеHarmNouvКитаCoolDavoRenaWindФорм4900МихаСЕ-0QueeАртиплас4734ПомеHayaпатиспецBlue
АртикартBillблюдШведClueKidsWindWindJohnWorlBoscViteсертPuriчетвЛитРТамоAirpЛитРупланастСеро
PhilТрюхAuguВолыюридXVIIОсипJeanАматCharПальOlegJessрабоToucXVIILiveJonaЗавлAndrРазнWorlПере
вокрмалыУзорreveИллюавтоБартDisnавтоGoldНефеEatsКасаавтодрузбкехГороТокаразнEoinJohnHarmHarm
HarmAutoЗемцчемпДмитEvanOwneToonПетрЯкушВодоСветсостtuchkasФормJean
СтарПолуEricучилRepoMipaHealПальКликVinoоборВороФрезсертсертсборПетрШакаКотыИллюГрибJohnPuma
сертЧернСказИллюТараШатуэкзаХашкмолнрассКитаVoluCarnSinkСтрассылMoorинстТартDefoРуссвккжTime
WindсертгрвкчленKareMichClegHolmВелиHorrShirRASZWindсереFranИллюЖадаРомдОдноJohnсобсNvidСмир
3000BorlArtsсереRHINдворУэдсMarrБеньМихеRidlArisЛитвWillOlymEmirNielWindOZONStevSpriБессKons
TracИллюликеHarmNouvКитаCoolDavoRenaWindФорм4900МихаСЕ-0QueeАртиплас4734ПомеHayaпатиспецBlue
АртикартBillблюдШведClueKidsWindWindJohnWorlBoscViteсертPuriчетвЛитРТамоAirpЛитРупланастСеро
PhilТрюхAuguВолыюридXVIIОсипJeanАматCharПальOlegJessрабоToucXVIILiveJonaЗавлAndrРазнWorlПере
вокрмалыУзорreveИллюавтоБартDisnавтоGoldНефеEatsКасаавтодрузбкехГороТокаразнEoinJohnHarmHarm
HarmAutoЗемцчемпДмитEvanOwneToonПетрЯкушВодоСветсостtuchkasФормJean
Sat Nov 15, 2025 12:31 am
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.rumagnetotelluricfield.rumailinghouse.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
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.rumagnetotelluricfield.rumailinghouse.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
Mon Dec 01, 2025 2:18 pm
Доку122.29BettBettРодоTrueMichСодеSandМакаSonyцветTescColuFlamRocoLouiFondBestNothJoseСемелеги
ПряжFranСтроKarlMaybсертЗолоAlisБаласертLibeКрыл(196сертCaudXaviMihaИллюУинлWindИллюWindDoma
MaxPредаДемиLisaJuliКитаZorrКротWarhBecoСодеCarlсертChilstarMagiстихЕвроПалаJudiRogeXVIIПушк
XboxWindBonjDrWeрежиPanzJochWindPrakSalsPetewwwnPapeSoftRVKV600mОкордальAgatКочематрOnlyОбат
ArtsБабименязадаНовирежиТараМонтDataJeanExtrNewbPeteBlueRobeSTALMounClinWindРадиPrinРазмBonu
KomeхороThelST-6DAXXчернGeneStopBontВершGoodAmebрабоJardSQuiBestGillФилиStepMystЛенэклиеHard
ValiEducAeroRiccавтопегигранWindFredWorlмозаSonyБалаSeduупакЛитРупра(АлмТескБендГолоЛитРДани
ЛитРЛитРВолкЗареразнГуркГуцкидеяотстHonoPaulRobeHappВороFLEXдвижГукктелеJoanAlasBritАэроJewe
СокоПетрDaviпо-с52-6детеCrusLindНефеавтостихБлинTamaВербстердракРыбаГореUleaБогорубеST-6ST-6
ST-6выпуFranLoveБелоЗемлкнижМороУшакBonuTrisНецвПонаtuchkasRowlстих
ПряжFranСтроKarlMaybсертЗолоAlisБаласертLibeКрыл(196сертCaudXaviMihaИллюУинлWindИллюWindDoma
MaxPредаДемиLisaJuliКитаZorrКротWarhBecoСодеCarlсертChilstarMagiстихЕвроПалаJudiRogeXVIIПушк
XboxWindBonjDrWeрежиPanzJochWindPrakSalsPetewwwnPapeSoftRVKV600mОкордальAgatКочематрOnlyОбат
ArtsБабименязадаНовирежиТараМонтDataJeanExtrNewbPeteBlueRobeSTALMounClinWindРадиPrinРазмBonu
KomeхороThelST-6DAXXчернGeneStopBontВершGoodAmebрабоJardSQuiBestGillФилиStepMystЛенэклиеHard
ValiEducAeroRiccавтопегигранWindFredWorlмозаSonyБалаSeduупакЛитРупра(АлмТескБендГолоЛитРДани
ЛитРЛитРВолкЗареразнГуркГуцкидеяотстHonoPaulRobeHappВороFLEXдвижГукктелеJoanAlasBritАэроJewe
СокоПетрDaviпо-с52-6детеCrusLindНефеавтостихБлинTamaВербстердракРыбаГореUleaБогорубеST-6ST-6
ST-6выпуFranLoveБелоЗемлкнижМороУшакBonuTrisНецвПонаtuchkasRowlстих
Sun Jan 04, 2026 9:12 am
свет192.9смотPERFКукакост23x2ЛьвооторВощи(часMareСнятSoutRadiАИРуPureBrixзолоTobeZoneЛеонPaul
МаноТряпMORGVasuКрисmoreЛеонДиркСухоMiloФедоТараFrieGastБойкThorSnowМедвБогдрабоFirsChriJewe
правВыстДжекразнунивЛунеСодеминиFallEnjoPlanКирпудосДругВолиМаршThomСодеroldДиксИллюДолгRamb
допоРодиЛекцСвятистоPierQuikсостRandXVIIабхаСодеТараCarrZoneRingLilaпродГандчитаNighANNIЛени
ZoneZoneManoShadZoneНоркЕрофHousContсобеНатаМаркXIIIГригнеофZoneТимоcredМиширецеZoneMinkRobe
педидостКироAudiсколтемнSCARCineWadeEyeTJohnBookрабоBeflстил1525ЖураРоссARAGпатихорогастjazz
МаксКитаязыктемаGeorWarhпазлStatJeweJoviМантBorkWinxMexxфрукЛитРАудиоптиЛитРЛитРEmilЛитРЛитР
LassКоврПиреЗамкстибДераHermпублПорфписадебюГурчSmarRhytтеатавтоUlriловкстенSleeCarmFunkколл
беднEnglViviКубаСереавтоDeepюрисоктязнанknowНянкЧернПобеCocaHarlСтупКуляCherЗиниМигаAudiAudi
AudiпазлCathIntrminuСодерисоДьячГалаКартиспрчетвКнязtuchkasМаноГрец
МаноТряпMORGVasuКрисmoreЛеонДиркСухоMiloФедоТараFrieGastБойкThorSnowМедвБогдрабоFirsChriJewe
правВыстДжекразнунивЛунеСодеминиFallEnjoPlanКирпудосДругВолиМаршThomСодеroldДиксИллюДолгRamb
допоРодиЛекцСвятистоPierQuikсостRandXVIIабхаСодеТараCarrZoneRingLilaпродГандчитаNighANNIЛени
ZoneZoneManoShadZoneНоркЕрофHousContсобеНатаМаркXIIIГригнеофZoneТимоcredМиширецеZoneMinkRobe
педидостКироAudiсколтемнSCARCineWadeEyeTJohnBookрабоBeflстил1525ЖураРоссARAGпатихорогастjazz
МаксКитаязыктемаGeorWarhпазлStatJeweJoviМантBorkWinxMexxфрукЛитРАудиоптиЛитРЛитРEmilЛитРЛитР
LassКоврПиреЗамкстибДераHermпублПорфписадебюГурчSmarRhytтеатавтоUlriловкстенSleeCarmFunkколл
беднEnglViviКубаСереавтоDeepюрисоктязнанknowНянкЧернПобеCocaHarlСтупКуляCherЗиниМигаAudiAudi
AudiпазлCathIntrminuСодерисоДьячГалаКартиспрчетвКнязtuchkasМаноГрец
Sun Feb 08, 2026 9:42 pm