Mirage Source

Free ORPG making software.
It is currently Fri Mar 29, 2024 12:08 pm

All times are UTC




Post new topic Reply to topic  [ 27 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: Forget Spell Command
PostPosted: Thu Jun 01, 2006 8:42 pm 
Offline
Pro

Joined: Mon May 29, 2006 2:58 pm
Posts: 370
Difficulty: 1/5

In the server, open modHandleData.bas.
find this:
Code:
' :::::::::::::::::
' :: Cast packet ::
' :::::::::::::::::
If LCase(Parse(0)) = "cast" Then
' Spell slot
n = Val(Parse(1))

Call CastSpell(Index, n)

Exit Sub
End If


and underneath it add:
Code:
' :::::::::::::::::::::::::
' :: Forget spell packet ::
' :::::::::::::::::::::::::
If LCase(Parse(0)) = "forgetspell" Then
' Spell slot
n = CLng(Parse(1))

' Prevent subscript out of range
If n <= 0 Or n > MAX_PLAYER_SPELLS Then
HackingAttempt Index, "Invalid Spell Slot"
Exit Sub
End If

With Player(Index).Char(Player(Index).CharNum)
If .Spell(n) = 0 Then
PlayerMsg Index, "No spell here.", Red

Else
PlayerMsg Index, "You have forgotten the spell """ & Trim$(Spell(.Spell(n)).Name) & """", Green

.Spell(n) = 0
SendSpells Index
End If
End With

Exit Sub
End If


In the client, open frmMirage.
Add a label to picPlayerSpells, set it's name property to "lblForgetSpell", and set it's caption property to "Forget Spell".
Double-click it and add this code:
Code:
If Player(MyIndex).Spell(lstSpells.ListIndex + 1) > 0 Then
If GetTickCount > Player(MyIndex).AttackTimer + 1000 Then
If MsgBox("Are you sure you want to forget the spell """ & Trim$(Spell(Player(MyIndex).Spell(lstSpells.ListIn dex + 1)).Name) & """?", vbQuestion Or vbYesNo, "Forget Spell" = vbNo Then Exit Sub

SendData "forgetspell" & SEP_CHAR & lstSpells.ListIndex + 1 & SEP_CHAR & END_CHAR
picPlayerSpells.Visible = False
End If
Else
AddText "No spell here.", BrightRed
End If


All done.

Now you can click on the Forget Spell label to forget spells you don't want anymore, yay.

Quote:
Posted by EnigmaWave on Feb 6, 04


Top
 Profile  
 
 Post subject:
PostPosted: Wed Mar 21, 2007 10:43 pm 
Offline
Newbie

Joined: Wed Aug 30, 2006 6:47 am
Posts: 8
I seem to have a problem with the coding of this.
When I added in this line

Code:
If Player(MyIndex).Spell(lstSpells.ListIndex + 1) > 0 Then
If GetTickCount > Player(MyIndex).AttackTimer + 1000 Then
If MsgBox("Are you sure you want to forget the spell """ & Trim$(Spell(Player(MyIndex).Spell(lstSpells.ListIn dex + 1)).Name) & """?", vbQuestion Or vbYesNo, "Forget Spell" = vbNo Then Exit Sub

SendData "forgetspell" & SEP_CHAR & lstSpells.ListIndex + 1 & SEP_CHAR & END_CHAR
picPlayerSpells.Visible = False
End If
Else
AddText "No spell here.", BrightRed
End If


I get an error on this line

Code:
If MsgBox("Are you sure you want to forget the spell """ & Trim$(Spell(Player(MyIndex).Spell(lstSpells.ListIn dex + 1)).Name) & """?", vbQuestion Or vbYesNo, "Forget Spell" = vbNo Then Exit Sub


Could any one please tell me what is wrong?[/code]

_________________
I am Forsaken


Top
 Profile  
 
 Post subject:
PostPosted: Thu Mar 22, 2007 1:02 am 
Offline
Knowledgeable

Joined: Tue May 30, 2006 5:11 am
Posts: 156
Location: Australia
You are missing an End if.. Nest your code its really hard to work out whats with what..

Code:
If Player(MyIndex).Spell(lstSpells.ListIndex + 1) > 0 Then
    If GetTickCount > Player(MyIndex).AttackTimer + 1000 Then
        If MsgBox("Are you sure you want to forget the spell """ & Trim$(Spell(Player(MyIndex).Spell(lstSpells.ListIn dex + 1)).Name) & """?", vbQuestion Or vbYesNo, "Forget Spell" = vbNo Then Exit Sub

        SendData "forgetspell" & SEP_CHAR & lstSpells.ListIndex + 1 & SEP_CHAR & END_CHAR
        picPlayerSpells.Visible = False
    End If
Else
    AddText "No spell here.", BrightRed
End If


No wait.. you arent missing an End if.. I found that out when i nested it.. I have no idea whats wrong at the moment.. What error did you get mate?


Top
 Profile  
 
 Post subject:
PostPosted: Thu Mar 22, 2007 1:55 am 
Offline
Knowledgeable
User avatar

Joined: Sun May 28, 2006 10:07 pm
Posts: 327
Location: Washington
Quote:
If MsgBox("Are you sure you want to forget the spell """ & Trim$(Spell(Player(MyIndex).Spell(lstSpells.ListIn dex + 1)).Name) & """?", vbQuestion Or vbYesNo, "Forget Spell" = vbNo Then Exit Sub


Top
 Profile  
 
 Post subject:
PostPosted: Tue Mar 27, 2007 12:51 pm 
Offline
Regular
User avatar

Joined: Fri Mar 02, 2007 6:19 pm
Posts: 93
Location: Nonya
I'm getting a type mismatch on the msgbox. Any help?


Top
 Profile  
 
 Post subject:
PostPosted: Tue Mar 27, 2007 2:11 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
Braydok wrote:
I'm getting a type mismatch on the msgbox. Any help?


Verrigan just pointed it out! Cretin.

_________________
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: Tue Mar 27, 2007 8:50 pm 
Offline
Regular
User avatar

Joined: Fri Mar 02, 2007 6:19 pm
Posts: 93
Location: Nonya
Darn you, I did that, but I fixed it, no help to you.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Mar 27, 2007 11:05 pm 
Offline
Knowledgeable
User avatar

Joined: Sun May 28, 2006 10:07 pm
Posts: 327
Location: Washington
Did you not see the bold in my quote?

I thought it was fairly clear... And Robin was just pointing out how clear it was after you missed it, so no need to attack him.

If you had another error after fixing the bold, you should have said so... No need to be so disrespectful.. Just be more clear when asking for help.


Top
 Profile  
 
 Post subject:
PostPosted: Wed Mar 28, 2007 1:51 am 
Offline
Regular
User avatar

Joined: Fri Mar 02, 2007 6:19 pm
Posts: 93
Location: Nonya
good point, I'm sorry Robin, I have just been crabby cakes today. :(

I just deleted the part where it named the spell.


Top
 Profile  
 
 Post subject:
PostPosted: Wed Mar 28, 2007 8:59 am 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
No problem.

Did you manage to get it to work now?

_________________
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: Wed Mar 28, 2007 11:23 am 
Offline
Regular
User avatar

Joined: Fri Mar 02, 2007 6:19 pm
Posts: 93
Location: Nonya
Yes. Now it just says, "Are you sure that you want to forget this spell?" Without naming the spell. :)

~Braydok

_________________
Image


Top
 Profile  
 
 Post subject:
PostPosted: Tue Apr 10, 2007 2:40 am 
i did that fix Verrigan but im getting an error on 'Then' at end and it says..

Quote:
Expected: list separator or )


Any idea?


Top
  
 
 Post subject:
PostPosted: Tue Apr 10, 2007 3:52 am 
Offline
Persistant Poster
User avatar

Joined: Tue May 30, 2006 2:07 am
Posts: 836
Location: Nashville, Tennessee, USA
Google Talk: rs.ruggles@gmail.com
Add a ) somewhere, or remove a ( somewhere

_________________
I'm on Facebook! Google Plus My Youtube Channel My Steam Profile

Image


Top
 Profile  
 
 Post subject:
PostPosted: Tue Apr 10, 2007 3:29 pm 
Offline
Knowledgeable

Joined: Wed May 31, 2006 8:00 pm
Posts: 142
Sonire wrote:
Add a ) somewhere, or remove a ( somewhere


:lol: :lol: Love how simple the solutions to the problems being posted today are

_________________
xFire:- funkynut


Top
 Profile  
 
 Post subject:
PostPosted: Tue Apr 10, 2007 4:04 pm 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
funkynut wrote:
Sonire wrote:
Add a ) somewhere, or remove a ( somewhere


:lol: :lol: Love how simple the solutions to the problems being posted today are


That's because the problems are simple. So are the people who post them.

_________________
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: Tue Apr 10, 2007 6:16 pm 
Offline
Knowledgeable

Joined: Wed May 31, 2006 8:00 pm
Posts: 142
Robin wrote:
funkynut wrote:
Sonire wrote:
Add a ) somewhere, or remove a ( somewhere


:lol: :lol: Love how simple the solutions to the problems being posted today are


That's because the problems are simple. So are the people who post them.

I was trying to say that, just in a tactful way :D

_________________
xFire:- funkynut


Top
 Profile  
 
 Post subject: Re: Forget Spell Command
PostPosted: Tue Nov 02, 2021 3:45 am 
Offline
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456192
Anci169.2CHAPPERFAlanFREYSimoXVIIAlexDonaWindClusKoliCharJackPersErleMoreMillRunaRichWhenMoul
NageWindWithEtoiGreeFletJackCafeHergCamaShelManhJohnSplabossSmitArjuLifaVaniEverTescSlewArth
NiveXIIIGoodChriSieLKinsFlemDeniBlinAlmoMacbDellOnlyFromVIIIRoxyGurugunmSupeRajnDancAmarVisi
OrchCotothesBlacTricIlyastylAlexMagiELEGBusiXVIIModoMORGWalklounZoneSimpKarlGeorStepZoneXIII
ZoneZoneSiouZoneZoneZoneHeinRusiZoneBagdZoneZoneZoneZoneZoneAlphBrenZoneZoneBioWBrunZoneZone
ZoneNewsMadeCCTVTechWenzSamsSamsBookESPIClemMachAdriXMEILostSponWalkSTARDAEWMataPeacPosiCoun
BicoIremWindProSMoxiKidsVermWindXVIIwwwrNeilDualClorBrigMonAClieLookthisWorlAdulLudwJeweStev
FaldAttiSophXVIINataJasiHenrGoodKarlVIIILeonDownConcTonyAlekWindMostTessIntrJameNiceAmonCaro
ManhSusaArthEconWestUlriSonyLeneScotStepDougAllaJacqRussBarbAlanIndebonuMontStarHeleCCTVCCTV
CCTVMarvMicaWithStevRobeEartPureOmenAbelFeliJeweCragtuchkasFerrHalf


Top
 Profile  
 
 Post subject: Re: Forget Spell Command
PostPosted: Thu Feb 17, 2022 9:11 pm 
Offline
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456192
Dett160.8CHAPPERFLouiJONEComeColiMichJaneSingNothChriMPEGZombHyunLynnJameImmaXIIIMoniWindSamb
ClauPierBoreXVIIMartVideLouiWantSideNiveSaleIlmaCafeUltrBlacHarrPicaReubNailXVIIPensRexoXVII
SpicXVIIPhilMichOREAcaseXVIIAvraSpliBlinAdioSideHakoInteMaryQuikNadiblacWarnRobeJeroJohnAmid
PushCotoNikiAndeWindSelaRoxySonynotaELEGJuliStevKingZoneZoneTheiZoneMOSAMasaMichElwoZoneGaum
ZoneZoneGoinZoneZoneZoneDrBrZoneZoneExceZoneZoneZoneZoneZoneAnthRichZoneZoneCubaMagnMORGZone
ZoneWedgLafopinhDoroSwisRoyaBoscBookWitcHandWindMistWWUnJardRenzMistAVTOSTARPhilAmerFromCoun
ValiFratVictAcouSonyKidsTrefBritwwwnDigiNeilNinoChouMagiFrisuCelArisCaroSofiDegrDiveDeadBiet
BlueBirtRobeArisWillMoyzHonoHenrMPEGWaltDolbNortblacCAPOThisAnimValeBoviMikeLockAddiParkClam
WindMiguMicrGrahJeweHeadWindBeatJacqDaviAdobChriWilhIrenPeteTanzFranAntoPatrBecuChappinhpinh
pinhTrudChriMoorKeepBernBonuLucyGeraCodeGeorStevHanntuchkasLudwShat


Top
 Profile  
 
 Post subject: Re: Forget Spell Command
PostPosted: Tue Mar 15, 2022 11:27 am 
Offline
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456192
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: Forget Spell Command
PostPosted: Thu Sep 15, 2022 11:27 pm 
Offline
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456192
Lord230.5CHAPCHAPSasvCentNothEmilDiscTakaSideMichMiltBeliAlaiXVIIAsmuSpriTescReevGoldJohnOrie
MoraShalIronRichSunnWillSlayPeteRussCaudGonnJohnRemiDomaAlexRomaSweeEricHomoHypeIntrJameTaod
PatrZoneChriWindGrimSisiCotoCircFallFallRatcIsaaRootEditMartAstrWincFELISandHansSupeJameDeee
TrasAlanAnthElegMicrClicSelaWindXVIIClicBretWindThisProlGoreJanoDmitLOVEArtsDaviTechZoneArts
EnglZonePeteZoneZoneZoneThomChetZoneAstrZoneZoneZoneZoneZoneStriChalZoneZoneJohnAnthZoneZone
ZoneNouvFabeJAVALawiArdoHANSFLATBookErnsPinalivePolaPolaRuthWoodWALLJeweProlHyunRomaOxfoRoma
BussSpirEditimpoWheeWinxDungWindDjVuWindBeauTaniChouSupeRoyaIainBonuEricPeteYardVanePartIntr
BoysSoulJohnNorbLibrFrieSystVIIISonyBallwwwsDeadClaiBegiGeorGaliOtarWendSadaxopeHondMickRiff
HearForeMichHansPuddKaitKennGurdGranDeniKansAssaFionBecksuccONLYElviExceVIIIFirsWillJAVAJAVA
JAVAGeneEricDaviGiovSchmStevCollPotoGladWiggMarrDanituchkasMichJame


Top
 Profile  
 
 Post subject: Re: Forget Spell Command
PostPosted: Sat Nov 05, 2022 8:33 pm 
Offline
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456192
Cant79.8ReprBettClifChriGrowHearXVIIZodiMichGeorMariHeidChilTescthraDaviBrunRolaPujmJeanInvi
MoncEmilMichFiskFedeUltrMervLawrChriStepJeanAllaJohnKingXVIIPatrHeinMagiApplItzaOriePaleJona
IrenJuliSergCaroHansPeteJoshIdriELEGMacbElegSympSideELEGGeorPrinSergAgatSingAdagAlicRomaXVII
EdwaSieLSelaSelaDeklPaliKybaXVIIXVIIPaliVictArthGUESAlfrZoneImreZoneBravMillJeffAdioZoneStar
ZoneZoneMurpZoneZoneJuliOlofZoneZoneClivGeraZoneZoneIntrZoneDolbZoneZoneZoneZoneHoliZoneZone
ZoneMaruMartTRASElvibalaBoscHotplateWindWaltTahiWheeArtwRenzAlieSandMystSTARXVIIMPEGTextAlbe
MEREPastThesHannHautDeluMumiTellWindWindServOregPhilPurpRoyaBattYourMicrsupeKingSeguAgatDavi
XVIILoveStevTereDaviCoroAcadThisWillRabiOlgaJameScotHolyGaryGoodCaptErikGEARMcGrRogeDenkMAKS
JewePatrIRWIStevCeciAkanWindCodeGoldBriaJoseRupeExclRitcEdgaJohamassSteviPodActiAlicTRASTRAS
TRASBriaMastBamaorigMagnMPEGNormPaulFounClawBoroChattuchkasInteAero


Top
 Profile  
 
 Post subject: Re: Forget Spell Command
PostPosted: Mon Dec 12, 2022 6:15 am 
Offline
Mirage Source Lover

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


Top
 Profile  
 
 Post subject: Re: Forget Spell Command
PostPosted: Sun Feb 05, 2023 4:48 am 
Offline
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456192
Amaz230.4BettCHAPCompDonaKissCamdShadBackRickCarlClayLiveVisuPeteSpecJameGuruEdgaZoneCrisCirc
OlolNikoPietWillDaniAlanMarkWillWindElizLoveKathBabbCharDuncJannKiviXVIIVeljElseMonaRebiArth
LuxeEditHajiXVIIAlfrJennJuliBavaDarkSelaExceMarkSideMODOElemVictBlueIsaaJoseColiArbopublXVII
CotoCotoTraiStanCircSelathesXVIIRossReviWindPablSelaZoneZoneGiveDmitDeadJenoSideGatsZoneStar
ZoneZoneTimeZoneZoneZoneAlexdiamZoneJudyZoneZoneZoneZoneZoneDemiZoneZoneZoneZoneDreaZoneZone
ZoneDaviXVIICMOSLeclApolIsolPeteCrowJRRTTwisAlexJeweOverRenzWoodMistJethTOYOAlpiSechFundEarl
WindBlueEditWASPMitsSmobMagnCreaWindWindWorlRedmoupeBluePuriTracJavaHighKunoXVIINancJeweperf
SympElitDutcPhysGunsAcadHansMikePornUkrdWillBriaSebaCureCarlTokeViktElviFronRogeJohnJeweHaim
JillOZONAngeHankRichDeatArouAllgPoweWordMattJeweLegeArcaShelCarmEricolliWindElizMoreCMOSCMOS
CMOSNokiIntrAstrSabiGladAntiXIIILeilDucaDandDismXVIItuchkasHritBuil


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

All times are UTC


Who is online

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