Mirage Source

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

All times are UTC




Post new topic Reply to topic  [ 40 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: Packet Tutorial
PostPosted: Wed Aug 23, 2006 11:53 am 
Offline
Community Leader
User avatar

Joined: Mon May 29, 2006 1:00 pm
Posts: 2538
Location: Sweden
Google Talk: johansson_tk@hotmail.com
Introduction
I will explain the following:
- Sending packets from the client to server, and how to recieve them.
- Sending packets from server to client, and how to recieve them.

This is for http://www.miragesource.com use. Since Elysium Source uses Select Case for their packet system which is faster. But the packet is still the same.

Client to Server
This is how the code will look like finished (so to use it, just create a command button, and place this code in it):
Code:
Dim Packet As String
Packet = "GiveMeMyName" & SEP_CHAR & END_CHAR
Call SendData(Packet)


Now in the server, open modHandleData or search for Sub HandleData.
And just below:
Code:
    ' Handle Data
    Parse = Split(Data, SEP_CHAR)

Add:
Code:
    ' ::::::::::::::::::::::::::::::::::
    ' :: Give the player his name  ::
    ' ::::::::::::::::::::::::::::::::::
    If LCase(Parse(0)) = "GiveMeMyName" Then
            Call PlayerMsg(Index, "Your name is: " & GetPlayerName(index), 1)
        Exit Sub
    End If


So now I will explain how that actually works. In the client we had:
Dim Packet As String ' This defines the variable Packet as a "word".
Packet = "GiveMeMyName" & SEP_CHAR & END_CHAR ' Here it gives the variable the correct memory, you always need to have a name of the packet, here that is: "GiveMeMyName". I will go through SEP and END later.
Call SendData(Packet) ' Here we sends it to the server.

So now, we made a easy packet. But what if you want to send variables in the packet, then it's time to learn about SEP_CHAR and END_CHAR.
SEP_CHAR: This is the thing that divides the packet up in pieces. It let's you have different variables between them. Like this:
Code:
Packet = "GiveMeMyName" & SEP_CHAR & "2" & SEP_CHAR & GetPlayerLevel(MyIndex) & SEP_CHAR & END_CHAR

If you study that, you can see how it works, you always have a SEP_CHAR after the packet name, and always between variables, and always before END_CHAR.
END_CHAR: This is the place that tells the code were the end of the packet is. You always use it in the end of the packet, as shown above.

But how do you recieve the variables that you send to the server?
You simply do this:
Code:
    ' ::::::::::::::::::::::::::::::::::
    ' :: Give the player his name  ::
    ' ::::::::::::::::::::::::::::::::::
    If LCase(Parse(0)) = "GiveMeMyName" Then
        i = Val(Parse(1)) ' This will make i = 2
        n = Val(Parse(2)) ' This will make n the players Level
            Call PlayerMsg(Index, "You are level: " & n & ", your special number is: " & i & ".", 1)
        Exit Sub
    End If

That wasn't hard if you go through the code above. Just remember this, in the above example I sent two numbers in the packet (2, and the players level). If you send for example "Bob". Then you will do this to:
Name = Parse(1) ' If it now was the first variable sent in the packet.

Server to Client

Under construction...

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


Top
 Profile  
 
 Post subject:
PostPosted: Wed Aug 23, 2006 12:06 pm 
Offline
Persistant Poster
User avatar

Joined: Thu Aug 17, 2006 5:27 pm
Posts: 866
Location: United Kingdom
Hail _/


Top
 Profile  
 
 Post subject:
PostPosted: Wed Aug 23, 2006 5:53 pm 
Offline
Community Leader
User avatar

Joined: Mon May 29, 2006 1:00 pm
Posts: 2538
Location: Sweden
Google Talk: johansson_tk@hotmail.com
Hehe, I wrote it for a member on my forum some time back.

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


Top
 Profile  
 
 Post subject:
PostPosted: Wed Aug 23, 2006 9:13 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
Select case and If statements are the same speed....

[Verrigan says so!]

_________________
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: Thu Aug 24, 2006 3:11 pm 
Offline
Community Leader
User avatar

Joined: Mon May 29, 2006 1:00 pm
Posts: 2538
Location: Sweden
Google Talk: johansson_tk@hotmail.com
Hmm, well did I say anything about cases in the tutorial? well anyway..

.. didn't know that, spent like 1 hour making them into cases in Phoenix and my game K2h :P

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


Top
 Profile  
 
 Post subject:
PostPosted: Thu Aug 24, 2006 4:12 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
Quote:
This is for http://www.miragesource.com use. Since Elysium Source uses Select Case for their packet system which is faster. But the packet is still the same.


You did too!

Why not make every packet into a different sub, that IS faster!

_________________
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: Thu Aug 24, 2006 4:45 pm 
Offline
Pro

Joined: Mon May 29, 2006 2:58 pm
Posts: 370
the sub thing only works well if you amster AddressOf and and such like the byte buffer, otherwise, its pointless because you still do the if statements.[/code]

_________________
Image


Top
 Profile  
 
 Post subject:
PostPosted: Thu Aug 24, 2006 5: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
Dave wrote:
Quote:
This is for http://www.miragesource.com use. Since Elysium Source uses Select Case for their packet system which is faster. But the packet is still the same.


You did too!

Why not make every packet into a different sub, that IS faster!

Ohh hehe.. well it was some time ago I wrote it so didn't remember. But thanks for telling me that if and case has the same speed.

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


Top
 Profile  
 
 Post subject:
PostPosted: Thu Aug 24, 2006 10:55 pm 
Offline
Knowledgeable
User avatar

Joined: Mon Jul 24, 2006 2:04 pm
Posts: 339
grimsk8ter11 wrote:
the sub thing only works well if you amster AddressOf and and such like the byte buffer, otherwise, its pointless because you still do the if statements.[/code]


Actually, I dont believe it is. I have not in-depth looked into how Select Case works, but I believe it takes the argument and compairs it to multiple scenerios without calculating each one. Though since you're just using "If String(0) = 'MyString' Then", not sure - I can definately tell you any improvement would be very insignificant.

If anything, I reccomend breaking it up into select case statements and then moving them to seperate subs just for organization - makes it a hell of a lot easier to find what you need without digging through 10000 lines of one module. :wink:

_________________
NetGore Free Open Source MMORPG Maker


Top
 Profile  
 
 Post subject:
PostPosted: Fri Aug 25, 2006 2:21 am 
Offline
Pro

Joined: Mon May 29, 2006 2:58 pm
Posts: 370
wouldnt work because unless yous tored the packet globally, youd ahve to pass it on.

_________________
Image


Top
 Profile  
 
 Post subject:
PostPosted: Fri Aug 25, 2006 4:16 am 
Offline
Pro

Joined: Mon May 29, 2006 1:40 pm
Posts: 430
I would think select case would be slightly faster.
It always knows the thing being compared with a select case, but with a lot of ifs and elses theres more for the comp to look at. It doesnt know whats being compared till it reads the whole things, select cases know the first thing being compared.

Of course I have no idea if that makes sense to other or if its even true xD.


Top
 Profile  
 
 Post subject:
PostPosted: Fri Aug 25, 2006 4:59 am 
Offline
Knowledgeable
User avatar

Joined: Mon Jul 24, 2006 2:04 pm
Posts: 339
grimsk8ter11 wrote:
wouldnt work because unless yous tored the packet globally, youd ahve to pass it on.


Not exactly - you can handle it in the same module it is in now, then just pass off the packet information as a parameter.

_________________
NetGore Free Open Source MMORPG Maker


Top
 Profile  
 
 Post subject:
PostPosted: Sat Aug 26, 2006 2:11 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
Or you can CallByAddress the function, it's very fast :)

_________________
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: Sat Aug 26, 2006 7:07 am 
Offline
Knowledgeable
User avatar

Joined: Mon Jul 24, 2006 2:04 pm
Posts: 339
Interesting, Dave. I will look that up. Thanks! :D

_________________
NetGore Free Open Source MMORPG Maker


Top
 Profile  
 
 Post subject:
PostPosted: Sat Aug 26, 2006 11:15 am 
Offline
Newbie

Joined: Mon Aug 21, 2006 9:16 am
Posts: 2
Ermm i Practice this in a note pad..

CLIENT::
Packet As String
Packet = "MYREALPACKET" & SEP_CHAR & "BOB" & SEP_CHAR & END CHAR
SendData(Packet)
End Sub

SERVERSIDE::
If LCase(Parse(0)) = "myrealpacket" Then
i = Val(Parse(1)) ' i equals BOB
Exit Sub
End If

Is It Right?

Edit::
another one i did,
Packet As String
Packet = "MYNAME" & SEP_CHAR & GetPlayerName(MyIndex) & SEP_CHAR & END_CHAR
SendData(Packet)

If LCase(Parse(0)) = "myname" Then
i = Val(Parse(1)) ' i equals the players name
Exit Sub
End If

I hope theyre right ^_^


Top
 Profile  
 
 Post subject:
PostPosted: Sat Aug 26, 2006 11:46 am 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
Nope. It won't.

Val(w/e) is used to get a numerical value from a string. This is why we use it in modHandleData, because we send packet's as strings.

If you are sending a string of data (ie. someone's name) then you do not add a 'val'. It simply stay's as 'parse(1)'.

Also, every packet you create should have this:

If UBound(Parse) <> (amount of SEP_CHAR's found in the packet)
Call HackingAttempt
Exit sub
end if

Otherwise your server can easily be crashed.

Yes, this was created by Shannara, but he posted it wrong. There is actually another Parse between the last SEP_CHAR and the END_CHAR which you need to take into account.

~Kite

_________________
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:
PostPosted: Sat Aug 26, 2006 2:47 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
Dont worry about that check, just check for an error and if it errors, then call a hacking attempt on the client.

_________________
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: Sat Aug 26, 2006 7:10 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
I guess.. but what happens if its a programming error and then everyone gets kicked from the game and all hell breaks loose!!!!11

~Kite

_________________
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:
PostPosted: Thu Dec 21, 2006 11:49 pm 
Offline
Knowledgeable

Joined: Fri Aug 25, 2006 6:40 pm
Posts: 132
william did you ever finish the server side to this tut?

if you did could you plz add it.

Thanx lordgivemick

_________________
http://spirea.flphost.com come and join today i got flash games lol.


Top
 Profile  
 
 Post subject:
PostPosted: Fri Dec 22, 2006 2:53 am 
Offline
Community Leader
User avatar

Joined: Mon May 29, 2006 1:00 pm
Posts: 2538
Location: Sweden
Google Talk: johansson_tk@hotmail.com
It will be done in a few days,

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


Top
 Profile  
 
 Post subject:
PostPosted: Fri Dec 22, 2006 7:26 pm 
Offline
Knowledgeable

Joined: Fri Aug 25, 2006 6:40 pm
Posts: 132
ok thanx william.

_________________
http://spirea.flphost.com come and join today i got flash games lol.


Top
 Profile  
 
 Post subject: Re: Packet Tutorial
PostPosted: Tue Nov 02, 2021 5:10 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489637
Noss227.5CHAPliveSanzFirerderHowafeatErniTheyCarlSendHabbArthJambJohnWindCaroRespZsolOrsoSter
RoseKeepIronZoltJoseWindRaptWilhJeweCaudGiovRichMicrHousKrisBriaRemiFyodStevhookSongLiliXVII
PatrZoneWorkWindAlteLycrFighAltaLowlSnapedalclocTommAcidHonoFredHomoFeliLouiVIIIRodrKingDeee
VoguNgaiNapoWillAlexCircClicWindAnatMainShirWindPeteAnimKnutRobeAlanArawArtsXVIIFallZoneCrai
bodhZoneMartZoneZoneZoneTheuVFBTZoneTranZoneZoneZoneZoneZonePaulNielZoneZoneVitaJeunZoneZone
ZonemajoFriePOWECharWhirHANSKospBookHansRuyaToloBoutPolaPoweWoodOlmeHalfHeliMazdToddUndeFolk
wwwaVillEditThisViolNubycasuAdobWindWindGiocTefaChouAntoRoyaWebMLindPeteWildRewiElleWilhHero
FyodSancNatuXVIIRollXVIINicoWillGlotEminWaltRobePianFlowAlekIntrDownMircTaxmRussCharJacqDolb
JeweForeKearTerrPornSheiAstrClaudeatGoldMillQueeXVIILymaMastSpenThisJamiBeatSeveMoirPOWEPOWE
POWEAdobXIIIMillTatuXVIIKeitSelmwwwdWindWilhThisDeretuchkasWindNero


Top
 Profile  
 
 Post subject: Re: Packet Tutorial
PostPosted: Thu Feb 17, 2022 10:35 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489637
Sept209.23CHAPReprRamaQuelCafePietLoseFerzFlowSundWisaWillDyckMalmEdgaAlleHarrDancPeopNULLVeni
XVIIConcOxygJoshWhozTougRameEricExclPantCleaErghHopkGezaXVIIRudyGesiMariRequBeliGrimMickJorg
PatrZoneKaraUndeVoguVIIISisieBayCircFallNikiPactCotoIronJameAlexIrisSillOrsoAnneAlleBoriRadi
WindEdgaOkopEnhaGordSelaAttiWindFranGaryOrieBoatstylWildShirMariZoneCabiArtsJaneTraiZoneZone
ZoneZoneQuebZoneZoneZoneCamiChetZoneIsaoZoneZoneZoneZoneZoneJoelBrotZoneZoneElleKnowZoneZone
ZoneGESEHoteNokiRoseSamsSussAtlaWindJerrAlexMyMyBookBeflRenzMissMistSUBABlauKenwjustBergFolk
IremMERENDFEBlanLegeDrifModeWindStepMicrWinxDysoLighSergRoseThinGonnCryiMichJohnSandInteComa
AcadXVIILeonPierHoheKarlJackJackDoubProsWaltYevgSofiToyoRoseTangVoicSummFaitMichFistDeepJewe
MartAswaLawrRichPunkMarySabbCaveAlaswwwnLeftHansJohnTovenighMichfranUmbrEnglBetsJavaNokiNoki
NokiAdobVivaChicAldaCrazWildMusiBirtPowePaolStevBasstuchkasEnidKuni


Top
 Profile  
 
 Post subject: Re: Packet Tutorial
PostPosted: Tue Mar 15, 2022 2:38 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489637
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  
 
 Post subject: Re: Packet Tutorial
PostPosted: Fri Sep 16, 2022 12:55 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 489637
Econ156BettImagTimaVoluScarRomaVadiSupeMontRushTefaZingWillNotaShinEXPEHjarWhatLookDaviBret
ThemPunkLonaWestNeoMJewegirlJonaJuliKazuKlauWindLoveAntoAgenTacoDAXXTaftGeorTefaReflMarcNive
PaulDaviPatrFedeStevinerMassCircIndiFyodrockWillBonuXVIIJohnWillDumeAdaxMantXVIINikiSympKosi
SoftSamsShanMeliHenrOZONModoGeorSeneWindViraQuakModoReliArtsLionJuleHannArtsERZNDrawZoneSwar
ArtsThinSwarichiZoneZoneStewZoneZoneLiseZoneZoneZoneZoneMiyoOttoJackHappZoneIPhoIsaaZoneZone
ZoneBariKKOETechBoheRomaClimStieBookStarWondAlanFierLuxePETELabaDalvSQuiHeliMichJensSincIris
StanXIIITrefWINXPicoSpliHuntWindMoreMacrMoleTefaBoscPremMonAAlexJohnJavaAmorRigoEconJewePian
BritEdwaRobeSigmAlexCharXVIIAcadLighPeteBladYevgDolbLiveViewBorenaniXVIIChipXVIIComeVIIITrav
DisnCoulOgiereveJameElleMoscPoweFionTuttStopRollJohnCallLawrAllewwwaEdgaExtaSpotAlanTechTech
TechNURBJerrFarbTambLucyBrazWorkTireGiusClutTastAbantuchkasWindAstr


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

All times are UTC


Who is online

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