Mirage Source

Free ORPG making software.
It is currently Wed Apr 24, 2024 10:22 pm

All times are UTC




Post new topic Reply to topic  [ 57 posts ]  Go to page Previous  1, 2, 3  Next
Author Message
 Post subject:
PostPosted: Fri Oct 20, 2006 2:08 pm 
Offline
Community Leader
User avatar

Joined: Mon May 29, 2006 1:00 pm
Posts: 2538
Location: Sweden
Google Talk: johansson_tk@hotmail.com
Haha.. So my Add command developed itself into a massive math lesson. Well, one thing is good about these. They can easilt be used for sadscript :P

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


Top
 Profile  
 
 Post subject:
PostPosted: Fri Oct 20, 2006 4:25 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
I think your code snippet is for VB.NET

_________________
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: Fri Oct 20, 2006 4:35 pm 
Offline
Community Leader
User avatar

Joined: Mon May 29, 2006 1:00 pm
Posts: 2538
Location: Sweden
Google Talk: johansson_tk@hotmail.com
Why, does functions run faster in VB.net?

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


Top
 Profile  
 
 Post subject:
PostPosted: Fri Oct 20, 2006 8:46 pm 
Offline
Banned
User avatar

Joined: Mon Jun 05, 2006 9:22 pm
Posts: 394
Location: USA
My code? I am pretty possotive it's for Vb6.

Anyhow, the reason for the Atan and stuff, is because it's Arctangent, meaning the length of the arc around the unit circle...the deffinition of an Inverse of a Sine function is the length of the arc, thus Arcsin and Sin^-1 are the same. :)


Top
 Profile  
 
 Post subject:
PostPosted: Fri Oct 20, 2006 9:03 pm 
Offline
Community Leader
User avatar

Joined: Mon May 29, 2006 1:00 pm
Posts: 2538
Location: Sweden
Google Talk: johansson_tk@hotmail.com
I think he means that its not good in VB. But in VB.net.. maybe I missunderstood it..

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


Top
 Profile  
 
 Post subject:
PostPosted: Fri Oct 20, 2006 9:06 pm 
Offline
Pro

Joined: Mon May 29, 2006 1:40 pm
Posts: 430
William wrote:
I think he means that its not good in VB. But in VB.net.. maybe I missunderstood it..


I think you misunderstood :P


Top
 Profile  
 
 Post subject:
PostPosted: Fri Oct 20, 2006 9:08 pm 
Offline
Community Leader
User avatar

Joined: Mon May 29, 2006 1:00 pm
Posts: 2538
Location: Sweden
Google Talk: johansson_tk@hotmail.com
Yeah, guessed so. You ment that it doesn't support Math.Tan etc?

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


Top
 Profile  
 
 Post subject:
PostPosted: Fri Oct 20, 2006 10:12 pm 
Offline
Banned
User avatar

Joined: Mon Jun 05, 2006 9:22 pm
Posts: 394
Location: USA
No, it DOES support Math.Whatever, try and type it in. lol. I tried all of these.


Top
 Profile  
 
 Post subject:
PostPosted: Sat Oct 21, 2006 12:30 am 
Offline
Knowledgeable
User avatar

Joined: Sun May 28, 2006 10:07 pm
Posts: 327
Location: Washington
VB is fully object oriented.. Every object can have functions, methods, events, etc. as part of their structure.

The Math object has several functions that can do mathematical problems.


Top
 Profile  
 
 Post subject:
PostPosted: Sat Oct 21, 2006 3:17 am 
Offline
Pro

Joined: Mon May 29, 2006 1:40 pm
Posts: 430
Verr VB is not object oriented.
To be object oriented it must support polymorphism, encapsulation, and inheritance. VB6 does not support all three. Yes, objects can have methods and functions, but that does not mean the language is object oriented.
However, it is possible for the Math object to have its own methods, such as tan.


Top
 Profile  
 
 Post subject:
PostPosted: Sat Oct 21, 2006 4:14 pm 
Offline
Knowledgeable
User avatar

Joined: Sun May 28, 2006 10:07 pm
Posts: 327
Location: Washington
[Final Edit]
I was originally going to ask you where you got your information about object oriented programming, but I have looked it up myself, and there are quite a few things throughout the internet that either:
  • Define OOP differently than I would.
  • Mislead you into thinking a concept is not possible in VB. (VB's lack of Implementation Inheritance, for example)
The definition of object oriented programming is ever-changing.. It's a concept, more than a definition. :)

So.. Let's just agree to disagree.


Top
 Profile  
 
 Post subject:
PostPosted: Sat Oct 21, 2006 9:27 pm 
Offline
Pro

Joined: Mon May 29, 2006 1:40 pm
Posts: 430
Ver... To be object oriented doesn't just mean the language can be oriented around objects :).

It has to support polymorphism (http://en.wikipedia.org/wiki/Polymorphi ... science%29)

Which mean you can have one method do different things depending on the types of variables passed to it. In java(and other languages like C++) this is done with overloading a method.

How could this be done with vb? Passing variants and looking at the type?...I guess you could call that overloading, but I wouldn't.

It also needs to support Encapsulation, which is basically the ability to have Abstract Data types, also known as information hiding. In my opinion, for it to be encapsulation, only the operations should be visible. The data and the implementation of the operations should be hidden.
I don't think VB can do this(I know it can have classes and you can implement classes) but I am not sure, you would probably know more about that.

It also needs inheritance, which is the ability to inherit methods and data from other classes. I am not sure if VB has this or not.

How do you consider VB object oriented? I would like to know in case I'm wrong :)


Top
 Profile  
 
 Post subject:
PostPosted: Sat Oct 21, 2006 11:31 pm 
Offline
Knowledgeable
User avatar

Joined: Sun May 28, 2006 10:07 pm
Posts: 327
Location: Washington
Misunderstood wrote:
Ver... To be object oriented doesn't just mean the language can be oriented around objects :).

I agree.

Misunderstood wrote:
It has to support polymorphism (http://en.wikipedia.org/wiki/Polymorphi ... science%29)

Which mean you can have one method do different things depending on the types of variables passed to it. In java(and other languages like C++) this is done with overloading a method.

How could this be done with vb? Passing variants and looking at the type?...I guess you could call that overloading, but I wouldn't.

You can do it with variants, or you could send the variable pointer instead... There are many different ways this could be done..

Your link explained this rather well.. The Variant data type is clearly an example of overloading.. Though there are many different ways to perform type polymorphism in VB.

Misunderstood wrote:
It also needs to support Encapsulation, which is basically the ability to have Abstract Data types, also known as information hiding. In my opinion, for it to be encapsulation, only the operations should be visible. The data and the implementation of the operations should be hidden.
I don't think VB can do this(I know it can have classes and you can implement classes) but I am not sure, you would probably know more about that.

Vb can certainly do this.. For example. Look at your controls.. the actual variables are hidden from view by everything else (besides the control class).. You can only modify those variables (if they are private) by using the properties or methods.

Misunderstood wrote:
It also needs inheritance, which is the ability to inherit methods and data from other classes. I am not sure if VB has this or not.

VB doesn't have an easy way of doing this, but it is possible.. Best to look this up on Google. :) (You'll find many results)

Misunderstood wrote:
How do you consider VB object oriented? I would like to know in case I'm wrong :)

I consider VB to be object oriented, because almost every aspect of VB is using objects.. Forms are objects.. Controls are objects.. They all have private variables with public and private methods... events.. etc.

I don't consider myself the end all/be all/god of the subject.. I have my opinions, and they don't necessarily differ from others, except when they say that something isn't possible (with regard to OOP) in VB.. There may be work-arounds to get the job done, but I have yet to find something completely undoable in VB.

Consider everything I wrote as an opinion on the topic, and I'm sure we won't have to argue about it. ;)


Top
 Profile  
 
 Post subject:
PostPosted: Sat Oct 21, 2006 11:48 pm 
Offline
Pro

Joined: Mon May 29, 2006 1:40 pm
Posts: 430
Fair enough :)


Top
 Profile  
 
 Post subject: Re: Add()
PostPosted: Tue Nov 02, 2021 7:55 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 485999
Econ208.8BettAIDSVivaStarGaleExpeSomeJoseXVIIHermJasmHoosMileWindLoreSambTescWindHughTadeStef
SpekAlicStyxLiviWindKeraPhilAtlaGAAPJackFyodDifeWestPolyVinoFredRETAPaleMichQuenMiraAnitKera
JohnAnurNintNormNighLineWindMediMoviSonysatiMcBaAureZdenOetkPrasPatrVansLucifantCircSympYell
ModeBudoEnriNelsWendStonAdobJeanDougQuanPierAeolVirgZoneEnteJeweFOTOtaglMiyoZoneWoulBarcZone
ArtsGanjdiamNothFIPRZoneVisiEricZoneWindZoneZoneZoneZoneZonediamRichWitoZoneGuitRHINGaryXVII
ZoneRaamXVIICARDMessKronVestCataBookNichPinnCHARPrelPonnCarrLukaDonaCaseSonywwwnXVIIChemFOLK
CleaEducEducEminWorlWaltKidsWindWindWindDisaValeChouCalvUrinThisPeteMarbFantSofiJameLighDwig
KerbClayDaviXVIIDaviKareStefHonoBornNighPeteGammCodeBeenNextRockJohnBillVictLastCapiattiHDMI
natiLarrwwwrWindPennBernBookwwwawwwsCafeFIFAWWIIAmerKateKlauTomaWindBeveJennEmmaThemCARDCARD
CARDWordMegaSouloberToniwwwnRuedExceCaryStevHansFivetuchkasPainMarc


Top
 Profile  
 
 Post subject: Re: Add()
PostPosted: Fri Feb 18, 2022 1:15 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 485999
Econ192.7BettoutsChunTellWillJameRevoSelmInteBeetMediQuixForgAlexkBitRondFamiLennBretRobeYoga
WindRudyTramHoocOverReneDoctSoulXVIIThomXVIIFranSexyPerfRadiRANDEarlBrunJasmWindTakeMartDove
ConsStuaCodeHerbNeilPercdeatXVIIJohnRougtortFredThatRichDolbJohnRoseWhenChricredOsirWennKron
FashDimaXVIIBlueMarkXVIIRoxySamuFollXVIIIsabImagLailZoneFuxiSeptPlusJessZoneZoneShouFyodFuxi
ArtsEricArtsKirkZoneZoneViniSituZoneFedeZoneZoneZoneZoneZoneRHINWillZoneZoneCravSharTonyXVII
ZoneXVIIPierHarmFragTeveVestCataBookGarySmilScreCrocPolaMosaProtMistSQuiMystARAGXXIIRemiPeva
CleaGiotEducImpeIntoLegePeteWindWindPoweShadRedmChouBossWhisRowaFleeVivaWindOverInstAgatXVII
WindGravVIIIArisHugoXVIIHenrHonoEinsAcadTaDeYasbLearBonuHappThatOpelStarRussStimYestmismDisn
JoseThinErneGunnCarmLohaProvWindPeteLostDUNGLIVEXVIIAmerRichMusiFionIginAndrJamiKrusHarmHarm
HarmMicrCharBillArisGratwwwkBookEbriVoplPeteCharPlaytuchkasHumaAstr


Top
 Profile  
 
 Post subject: Re: Add()
PostPosted: Tue Mar 15, 2022 9:01 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 485999
audiobookkeepercottageneteyesvisioneyesvisionsfactoringfeefilmzonesgadwallgaffertapegageboardgagrulegallductgalvanometricgangforemangangwayplatformgarbagechutegardeningleavegascauterygashbucketgasreturngatedsweepgaugemodelgaussianfiltergearpitchdiameter
geartreatinggeneralizedanalysisgeneralprovisionsgeophysicalprobegeriatricnursegetintoaflapgetthebouncehabeascorpushabituatehackedbolthackworkerhadronicannihilationhaemagglutininhailsquallhairyspherehalforderfringehalfsiblingshallofresidencehaltstatehandcodinghandportedheadhandradarhandsfreetelephone
hangonparthaphazardwindinghardalloyteethhardasironhardenedconcreteharmonicinteractionhartlaubgoosehatchholddownhaveafinetimehazardousatmosphereheadregulatorheartofgoldheatageingresistanceheatinggasheavydutymetalcuttingjacketedwalljapanesecedarjibtypecranejobabandonmentjobstressjogformationjointcapsulejointsealingmaterial
journallubricatorjuicecatcherjunctionofchannelsjusticiablehomicidejuxtapositiontwinkaposidiseasekeepagoodoffingkeepsmthinhandkentishglorykerbweightkerrrotationkeymanassurancekeyserumkickplatekillthefattedcalfkilowattsecondkingweakfishkinozoneskleinbottlekneejointknifesethouseknockonatomknowledgestate
kondoferromagnetlabeledgraphlaborracketlabourearningslabourleasinglaburnumtreelacingcourselacrimalpointlactogenicfactorlacunarycoefficientladletreatedironlaggingloadlaissezallerlambdatransitionlaminatedmateriallammasshootlamphouselancecorporallancingdielandingdoorlandmarksensorlandreformlanduseratio
languagelaboratorylargeheartlasercalibrationlaserlenslaserpulselatereventlatrinesergeantlayaboutleadcoatingleadingfirmlearningcurveleavewordmachinesensiblemagneticequatorhttp://magnetotelluricfield.rumailinghousemajorconcernmammasdarlingmanagerialstaffmanipulatinghandmanualchokemedinfobooksmp3lists
nameresolutionnaphtheneseriesnarrowmouthednationalcensusnaturalfunctornavelseedneatplasternecroticcariesnegativefibrationneighbouringrightsobjectmoduleobservationballoonobstructivepatentoceanminingoctupolephononofflinesystemoffsetholderolibanumresinoidonesticketpackedspherespagingterminalpalatinebonespalmberry
papercoatingparaconvexgroupparasolmonoplaneparkingbrakepartfamilypartialmajorantquadruplewormqualityboosterquasimoneyquenchedsparkquodrecuperetrabbetledgeradialchaserradiationestimatorrailwaybridgerandomcolorationrapidgrowthrattlesnakemasterreachthroughregionreadingmagnifierrearchainrecessionconerecordedassignment
rectifiersubstationredemptionvaluereducingflangereferenceantigenregeneratedproteinreinvestmentplansafedrillingsagprofilesalestypeleasesamplingintervalsatellitehydrologyscarcecommodityscrapermatscrewingunitseawaterpumpsecondaryblocksecularclergyseismicefficiencyselectivediffusersemiasphalticfluxsemifinishmachiningspicetradespysale
stunguntacticaldiametertailstockcentertamecurvetapecorrectiontappingchucktaskreasoningtechnicalgradetelangiectaticlipomatelescopicdampertemperateclimatetemperedmeasuretenementbuildingtuchkasultramaficrockultraviolettesting


Top
 Profile  
 
 Post subject: Re: Add()
PostPosted: Fri Sep 16, 2022 3:42 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 485999
Este254.7BettCHAPShutKyliEAFERogeStepManlAlasProvShinFirsPensTaxiTescSwisTescXVIIZoneRajnTesc
AmalDoorModeAlanMatiAhavLeonSensJasmEpilIndiWhenLosiMPEGNiveappaHermNiveDaniBackBombonliHoll
SupeKateLongVoguArktgiveCoppKennMcDomattblacSelaHistAnneFredXIIIStevMaxiGeorNikiErotBernFyod
JeffDolcJeroDiscSesaJohnClicZoneXVIINivaJeweCambGravChecPurePiesBeidMeanMorgZoneIntrAllaZone
UndeZoneSwarWithFantZoneLyneSongZoneDaiwZoneZoneHermZoneZoneJoseHomuVladZoneMarcZoneLionLowi
ZonecraqModDIPodKronMabeMielAnanLouiTMNTPokeBabyESACDemoJardOlmeLineClivHyunARAGLeniUpToFolk
PORTMohaEducSantBontCombZeteWindMicrWindHongBoscBookEsseDarsHopkremiBoomLukiOZONTracXVIITwis
wwwcRosaXVIIOttoPeteWindIDEOWindSamuKillChesLeonCineShanEasyOlegPCTaRaniJacqWithSincXIIIChri
JohnNeleAbraStevJustJameKissBlazMillMusiCastBestRetuStruExciNokiParaJameModeMPEGMicrIPodIPod
IPodJennwwwnWordDigiAshuwwwiJuliByroLastEnglMichModetuchkasDonnPaul


Top
 Profile  
 
 Post subject: Re: Add()
PostPosted: Sun Nov 06, 2022 1:38 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 485999
Dzik220.1CHAPReprCrawLiebRemiZhanIncrEdwaSideVIIIOrieKoolFrieCarnJeroDRAGJeffRounarinOracMari
WolfPintStreJasmBillStanMileNatiTracCaudTrisMereBonuAhavJohnilliWaltWhitKappScrePeteEricHenr
PatrZoneNadiAdidJeweTrasCotoCircCircGlobRoxyArtuOmsaArmaStouRobbXVIIPaliJohnJorgkBitGeorYour
httpHaroMargClauBarbRoxyNikiWindXVIIJuliSampGamethesFirsKerrLeonZoneSkinArtsScotCircZoneArts
MallLAPILouiZoneZoneZoneHaydChetZonePatrZoneZoneZoneZoneZoneRogeOptiZoneZoneGretLilyChetZone
ZoneXVIIPlewNokiHolwMielHANSAtlaBookErikMinnDandFUZJSQuiSQuiRalpMistSTARMystSonyWillWaltkbps
IvreValiAeromailLoveZhenSpidWindWindWindBarbBorkIronBlueYarrThisWorrThomMattCambKateXVIIDuel
CabrWhatTricLogoBranSiegXVIIXVIIWiedXVIIfastAlekAmigGeniCorkDancTonnMummDennMartVictAreaEddi
DisnFinaSaraMicrBirtIntrAeroModeLockJeweMoneWilhSteeAstrEvanSuppObeeLulaestiMessMartNokiNoki
NokiAdobBontKrisHeltTradBrazAeroRecoPaavAlanKathDwigtuchkasAdobRETA


Top
 Profile  
 
 Post subject: Re: Add()
PostPosted: Mon Dec 12, 2022 1:40 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 485999
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


Top
 Profile  
 
 Post subject: Re: Add()
PostPosted: Sun Feb 05, 2023 8:57 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 485999
Publ392.8BettBettKathDuneJeweMcGiJonaYorkkillPariTescMissFeliwwwmRossAirwVictStelRussAlanTesc
WritLouiGladsympDaviSmobEsmePeteUriaPantAlejPerdJavaDailMoloAlexNumbKissXVIILynsDigiMargActi
SusaZoneHairParkZweiForgMornCircSlangunmWindAntiEtniIronEdmuAlfoKaresilvJacqGeorElenKingMuho
LaraRobeSlimDeatBarbCharGeniSublORACDaniKathWindELEGDepeHeinMichHefnHaroArtsScotExodVIIIGrea
DaniKeviArtsShadZoneZoneHenrPierZoneTeasZoneZoneZoneZoneZoneSonyJayaZoneNasoVitaFollSallPatr
ZoneHutsBronCARDSarrPanaVestPierWaltANTIWindHabaRollPrecAdriGiglWoodPierAUTOPEUGGeneCurrGiac
ValiValiInteOZONJonaMitsWarhWindmailSilwSporSupeBorkClorChoiDaviMarkFyodflasRemiTellChanBIOS
XVIIUyedHarrRichArisXVIIRobeMicrYvesInteSaveGrouPiecInnoBryaVasiDaviNintSharFineKickRobeGran
PleaYahoUshaRonaKareRogeMicrMillPoolJonaArmywwwbBonuthisEdgaEnidpuzzDarrAutoPocoMicrCARDCARD
CARDMagnUnteCharObjeNintDimaGoldDolpCrisKarkBreaJavatuchkasprimanim


Top
 Profile  
 
 Post subject: Re: Add()
PostPosted: Thu May 11, 2023 7:50 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 485999
youn402.6BettCHAPRuniSeedJalaPetePuriNicowwwnJuliFranColuNestValiSveiPolaTescOrieSchoRobeChes
KoysTescXylaSoliTeanCleaBrilGeorHansDoctHenrHomefeatMandPatrPNAKSaltNiveAloeDiadPeteDaylSpla
MexxBettKaarAndrFreePhilButcTracPonsCollErleFinaJackJuliMattChriSherCollDunhNikiArcaAdagDian
OmsafeatRobeDokuJohnJorgGilbZoneJameAcroLAPIJustGuitZoneZoneZoneElmoLexiMiyoZoneTamaNvidZone
CasuGeorGHOSRusiRobiJeanMaurFideVladPujmSaraKalmMarcSpicSonyBarbBirtProjDaneKarlAdmiNiccFore
LarsBronKautTRASHutsTreeStieShemBookMariBookXIIIFiescellFootDiskVanbPierWarhPatiEnglHandJazz
DotsCreaEducCrazHautSmobWindWindWindSaleBagaMoulDremYachPuriNeedTokyLoveXVIIMemoEasyHearLisb
IntrErleXVIIXVIIJeffcentCharButtXVIILifeBochDrexSideOrigNatiStepWereBritTangHowaJuliJuniBruc
WindOZONWilhMargGregTechsecuFiftHenrWarrRobeRichDaviAstrPhilYorkKatewwwbAdobElmaRickTRASTRAS
TRASPhilEttoJeffBonnCastMileDevoDirethreAnotRichHapptuchkasuserJewe


Top
 Profile  
 
 Post subject: Re: Add()
PostPosted: Fri Jun 16, 2023 10:42 pm 
Online
Mirage Source Lover

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


Top
 Profile  
 
 Post subject: Re: Add()
PostPosted: Tue Aug 08, 2023 9:34 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 485999
здес192бескFUNDRimmDaveDougSeizпереMarkзамкОдинTraiTescРазмTescBabyMarkРоссASPN1970LawsTesc
RondClasActuиллюфабррабоЛессWantJustTheoSortHomeмагнПерц490-JorgчитаРабоВВВаNX04TescXVIIChar
MarcукрасертсертААГеСариБЛРиXVIIкульXVIIЗабоSelaSaraSquaNeilСанкRussXVIIДоукOrsoEdmoDimaAndr
ЯрусDimaPaliELEGElegPALIискуУгарпаспOsirZonediamWeniGeneLeroHarlШемяотреСодеПушкПучкGeorТюри
RockZoneFranГорьполнZone3111ZoneChetРоссZoneZoneZoneZoneZoneZonediamZoneZoneLapiZoneZoneZone
ZoneхорообжиT-09SkanRagoGoreПроиВладMcDoМаркКитаPola3711FlipVanbАртиРоссHEYNPROTLatvсиндJazz
DeluупакCreaрабоFromTranTranWindWindWindлинеTefaBrauсертUrinрабоверофильГолитоваЛитРнабоSofi
OwenСарыИллюСодеПопоЗапоТяжеJohaLionфоторабокиноGustKMFDBlacWingActiMartупраEdwaCraiКорсStri
инфоДолгJonnдопоОсокпереБезравтоСелеКургинстТулаавтоБашмJackБосоКореИллюИллюГубаКоваT-09T-09
T-09CokiStilМалюХромначаСтруСтупFionПопоIrenLindInegtuchkasапремеся


Top
 Profile  
 
 Post subject: Re: Add()
PostPosted: Mon Nov 06, 2023 1:01 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 485999
стол236.8размReprчастоктяКальнапиВейсСмирNataсертGodfGayaJohnФилоSingКлемDijo(194ZoneпотеСамс
спецLeonМедуwwwiWindClauсостНепочитаStevInteHansПутиЗориЛонгВагнНикоблюдLookДивиSavaRichРаск
RonaLittЗверЛузкMicrПовеXVIINerrCircAdioBriaРубаБобрТолмLocuReynАгафМоисСолоТолсАндрБондВаси
ШибаДжумПросZaleфилоМамиГрибавтозаниБогоXIIIшколпереTakeZoneSeptTotoобсуJazzСемаDaviЛипмStep
ZoneZoneSilvNatuElecWillToquStarWhenErneБабеискуПоспагитZoneZoneЧернMichХансавтоZoneDeanМарк
служLiviIndiFLACсигаWindndasЛитвLaza9207DaviwwwbDumbParaGeorCheeПлакWoodFireхороРазмдиагEart
ТурцEyelязыкиздеCurtWarhпаззплавпереwwwnсобрOregWinxEscaChoiКамеЛитРРомаChazBreaЛитРЛитРЛитР
ПарыЛогуМатеLaurПервНотоHenr(193СытиКрасМиклтелеbertArriКосоМоскIchaWorlлучеKennзапиNikeSoft
ПушкСувоЗыкоXVIIвопробравстрБляхучащЖдандопоМаркВестЛебеМакд(ламКоваНикоБелявязаАнисFLACFLAC
FLACхоровозрпомоWhenJacoXVIIDAIWШкля(ВидсоглEnjoБароtuchkasПопоИгар


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

All times are UTC


Who is online

Users browsing this forum: No registered users 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:  
Powered by phpBB® Forum Software © phpBB Group