LuaFunctions.cpp 304 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891
  1. /*
  2. EQ2Emulator: Everquest II Server Emulator
  3. Copyright (C) 2007 EQ2EMulator Development Team (http://www.eq2emulator.net)
  4. This file is part of EQ2Emulator.
  5. EQ2Emulator is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. EQ2Emulator is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with EQ2Emulator. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #include "LuaFunctions.h"
  17. #include "Spawn.h"
  18. #include "WorldDatabase.h"
  19. #include "LuaInterface.h"
  20. #include "../common/ConfigReader.h"
  21. #include "client.h"
  22. #include "World.h"
  23. #include "Commands/Commands.h"
  24. #include "races.h"
  25. #include "classes.h"
  26. #include "Variables.h"
  27. #include "SpellProcess.h"
  28. #include "../common/Log.h"
  29. #include <math.h>
  30. #include "HeroicOp/HeroicOp.h"
  31. #include "RaceTypes/RaceTypes.h"
  32. #include "ClientPacketFunctions.h"
  33. #include "Transmute.h"
  34. #include <boost/algorithm/string/predicate.hpp>
  35. extern WorldDatabase database;
  36. extern LuaInterface* lua_interface;
  37. extern ConfigReader configReader;
  38. extern MasterQuestList master_quest_list;
  39. extern MasterItemList master_item_list;
  40. extern MasterSpellList master_spell_list;
  41. extern World world;
  42. extern Commands commands;
  43. extern ZoneList zone_list;
  44. extern Races races;
  45. extern Classes classes;
  46. extern Variables variables;
  47. extern MasterSkillList master_skill_list;
  48. extern MasterHeroicOPList master_ho_list;
  49. extern MasterRaceTypeList race_types_list;
  50. extern MasterLanguagesList master_languages_list;
  51. int EQ2Emu_lua_PlayFlavor(lua_State* state) {
  52. if (!lua_interface)
  53. return 0;
  54. Spawn* spawn = lua_interface->GetSpawn(state);
  55. string mp3_string = lua_interface->GetStringValue(state, 2);
  56. string text_string = lua_interface->GetStringValue(state, 3);
  57. string emote_string = lua_interface->GetStringValue(state, 4);
  58. int32 key1 = lua_interface->GetInt32Value(state, 5);
  59. int32 key2 = lua_interface->GetInt32Value(state, 6);
  60. Spawn* player = lua_interface->GetSpawn(state, 7);
  61. int8 language = lua_interface->GetInt8Value(state, 8);
  62. if (spawn) {
  63. const char* mp3 = 0;
  64. const char* text = 0;
  65. const char* emote = 0;
  66. if (mp3_string.length() > 0)
  67. mp3 = mp3_string.c_str();
  68. if (text_string.length() > 0)
  69. text = text_string.c_str();
  70. if (emote_string.length() > 0)
  71. emote = emote_string.c_str();
  72. Client* client = 0;
  73. if (player && player->IsPlayer())
  74. client = spawn->GetZone()->GetClientBySpawn(player);
  75. if (client) {
  76. if (((Player*)player)->WasSentSpawn(spawn->GetID()) && !((Player*)player)->WasSpawnRemoved(spawn))
  77. spawn->GetZone()->PlayFlavor(client, spawn, mp3, text, emote, key1, key2, language);
  78. }
  79. else
  80. spawn->GetZone()->PlayFlavor(spawn, mp3, text, emote, key1, key2, language);
  81. }
  82. return 0;
  83. }
  84. int EQ2Emu_lua_PlaySound(lua_State* state) {
  85. if (!lua_interface)
  86. return 0;
  87. Spawn* spawn = lua_interface->GetSpawn(state);
  88. string sound_string = lua_interface->GetStringValue(state, 2);
  89. float x = lua_interface->GetFloatValue(state, 3);
  90. float y = lua_interface->GetFloatValue(state, 4);
  91. float z = lua_interface->GetFloatValue(state, 5);
  92. Spawn* player = lua_interface->GetSpawn(state, 6);
  93. if (spawn && sound_string.length() > 0) {
  94. Client* client = 0;
  95. if (player && player->IsPlayer())
  96. client = spawn->GetZone()->GetClientBySpawn(player);
  97. if (client)
  98. spawn->GetZone()->PlaySoundFile(client, sound_string.c_str(), x, y, z);
  99. else
  100. spawn->GetZone()->PlaySoundFile(0, sound_string.c_str(), x, y, z);
  101. }
  102. return 0;
  103. }
  104. int EQ2Emu_lua_SetRequiredQuest(lua_State* state) {
  105. if (!lua_interface)
  106. return 0;
  107. Spawn* spawn = lua_interface->GetSpawn(state);
  108. int32 quest_id = lua_interface->GetInt32Value(state, 2);
  109. int16 quest_step = lua_interface->GetInt16Value(state, 3);
  110. bool private_spawn = (lua_interface->GetInt8Value(state, 4) == 1);
  111. bool continued_access = (lua_interface->GetInt8Value(state, 5) == 1);
  112. int16 flag_override = lua_interface->GetInt16Value(state, 6);
  113. if (!spawn) {
  114. lua_interface->LogError("%s: LUA SetRequiredQuest command error: spawn is not valid", lua_interface->GetScriptName(state));
  115. return 0;
  116. }
  117. if (quest_id > 0) {
  118. //Add this quest to the list of required quests for this spawn
  119. spawn->SetQuestsRequired(quest_id, quest_step);
  120. //If private spawn value set
  121. if (private_spawn) {
  122. //Set the spawn to be private when not granted access through this quest
  123. spawn->AddAllowAccessSpawn(spawn);
  124. spawn->SetPrivateQuestSpawn(true);
  125. }
  126. //This value allows access after a quest step, or the whole quest has been completed
  127. if (continued_access)
  128. spawn->SetQuestsRequiredContinuedAccess(true);
  129. //This value will override vis_flags in the vis packet
  130. if (flag_override > 0)
  131. spawn->SetQuestsRequiredOverride(flag_override);
  132. }
  133. return 0;
  134. }
  135. int EQ2Emu_lua_SpawnSetByDistance(lua_State* state) {
  136. if (!lua_interface)
  137. return 0;
  138. Spawn* spawn = lua_interface->GetSpawn(state);
  139. float max_distance = lua_interface->GetFloatValue(state, 2);
  140. string variable = lua_interface->GetStringValue(state, 3);
  141. string value = lua_interface->GetStringValue(state, 4);
  142. if (max_distance > 0 && spawn && value.length() > 0 && variable.length() > 0 && spawn->GetZone())
  143. spawn->GetZone()->SpawnSetByDistance(spawn, max_distance, variable, value);
  144. return 0;
  145. }
  146. int EQ2Emu_lua_PerformCameraShake(lua_State* state) {
  147. if (!lua_interface)
  148. return 0;
  149. Client* client = 0;
  150. Spawn* player = lua_interface->GetSpawn(state);
  151. if (!player) {
  152. lua_interface->LogError("LUA PerformCameraShake command error: spawn is not valid");
  153. return 0;
  154. }
  155. if (!player->IsPlayer()) {
  156. lua_interface->LogError("LUA PerformCameraShake command error: spawn is not a player");
  157. return 0;
  158. }
  159. if (player->GetZone())
  160. client = player->GetZone()->GetClientBySpawn(player);
  161. if (!client) {
  162. lua_interface->LogError("LUA PerformCameraShake command error: could not find client");
  163. return 0;
  164. }
  165. int16 value1 = lua_interface->GetInt16Value(state, 2);
  166. int16 value2 = lua_interface->GetInt16Value(state, 3);
  167. PacketStruct* packet = configReader.getStruct("WS_PerformCameraShakeMsg", client->GetVersion());
  168. if (packet) {
  169. packet->setDataByName("unknown1", value1);
  170. packet->setDataByName("unknown2", value2);
  171. client->QueuePacket(packet->serialize());
  172. safe_delete(packet);
  173. }
  174. return 0;
  175. }
  176. int EQ2Emu_lua_KillSpawn(lua_State* state) {
  177. if (!lua_interface)
  178. return 0;
  179. Spawn* dead = lua_interface->GetSpawn(state);
  180. Spawn* killer = lua_interface->GetSpawn(state, 2);
  181. bool send_packet = (lua_interface->GetInt8Value(state, 3) == 1);
  182. if (dead && dead->Alive() && dead->GetZone())
  183. dead->GetZone()->KillSpawn(false, dead, killer, send_packet);
  184. return 0;
  185. }
  186. int EQ2Emu_lua_KillSpawnByDistance(lua_State* state) {
  187. if (!lua_interface)
  188. return 0;
  189. Spawn* spawn = lua_interface->GetSpawn(state);
  190. float max_distance = lua_interface->GetFloatValue(state, 2);
  191. bool include_players = lua_interface->GetInt8Value(state, 3);
  192. bool send_packet = (lua_interface->GetInt8Value(state, 4) == 1);
  193. if (max_distance > 0 && spawn && spawn->GetZone())
  194. spawn->GetZone()->KillSpawnByDistance(spawn, max_distance, include_players, send_packet);
  195. return 0;
  196. }
  197. int EQ2Emu_lua_Despawn(lua_State* state) {
  198. if (!lua_interface)
  199. return 0;
  200. Spawn* spawn = lua_interface->GetSpawn(state);
  201. int32 delay = lua_interface->GetInt32Value(state, 2);
  202. if (spawn && spawn->GetZone())
  203. spawn->GetZone()->Despawn(spawn, delay);
  204. return 0;
  205. }
  206. int EQ2Emu_lua_SpawnSet(lua_State* state) {
  207. if (!lua_interface)
  208. return 0;
  209. Spawn* spawn = lua_interface->GetSpawn(state);
  210. string variable = lua_interface->GetStringValue(state, 2);
  211. string value = lua_interface->GetStringValue(state, 3);
  212. int32 type = commands.GetSpawnSetType(variable);
  213. if (type != 0xFFFFFFFF && value.length() > 0 && spawn)
  214. commands.SetSpawnCommand(0, spawn, type, value.c_str());
  215. return 0;
  216. }
  217. int EQ2Emu_lua_GetSpawn(lua_State* state) {
  218. if (!lua_interface)
  219. return 0;
  220. Spawn* spawn = lua_interface->GetSpawn(state);
  221. int32 spawn_id = lua_interface->GetInt32Value(state, 2);
  222. if (spawn && spawn_id > 0) {
  223. Spawn* closest_spawn = spawn->GetZone()->GetClosestSpawn(spawn, spawn_id);
  224. if (closest_spawn) {
  225. lua_interface->SetSpawnValue(state, closest_spawn);
  226. return 1;
  227. }
  228. }
  229. return 0;
  230. }
  231. int EQ2Emu_lua_GetVariableValue(lua_State* state) {
  232. if (!lua_interface)
  233. return 0;
  234. string variable_name = lua_interface->GetStringValue(state);
  235. Variable* var = variables.FindVariable(variable_name);
  236. if (var) {
  237. lua_interface->SetStringValue(state, var->GetValue());
  238. return 1;
  239. }
  240. return 0;
  241. }
  242. int EQ2Emu_lua_GetCoinMessage(lua_State* state) {
  243. if (!lua_interface)
  244. return 0;
  245. int32 total_coins = lua_interface->GetInt32Value(state);
  246. if (total_coins == 0) {
  247. lua_interface->SetStringValue(state, "0 copper");
  248. return 1;
  249. }
  250. char tmp[64] = { 0 };
  251. string message = "";
  252. int32 val = 0;
  253. if (total_coins >= 1000000) {
  254. val = total_coins / 1000000;
  255. total_coins -= 1000000 * val;
  256. sprintf(tmp, " %u Platinum", val);
  257. message.append(tmp);
  258. memset(tmp, 0, 64);
  259. }
  260. if (total_coins >= 10000) {
  261. val = total_coins / 10000;
  262. total_coins -= 10000 * val;
  263. sprintf(tmp, " %u Gold", val);
  264. message.append(tmp);
  265. memset(tmp, 0, 64);
  266. }
  267. if (total_coins >= 100) {
  268. val = total_coins / 100;
  269. total_coins -= 100 * val;
  270. sprintf(tmp, " %u Silver", val);
  271. message.append(tmp);
  272. memset(tmp, 0, 64);
  273. }
  274. if (total_coins > 0) {
  275. sprintf(tmp, " %u Copper", (int32)total_coins);
  276. message.append(tmp);
  277. }
  278. lua_interface->SetStringValue(state, message.c_str());
  279. return 1;
  280. }
  281. int EQ2Emu_lua_GetSpawnByGroupID(lua_State* state) {
  282. ZoneServer* zone = lua_interface->GetZone(state);
  283. int32 group_id = lua_interface->GetInt32Value(state, 2);
  284. if (zone) {
  285. Spawn* spawn = zone->GetSpawnGroup(group_id);
  286. if (spawn) {
  287. lua_interface->SetSpawnValue(state, spawn);
  288. return 1;
  289. }
  290. }
  291. return 0;
  292. }
  293. int EQ2Emu_lua_GetSpawnByLocationID(lua_State* state) {
  294. ZoneServer* zone = lua_interface->GetZone(state);
  295. int32 location_id = lua_interface->GetInt32Value(state, 2);
  296. if (zone) {
  297. Spawn* spawn = zone->GetSpawnByLocationID(location_id);
  298. if (spawn) {
  299. lua_interface->SetSpawnValue(state, spawn);
  300. return 1;
  301. }
  302. }
  303. return 0;
  304. }
  305. int EQ2Emu_lua_GetSpawnID(lua_State* state) {
  306. Spawn* spawn = lua_interface->GetSpawn(state);
  307. if (spawn) {
  308. lua_interface->SetInt32Value(state, spawn->GetDatabaseID());
  309. return 1;
  310. }
  311. return 0;
  312. }
  313. int EQ2Emu_lua_GetSpawnGroupID(lua_State* state) {
  314. Spawn* spawn = lua_interface->GetSpawn(state);
  315. if (spawn) {
  316. lua_interface->SetInt32Value(state, spawn->GetSpawnGroupID());
  317. return 1;
  318. }
  319. return 0;
  320. }
  321. int EQ2Emu_lua_GetSpawnLocationID(lua_State* state) {
  322. Spawn* spawn = lua_interface->GetSpawn(state);
  323. if (spawn) {
  324. lua_interface->SetInt32Value(state, spawn->GetSpawnLocationID());
  325. return 1;
  326. }
  327. return 0;
  328. }
  329. int EQ2Emu_lua_GetSpawnLocationPlacementID(lua_State* state) {
  330. Spawn* spawn = lua_interface->GetSpawn(state);
  331. if (spawn) {
  332. lua_interface->SetInt32Value(state, spawn->GetSpawnLocationPlacementID());
  333. return 1;
  334. }
  335. return 0;
  336. }
  337. int EQ2Emu_lua_GetFactionAmount(lua_State* state) {
  338. Player* player = (Player*)lua_interface->GetSpawn(state);
  339. int32 faction_id = lua_interface->GetInt32Value(state, 2);
  340. if (player && player->IsPlayer() && faction_id > 0) {
  341. lua_interface->SetInt32Value(state, player->GetFactions()->GetFactionValue(faction_id));
  342. return 1;
  343. }
  344. return 0;
  345. }
  346. int EQ2Emu_lua_SetFactionID(lua_State* state) {
  347. if (!lua_interface)
  348. return 0;
  349. Spawn* spawn = lua_interface->GetSpawn(state);
  350. int32 value = lua_interface->GetInt32Value(state, 2);
  351. if (spawn) {
  352. spawn->SetFactionID(value);
  353. }
  354. return 0;
  355. }
  356. int EQ2Emu_lua_GetFactionID(lua_State* state) {
  357. Spawn* spawn = lua_interface->GetSpawn(state);
  358. if (spawn) {
  359. lua_interface->SetInt32Value(state, spawn->GetFactionID());
  360. return 1;
  361. }
  362. return 0;
  363. }
  364. int EQ2Emu_lua_GetGender(lua_State* state) {
  365. Spawn* spawn = lua_interface->GetSpawn(state);
  366. if (spawn) {
  367. lua_interface->SetInt32Value(state, spawn->GetGender());
  368. return 1;
  369. }
  370. return 0;
  371. }
  372. int EQ2Emu_lua_GetTarget(lua_State* state) {
  373. Spawn* spawn = lua_interface->GetSpawn(state);
  374. if (spawn && spawn->IsEntity() && ((Entity*)spawn)->GetTarget()) {
  375. lua_interface->SetSpawnValue(state, ((Entity*)spawn)->GetTarget());
  376. return 1;
  377. }
  378. return 0;
  379. }
  380. int EQ2Emu_lua_PlayVoice(lua_State* state) {
  381. if (!lua_interface)
  382. return 0;
  383. Spawn* spawn = lua_interface->GetSpawn(state);
  384. string mp3_string = lua_interface->GetStringValue(state, 2);
  385. int32 key1 = lua_interface->GetInt32Value(state, 3);
  386. int32 key2 = lua_interface->GetInt32Value(state, 4);
  387. Spawn* player = lua_interface->GetSpawn(state, 5);
  388. if (spawn && mp3_string.length() > 0) {
  389. Client* client = 0;
  390. if (player && player->IsPlayer())
  391. client = spawn->GetZone()->GetClientBySpawn(player);
  392. if (client) {
  393. if (((Player*)player)->WasSentSpawn(spawn->GetID()) && !((Player*)player)->WasSpawnRemoved(spawn))
  394. spawn->GetZone()->PlayVoice(client, spawn, mp3_string.c_str(), key1, key2);
  395. }
  396. else
  397. spawn->GetZone()->PlayVoice(spawn, mp3_string.c_str(), key1, key2);
  398. }
  399. return 0;
  400. }
  401. int EQ2Emu_lua_GetCurrentZoneSafeLocation(lua_State* state) {
  402. if (!lua_interface)
  403. return 0;
  404. Spawn* spawn = lua_interface->GetSpawn(state);
  405. if (spawn) {
  406. lua_interface->SetFloatValue(state, spawn->GetZone()->GetSafeX());
  407. lua_interface->SetFloatValue(state, spawn->GetZone()->GetSafeY());
  408. lua_interface->SetFloatValue(state, spawn->GetZone()->GetSafeZ());
  409. return 3;
  410. }
  411. return 0;
  412. }
  413. int EQ2Emu_lua_AddLootItem(lua_State* state) {
  414. if (!lua_interface)
  415. return 0;
  416. Spawn* spawn = lua_interface->GetSpawn(state);
  417. if (spawn && spawn->IsEntity()) {
  418. int32 item_id = lua_interface->GetInt32Value(state, 2);
  419. int16 charges = lua_interface->GetInt16Value(state, 3);
  420. if (charges == 0)
  421. charges = 1;
  422. ((Entity*)spawn)->AddLootItem(item_id, charges);
  423. }
  424. return 0;
  425. }
  426. int EQ2Emu_lua_RemoveLootItem(lua_State* state) {
  427. if (!lua_interface)
  428. return 0;
  429. Spawn* spawn = lua_interface->GetSpawn(state);
  430. if (spawn && spawn->IsEntity()) {
  431. int32 item_id = lua_interface->GetInt32Value(state, 2);
  432. spawn->LootItem(item_id);
  433. }
  434. return 0;
  435. }
  436. int EQ2Emu_lua_AddLootCoin(lua_State* state) {
  437. if (!lua_interface)
  438. return 0;
  439. Spawn* spawn = lua_interface->GetSpawn(state);
  440. if (spawn && spawn->IsEntity()) {
  441. int32 val = lua_interface->GetInt32Value(state, 2);
  442. ((Entity*)spawn)->AddLootCoins(val);
  443. }
  444. return 0;
  445. }
  446. int EQ2Emu_lua_GiveLoot(lua_State* state) {
  447. if (!lua_interface)
  448. return 0;
  449. Spawn* entity = lua_interface->GetSpawn(state);
  450. Spawn* player = lua_interface->GetSpawn(state, 2);
  451. if (entity && player && player->IsPlayer()) {
  452. int32 coins = lua_interface->GetInt32Value(state, 3);
  453. vector<Item*>* items = 0;
  454. int i = 0;
  455. int32 item_id = 0;
  456. while ((item_id = lua_interface->GetInt32Value(state, 4 + i))) {
  457. if (items == 0)
  458. items = new vector<Item*>;
  459. if (master_item_list.GetItem(item_id))
  460. items->push_back(master_item_list.GetItem(item_id));
  461. i++;
  462. }
  463. Client* client = 0;
  464. client = entity->GetZone()->GetClientBySpawn(player);
  465. if (client) {
  466. ((Player*)player)->AddPendingLootItems(entity->GetID(), items);
  467. client->Loot(coins, ((Player*)player)->GetPendingLootItems(entity->GetID()), (Entity*)entity);
  468. }
  469. safe_delete(items);
  470. }
  471. return 0;
  472. }
  473. int EQ2Emu_lua_HasPendingLootItem(lua_State* state) {
  474. if (!lua_interface)
  475. return 0;
  476. Spawn* entity = lua_interface->GetSpawn(state);
  477. Spawn* player = lua_interface->GetSpawn(state, 2);
  478. int32 item_id = lua_interface->GetInt32Value(state, 3);
  479. if (entity && entity->IsEntity() && player && player->IsPlayer() && item_id > 0) {
  480. lua_interface->SetBooleanValue(state, ((Player*)player)->HasPendingLootItem(entity->GetID(), item_id));
  481. return 1;
  482. }
  483. return 0;
  484. }
  485. int EQ2Emu_lua_HasPendingLoot(lua_State* state) {
  486. if (!lua_interface)
  487. return 0;
  488. Spawn* entity = lua_interface->GetSpawn(state);
  489. Spawn* player = lua_interface->GetSpawn(state, 2);
  490. if (entity && entity->IsEntity() && player && player->IsPlayer()) {
  491. lua_interface->SetBooleanValue(state, ((Player*)player)->HasPendingLootItems(entity->GetID()));
  492. return 1;
  493. }
  494. return 0;
  495. }
  496. int EQ2Emu_lua_CreateConversation(lua_State* state) {
  497. if (!lua_interface)
  498. return 0;
  499. vector<ConversationOption>* conversation = lua_interface->GetConversation(state);
  500. safe_delete(conversation);
  501. conversation = new vector<ConversationOption>();
  502. lua_interface->SetConversationValue(state, conversation);
  503. return 1;
  504. }
  505. int EQ2Emu_lua_AddConversationOption(lua_State* state) {
  506. if (!lua_interface)
  507. return 0;
  508. vector<ConversationOption>* conversation = lua_interface->GetConversation(state);
  509. if (conversation) {
  510. ConversationOption conv_option;
  511. conv_option.option = lua_interface->GetStringValue(state, 2);
  512. conv_option.function = lua_interface->GetStringValue(state, 3);
  513. if (conv_option.option.length() > 0)
  514. conversation->push_back(conv_option);
  515. }
  516. return 0;
  517. }
  518. int EQ2Emu_lua_CloseConversation(lua_State* state) {
  519. if (!lua_interface)
  520. return 0;
  521. Spawn* npc = lua_interface->GetSpawn(state);
  522. Spawn* player = lua_interface->GetSpawn(state, 2);
  523. if (npc && player && player->IsPlayer() && player->GetZone()) {
  524. Client* client = player->GetZone()->GetClientBySpawn(player);
  525. if (client) {
  526. int32 conversation_id = client->GetConversationID(npc, 0);
  527. client->CloseDialog(conversation_id);
  528. }
  529. }
  530. return 0;
  531. }
  532. int EQ2Emu_lua_CloseItemConversation(lua_State* state) {
  533. if (!lua_interface)
  534. return 0;
  535. Item* item = lua_interface->GetItem(state);
  536. Spawn* player = lua_interface->GetSpawn(state, 2);
  537. if (item && player && player->IsPlayer() && player->GetZone()) {
  538. Client* client = player->GetZone()->GetClientBySpawn(player);
  539. if (client) {
  540. int32 conversation_id = client->GetConversationID(0, item);
  541. client->CloseDialog(conversation_id);
  542. }
  543. }
  544. return 0;
  545. }
  546. int EQ2Emu_lua_StartDialogConversation(lua_State* state) {
  547. if (!lua_interface)
  548. return 0;
  549. vector<ConversationOption>* conversation = lua_interface->GetConversation(state);
  550. Spawn* spawn = 0;
  551. Item* item = 0;
  552. int8 type = lua_interface->GetInt8Value(state, 2);
  553. if (type == 1 || type == 3)
  554. spawn = lua_interface->GetSpawn(state, 3);
  555. else if (type == 2 || type == 4)
  556. item = lua_interface->GetItem(state, 3);
  557. Spawn* player = lua_interface->GetSpawn(state, 4);
  558. string text = lua_interface->GetStringValue(state, 5);
  559. string mp3 = lua_interface->GetStringValue(state, 6);
  560. int32 key1 = lua_interface->GetInt32Value(state, 7);
  561. int32 key2 = lua_interface->GetInt32Value(state, 8);
  562. if (conversation && text.length() > 0 && (spawn || item) && player && player->IsPlayer()) {
  563. Client* client = player->GetZone()->GetClientBySpawn(player);
  564. if (client) {
  565. if (spawn) {
  566. // Need to do this so the function works the same as it did before
  567. if (type == 1)
  568. type++;
  569. if (mp3.length() > 0)
  570. client->DisplayConversation((Entity*)spawn, type, conversation, const_cast<char*>(text.c_str()), mp3.c_str(), key1, key2);
  571. else
  572. client->DisplayConversation((Entity*)spawn, type, conversation, const_cast<char*>(text.c_str()));
  573. }
  574. else {
  575. if (mp3.length() > 0)
  576. client->DisplayConversation(item, conversation, const_cast<char*>(text.c_str()), type, mp3.c_str(), key1, key2);
  577. else
  578. client->DisplayConversation(item, conversation, const_cast<char*>(text.c_str()), type);
  579. }
  580. }
  581. }
  582. safe_delete(conversation);
  583. lua_interface->SetConversationValue(state, NULL);
  584. return 0;
  585. }
  586. /*int EQ2Emu_lua_StartItemConversation(lua_State* state){
  587. if(!lua_interface)
  588. return 0;
  589. vector<ConversationOption>* conversation = lua_interface->GetConversation(state);
  590. Item* item = lua_interface->GetItem(state, 2);
  591. Spawn* player = lua_interface->GetSpawn(state, 3);
  592. string text = lua_interface->GetStringValue(state, 4);
  593. string mp3 = lua_interface->GetStringValue(state, 5);
  594. int32 key1 = lua_interface->GetInt32Value(state, 6);
  595. int32 key2 = lua_interface->GetInt32Value(state, 7);
  596. if(conversation && text.length() > 0 && item && player && player->IsPlayer()){
  597. Client* client = player->GetZone()->GetClientBySpawn(player);
  598. if(client){
  599. if(mp3.length() > 0)
  600. client->DisplayConversation(item, conversation, (char*)text.c_str(), mp3.c_str(), key1, key2);
  601. else
  602. client->DisplayConversation(item, conversation, (char*)text.c_str());
  603. }
  604. safe_delete(conversation);
  605. }
  606. return 0;
  607. }*/
  608. int EQ2Emu_lua_StartConversation(lua_State* state) {
  609. if (!lua_interface)
  610. return 0;
  611. vector<ConversationOption>* conversation = lua_interface->GetConversation(state);
  612. Spawn* npc = lua_interface->GetSpawn(state, 2);
  613. Spawn* player = lua_interface->GetSpawn(state, 3);
  614. string text = lua_interface->GetStringValue(state, 4);
  615. string mp3 = lua_interface->GetStringValue(state, 5);
  616. int32 key1 = lua_interface->GetInt32Value(state, 6);
  617. int32 key2 = lua_interface->GetInt32Value(state, 7);
  618. if (conversation && conversation->size() > 0 && text.length() > 0 && npc && npc->IsEntity() && player && player->IsPlayer()) {
  619. Client* client = npc->GetZone()->GetClientBySpawn(player);
  620. if (mp3.length() > 0)
  621. client->DisplayConversation((Entity*)npc, 1, conversation, text.c_str(), mp3.c_str(), key1, key2);
  622. else
  623. client->DisplayConversation((Entity*)npc, 1, conversation, text.c_str());
  624. safe_delete(conversation);
  625. lua_interface->SetConversationValue(state, NULL);
  626. }
  627. else
  628. LogWrite(LUA__ERROR, 0, "LUA", "Spawn %s Error in StartConversation, potentially AddConversationOption not yet called or the StartConversation arguments are incorrect, text: %s, conversationSize: %i.", npc ? npc->GetName() : "UNKNOWN", text.size() ? text.c_str() : "", conversation ? conversation->size() : -1);
  629. return 0;
  630. }
  631. int EQ2Emu_lua_SetPlayerProximityFunction(lua_State* state) {
  632. if (!lua_interface)
  633. return 0;
  634. Spawn* spawn = lua_interface->GetSpawn(state);
  635. float distance = lua_interface->GetFloatValue(state, 2);
  636. string in_range_function = lua_interface->GetStringValue(state, 3);
  637. string leaving_range_function = lua_interface->GetStringValue(state, 4);
  638. if (spawn && !spawn->IsPlayer() && distance > 0 && in_range_function.length() > 0)
  639. spawn->GetZone()->AddPlayerProximity(spawn, distance, in_range_function, leaving_range_function);
  640. return 0;
  641. }
  642. int EQ2Emu_lua_SetLocationProximityFunction(lua_State* state) {
  643. ZoneServer* zone = lua_interface->GetZone(state);
  644. float x = lua_interface->GetFloatValue(state, 2);
  645. float y = lua_interface->GetFloatValue(state, 3);
  646. float z = lua_interface->GetFloatValue(state, 4);
  647. float max_variation = lua_interface->GetFloatValue(state, 5);
  648. string in_range_function = lua_interface->GetStringValue(state, 6);
  649. string leaving_range_function = lua_interface->GetStringValue(state, 7);
  650. if (zone && in_range_function.length() > 0)
  651. zone->AddLocationProximity(x, y, z, max_variation, in_range_function, leaving_range_function);
  652. return 0;
  653. }
  654. int EQ2Emu_lua_SetLootCoin(lua_State* state) {
  655. if (!lua_interface)
  656. return 0;
  657. Spawn* spawn = lua_interface->GetSpawn(state);
  658. if (spawn && spawn->IsEntity()) {
  659. int32 val = lua_interface->GetInt32Value(state, 2);
  660. ((Entity*)spawn)->SetLootCoins(val);
  661. }
  662. return 0;
  663. }
  664. int EQ2Emu_lua_GetLootCoin(lua_State* state) {
  665. if (!lua_interface)
  666. return 0;
  667. Spawn* spawn = lua_interface->GetSpawn(state);
  668. if (spawn && spawn->IsEntity()) {
  669. lua_interface->SetInt32Value(state, ((Entity*)spawn)->GetLootCoins());
  670. return 1;
  671. }
  672. return 0;
  673. }
  674. int EQ2Emu_lua_MovementLoopAdd(lua_State* state) {
  675. if (!lua_interface)
  676. return 0;
  677. Spawn* spawn = lua_interface->GetSpawn(state);
  678. float x = lua_interface->GetFloatValue(state, 2);
  679. float y = lua_interface->GetFloatValue(state, 3);
  680. float z = lua_interface->GetFloatValue(state, 4);
  681. float speed = lua_interface->GetFloatValue(state, 5);
  682. int32 delay = lua_interface->GetInt32Value(state, 6); //this should be given as seconds, as it is converted to ms later
  683. string function = lua_interface->GetStringValue(state, 7);
  684. if (spawn) {
  685. spawn->AddMovementLocation(x, y, z, speed, delay, function.c_str());
  686. spawn->GetZone()->AddMovementNPC(spawn);
  687. }
  688. lua_interface->ResetFunctionStack(state);
  689. return 0;
  690. }
  691. int EQ2Emu_lua_IsPlayer(lua_State* state) {
  692. if (!lua_interface)
  693. return 0;
  694. Spawn* spawn = lua_interface->GetSpawn(state);
  695. if (spawn) {
  696. lua_interface->SetBooleanValue(state, spawn->IsPlayer());
  697. return 1;
  698. }
  699. return 0;
  700. }
  701. int EQ2Emu_lua_FaceTarget(lua_State* state) {
  702. if (!lua_interface)
  703. return 0;
  704. Spawn* spawn = lua_interface->GetSpawn(state);
  705. Spawn* target = lua_interface->GetSpawn(state, 2);
  706. if (spawn && target) {
  707. if (spawn->IsEntity())
  708. // ((Entity*)spawn)->FaceTarget(target);
  709. static_cast<Entity*>(spawn)->FaceTarget(target);
  710. }
  711. lua_interface->ResetFunctionStack(state);
  712. return 0;
  713. }
  714. int EQ2Emu_lua_MoveToLocation(lua_State* state) {
  715. if (!lua_interface)
  716. return 0;
  717. Spawn* spawn = lua_interface->GetSpawn(state);
  718. float x = lua_interface->GetFloatValue(state, 2);
  719. float y = lua_interface->GetFloatValue(state, 3);
  720. float z = lua_interface->GetFloatValue(state, 4);
  721. float speed = lua_interface->GetFloatValue(state, 5);
  722. string lua_function = lua_interface->GetStringValue(state, 6);
  723. bool more_points = lua_interface->GetBooleanValue(state, 7);
  724. if (spawn) {
  725. if (speed == 0)
  726. speed = spawn->GetSpeed();
  727. spawn->AddRunningLocation(x, y, z, speed, 0.0f, true, !more_points, lua_function);
  728. }
  729. lua_interface->ResetFunctionStack(state);
  730. return 0;
  731. }
  732. int EQ2Emu_lua_Say(lua_State* state) {
  733. if (!lua_interface)
  734. return 0;
  735. Spawn* spawn = lua_interface->GetSpawn(state);
  736. string message = lua_interface->GetStringValue(state, 2);
  737. Spawn* player = lua_interface->GetSpawn(state, 3);
  738. int32 language = lua_interface->GetInt32Value(state, 4);
  739. if (spawn && message.length() > 0) {
  740. Client* client = 0;
  741. if (player && player->IsPlayer())
  742. client = spawn->GetZone()->GetClientBySpawn(player);
  743. if (client)
  744. spawn->GetZone()->HandleChatMessage(client, spawn, 0, CHANNEL_SAY, message.c_str(), 30, 0, true, language);
  745. else
  746. spawn->GetZone()->HandleChatMessage(spawn, 0, CHANNEL_SAY, message.c_str(), 30, 0, true, language);
  747. }
  748. lua_interface->ResetFunctionStack(state);
  749. return 0;
  750. }
  751. int EQ2Emu_lua_Shout(lua_State* state) {
  752. if (!lua_interface)
  753. return 0;
  754. Spawn* spawn = lua_interface->GetSpawn(state);
  755. string message = lua_interface->GetStringValue(state, 2);
  756. Spawn* player = lua_interface->GetSpawn(state, 3);
  757. if (spawn && message.length() > 0) {
  758. Client* client = 0;
  759. if (player && player->IsPlayer())
  760. client = spawn->GetZone()->GetClientBySpawn(player);
  761. if (client)
  762. spawn->GetZone()->HandleChatMessage(client, spawn, 0, CHANNEL_SHOUT, message.c_str(), 30);
  763. else
  764. spawn->GetZone()->HandleChatMessage(spawn, 0, CHANNEL_SHOUT, message.c_str(), 30);
  765. }
  766. lua_interface->ResetFunctionStack(state);
  767. return 0;
  768. }
  769. int EQ2Emu_lua_SayOOC(lua_State* state) {
  770. if (!lua_interface)
  771. return 0;
  772. Spawn* spawn = lua_interface->GetSpawn(state);
  773. string message = lua_interface->GetStringValue(state, 2);
  774. Spawn* player = lua_interface->GetSpawn(state, 3);
  775. if (spawn && message.length() > 0) {
  776. Client* client = 0;
  777. if (player && player->IsPlayer())
  778. client = spawn->GetZone()->GetClientBySpawn(player);
  779. if (client)
  780. spawn->GetZone()->HandleChatMessage(client, spawn, 0, CHANNEL_OOC, message.c_str(), 30);
  781. else
  782. spawn->GetZone()->HandleChatMessage(spawn, 0, CHANNEL_OOC, message.c_str(), 30);
  783. }
  784. lua_interface->ResetFunctionStack(state);
  785. return 0;
  786. }
  787. int EQ2Emu_lua_Emote(lua_State* state) {
  788. if (!lua_interface)
  789. return 0;
  790. Spawn* spawn = lua_interface->GetSpawn(state);
  791. string message = lua_interface->GetStringValue(state, 2);
  792. Spawn* spawn2 = lua_interface->GetSpawn(state, 3);
  793. Spawn* player = lua_interface->GetSpawn(state, 4);
  794. char* to = 0;
  795. if (spawn2)
  796. to = spawn2->GetName();
  797. if (spawn && message.length() > 0) {
  798. Client* client = 0;
  799. if (player && player->IsPlayer())
  800. client = spawn->GetZone()->GetClientBySpawn(player);
  801. if (client)
  802. spawn->GetZone()->HandleChatMessage(client, spawn, to, CHANNEL_EMOTE, message.c_str(), 30);
  803. else
  804. spawn->GetZone()->HandleChatMessage(spawn, to, CHANNEL_EMOTE, message.c_str(), 30);
  805. }
  806. lua_interface->ResetFunctionStack(state);
  807. return 0;
  808. }
  809. int EQ2Emu_lua_SpellHeal(lua_State* state) {
  810. if (!lua_interface)
  811. return 0;
  812. LuaSpell* luaspell = lua_interface->GetCurrentSpell(state);
  813. if (!luaspell)
  814. return 0;
  815. Spawn* caster = luaspell->caster;
  816. string heal_type = lua_interface->GetStringValue(state);//power, heal ect
  817. int32 min_heal = lua_interface->GetInt32Value(state, 2);
  818. int32 max_heal = lua_interface->GetInt32Value(state, 3);
  819. Spawn* target = lua_interface->GetSpawn(state, 4);
  820. int8 crit_mod = lua_interface->GetInt32Value(state, 5);
  821. bool no_calcs = lua_interface->GetInt32Value(state, 6) == 1;
  822. lua_interface->ResetFunctionStack(state);
  823. if (caster && caster->IsEntity()) {
  824. bool success = false;
  825. luaspell->resisted = false;
  826. if (target) {
  827. float distance = caster->GetDistance(target, true);
  828. if (((Entity*)caster)->SpellHeal(target, distance, luaspell, heal_type, min_heal, max_heal, crit_mod, no_calcs))
  829. success = true;
  830. }
  831. if (luaspell->targets.size() > 0) {
  832. Spawn* target = 0;
  833. ZoneServer* zone = luaspell->caster->GetZone();
  834. luaspell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  835. for (int32 i = 0; i < luaspell->targets.size(); i++) {
  836. if ((target = zone->GetSpawnByID(luaspell->targets[i]))) {
  837. float distance = caster->GetDistance(target, true);
  838. ((Entity*)caster)->SpellHeal(target, distance, luaspell, heal_type, min_heal, max_heal, crit_mod, no_calcs);
  839. }
  840. }
  841. luaspell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  842. success = true;
  843. }
  844. if (success) {
  845. if (caster->GetZone())
  846. caster->GetZone()->TriggerCharSheetTimer();
  847. }
  848. }
  849. return 0;
  850. }
  851. int EQ2Emu_lua_AddItem(lua_State* state) {
  852. if (!lua_interface)
  853. return 0;
  854. Spawn* spawn = lua_interface->GetSpawn(state);
  855. int32 item_id = lua_interface->GetInt32Value(state, 2);
  856. int16 quantity = lua_interface->GetInt32Value(state, 3);
  857. // default of 1 quantity to add
  858. if (quantity == 0)
  859. quantity = 1;
  860. if (spawn && spawn->IsPlayer()) {
  861. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  862. if (client && item_id > 0) {
  863. lua_interface->SetBooleanValue(state, client->AddItem(item_id, quantity));
  864. return 1;
  865. }
  866. }
  867. lua_interface->SetBooleanValue(state, false);
  868. return 1;
  869. }
  870. int EQ2Emu_lua_SummonItem(lua_State* state) {
  871. if (!lua_interface)
  872. return 0;
  873. Spawn* spawn = lua_interface->GetSpawn(state);
  874. int32 item_id = lua_interface->GetInt32Value(state, 2);
  875. bool send_messages = (lua_interface->GetInt8Value(state, 3) == 1);
  876. string location = lua_interface->GetStringValue(state, 4);
  877. if (spawn && spawn->IsPlayer()) {
  878. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  879. if (client && item_id > 0) {
  880. if (strncasecmp(location.c_str(), "bank", 4) == 0)
  881. lua_interface->SetBooleanValue(state, client->AddItemToBank(item_id, 1));
  882. else
  883. lua_interface->SetBooleanValue(state, client->AddItem(item_id, 1));
  884. if (send_messages) {
  885. Item* item = master_item_list.GetItem(item_id);
  886. if (item) {
  887. client->Message(CHANNEL_COLOR_YELLOW, "You receive \\aITEM %u 0:%s\\/a.", item->details.item_id, item->name.c_str());
  888. string popup_text = "You receive " + item->name;
  889. client->SendPopupMessage(10, popup_text.c_str(), "ui_harvested_normal", 3, 0xFF, 0xFF, 0xFF);
  890. }
  891. }
  892. return 1;
  893. }
  894. }
  895. lua_interface->SetBooleanValue(state, false);
  896. return 1;
  897. }
  898. int EQ2Emu_lua_RemoveItem(lua_State* state) {
  899. Spawn* spawn = lua_interface->GetSpawn(state);
  900. int32 item_id = lua_interface->GetInt32Value(state, 2);
  901. int16 quantity = lua_interface->GetInt16Value(state, 3);
  902. // default of 1 to remove
  903. if (quantity == 0)
  904. quantity = 1;
  905. Client* client;
  906. Item* item;
  907. if (spawn && spawn->IsPlayer() && item_id > 0) {
  908. if ((client = spawn->GetZone()->GetClientBySpawn(spawn))) {
  909. if ((item = client->GetPlayer()->item_list.GetItemFromID(item_id))) {
  910. if (client->RemoveItem(item, quantity)) {
  911. lua_interface->SetBooleanValue(state, true);
  912. return 1;
  913. }
  914. }
  915. }
  916. }
  917. lua_interface->SetBooleanValue(state, false);
  918. return 1;
  919. }
  920. int EQ2Emu_lua_HasItem(lua_State* state) {
  921. Spawn* player = lua_interface->GetSpawn(state);
  922. int32 item_id = lua_interface->GetInt32Value(state, 2);
  923. bool include_bank = lua_interface->GetInt8Value(state, 3);
  924. if (player && player->IsPlayer()) {
  925. bool hasItem = false;
  926. hasItem = ((Player*)player)->item_list.HasItem(item_id, include_bank);
  927. if (!hasItem)
  928. hasItem = ((Player*)player)->GetEquipmentList()->HasItem(item_id);
  929. lua_interface->SetBooleanValue(state, hasItem);
  930. return 1;
  931. }
  932. lua_interface->SetBooleanValue(state, false);
  933. return 1;
  934. }
  935. int EQ2Emu_lua_Spawn(lua_State* state) {
  936. if (!lua_interface)
  937. return 0;
  938. ZoneServer* zone = lua_interface->GetZone(state);
  939. int32 spawn_id = lua_interface->GetInt32Value(state, 2);
  940. bool restricted_npc = (lua_interface->GetInt8Value(state, 3) == 1);
  941. float x = lua_interface->GetFloatValue(state, 4);
  942. float y = lua_interface->GetFloatValue(state, 5);
  943. float z = lua_interface->GetFloatValue(state, 6);
  944. float heading = lua_interface->GetFloatValue(state, 7);
  945. if (zone && spawn_id > 0 && (x != 0 || y != 0 || z != 0)) {
  946. Spawn* spawn = zone->GetSpawn(spawn_id);
  947. if (!spawn)
  948. lua_interface->LogError("%s: LUA Spawn command error: Could not find spawn with id of %u.", lua_interface->GetScriptName(state), spawn_id);
  949. else {
  950. spawn->SetX(x);
  951. spawn->SetZ(z);
  952. spawn->SetY(y,true,true);
  953. spawn->SetLocation(zone->GetClosestLocation(spawn));
  954. spawn->SetHeading(heading);
  955. if (restricted_npc)
  956. spawn->AddAllowAccessSpawn(spawn);
  957. const char* spawn_script = world.GetSpawnScript(spawn_id);
  958. bool scriptActive = false;
  959. if (spawn_script && lua_interface->GetSpawnScript(spawn_script) != 0) {
  960. scriptActive = true;
  961. spawn->SetSpawnScript(string(spawn_script));
  962. }
  963. zone->CallSpawnScript(spawn, SPAWN_SCRIPT_PRESPAWN);
  964. zone->AddSpawn(spawn);
  965. if (scriptActive) {
  966. zone->CallSpawnScript(spawn, SPAWN_SCRIPT_SPAWN);
  967. }
  968. lua_interface->SetSpawnValue(state, spawn);
  969. return 1;
  970. }
  971. }
  972. else {
  973. string output = "Invalid paramaters to LUA Spawn command: \n";
  974. if (!zone)
  975. output = output.append("\t").append("Missing zone reference. \n");
  976. if (spawn_id == 0)
  977. output = output.append("\t").append("Missing spawn_id.");
  978. lua_interface->LogError("%s: Error in EQ2Emu_lua_Zone - %s", lua_interface->GetScriptName(state), output.c_str());
  979. }
  980. return 0;
  981. }
  982. int EQ2Emu_lua_GetZoneName(lua_State* state) {
  983. if (!lua_interface)
  984. return 0;
  985. ZoneServer* zone = lua_interface->GetZone(state);
  986. if (zone) {
  987. lua_interface->SetStringValue(state, zone->GetZoneName());
  988. return 1;
  989. }
  990. return 0;
  991. }
  992. int EQ2Emu_lua_GetZoneID(lua_State* state) {
  993. if (!lua_interface)
  994. return 0;
  995. ZoneServer* zone = lua_interface->GetZone(state);
  996. if (zone) {
  997. lua_interface->SetInt32Value(state, zone->GetZoneID());
  998. return 1;
  999. }
  1000. return 0;
  1001. }
  1002. int EQ2Emu_lua_GetZone(lua_State* state) {
  1003. if (!lua_interface)
  1004. return 0;
  1005. int32 zone_id = lua_interface->GetInt32Value(state);
  1006. ZoneServer* zone = 0;
  1007. if (zone_id > 0)
  1008. zone = zone_list.Get(zone_id);
  1009. else {
  1010. string zone_name = lua_interface->GetStringValue(state);
  1011. if (zone_name.length() > 0) {
  1012. zone = zone_list.Get(zone_name.c_str());
  1013. }
  1014. else {
  1015. Spawn* spawn = lua_interface->GetSpawn(state);
  1016. if (spawn)
  1017. zone = spawn->GetZone();
  1018. }
  1019. }
  1020. if (zone) {
  1021. lua_interface->SetZoneValue(state, zone);
  1022. return 1;
  1023. }
  1024. return 0;
  1025. }
  1026. int EQ2Emu_lua_AddHate(lua_State* state) {
  1027. Spawn* entity = lua_interface->GetSpawn(state);
  1028. Spawn* npc = lua_interface->GetSpawn(state, 2);
  1029. sint32 amount = lua_interface->GetSInt32Value(state, 3);
  1030. bool send_packet = lua_interface->GetInt8Value(state, 4) == 1 ? true : false;
  1031. LuaSpell* luaspell = lua_interface->GetCurrentSpell(state);
  1032. if (entity && entity->IsEntity() && amount != 0) {
  1033. if (luaspell) {
  1034. ZoneServer* zone = luaspell->caster->GetZone();
  1035. luaspell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  1036. for (int32 i = 0; i < luaspell->targets.size(); i++) {
  1037. Spawn* spawn = zone->GetSpawnByID(luaspell->targets.at(i));
  1038. if (spawn && spawn->IsNPC() && spawn->Alive() && spawn->GetZone()) {
  1039. ((NPC*)spawn)->AddHate((Entity*)entity, amount);
  1040. if (send_packet)
  1041. entity->GetZone()->SendThreatPacket(entity, npc, amount, luaspell->spell->GetName());
  1042. }
  1043. }
  1044. luaspell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  1045. }
  1046. else if (npc && npc->IsNPC() && npc->GetZone())
  1047. ((NPC*)npc)->AddHate((Entity*)entity, amount);
  1048. }
  1049. return 0;
  1050. }
  1051. int EQ2Emu_lua_Zone(lua_State* state) {
  1052. if (!lua_interface)
  1053. return 0;
  1054. ZoneServer* zone = lua_interface->GetZone(state);
  1055. Spawn* player = lua_interface->GetSpawn(state, 2);
  1056. Client* client = 0;
  1057. if (player && player->IsPlayer())
  1058. client = player->GetZone()->GetClientBySpawn(player);
  1059. float x = lua_interface->GetFloatValue(state, 3);
  1060. float y = lua_interface->GetFloatValue(state, 4);
  1061. float z = lua_interface->GetFloatValue(state, 5);
  1062. float heading = lua_interface->GetFloatValue(state, 6);
  1063. if (zone && client) {
  1064. LogWrite(LUA__DEBUG, 0, "LUA", "LUA Zone Request by Player: '%s' (%u)", player->GetName(), player->GetID());
  1065. LogWrite(LUA__DEBUG, 5, "LUA", "\tTo Zone: '%s' (%u)", zone->GetZoneName(), zone->GetZoneID());
  1066. if (!client->CheckZoneAccess(zone->GetZoneName()))
  1067. {
  1068. LogWrite(LUA__WARNING, 0, "LUA", "CheckZoneAccess() FAILED! LUA Zone Request Denied!");
  1069. return 0;
  1070. }
  1071. if (x != 0 || y != 0 || z != 0) {
  1072. LogWrite(LUA__DEBUG, 5, "LUA", "\tTo Coordinates: %2f, %2f, %2f, %2f", x, y, z, heading);
  1073. player->SetX(x);
  1074. player->SetY(y);
  1075. player->SetZ(z);
  1076. player->SetHeading(heading);
  1077. client->Zone(zone->GetZoneName(), false);
  1078. }
  1079. else
  1080. client->Zone(zone->GetZoneName());
  1081. }
  1082. else
  1083. lua_interface->LogError("%s: Error in EQ2Emu_lua_Zone: invalid zone or spawn input.", lua_interface->GetScriptName(state));
  1084. return 0;
  1085. }
  1086. int EQ2Emu_lua_AddSpawnAccess(lua_State* state) {
  1087. if (!lua_interface)
  1088. return 0;
  1089. Spawn* spawn = lua_interface->GetSpawn(state);
  1090. Spawn* spawn2 = lua_interface->GetSpawn(state, 2);
  1091. if (spawn && spawn2)
  1092. spawn->AddAllowAccessSpawn(spawn2);
  1093. return 0;
  1094. }
  1095. int EQ2Emu_lua_CastSpell(lua_State* state) {
  1096. if (!lua_interface)
  1097. return 0;
  1098. Spawn* target = lua_interface->GetSpawn(state);
  1099. int32 spell_id = lua_interface->GetInt32Value(state, 2);
  1100. int8 spell_tier = lua_interface->GetInt8Value(state, 3);
  1101. Spawn* caster = lua_interface->GetSpawn(state, 4);
  1102. if (!target) {
  1103. lua_interface->LogError("%s: LUA CastSpell command error: target is not a valid spawn", lua_interface->GetScriptName(state));
  1104. return 0;
  1105. }
  1106. if (!target->IsEntity()) {
  1107. lua_interface->LogError("%s: LUA CastSpell command error: target (%s) is not an entity", lua_interface->GetScriptName(state), target->GetName());
  1108. return 0;
  1109. }
  1110. if (spell_id <= 0) {
  1111. lua_interface->LogError("%s: LUA CastSpell command error: spell id is not valid", lua_interface->GetScriptName(state));
  1112. return 0;
  1113. }
  1114. if (caster && !caster->IsEntity()) {
  1115. lua_interface->LogError("%s: LUA CastSpell command error: caster (%s) is not an entity", lua_interface->GetScriptName(state), caster->GetName());
  1116. return 0;
  1117. }
  1118. if (spell_tier == 0)
  1119. spell_tier = 1;
  1120. if (!caster)
  1121. caster = target;
  1122. target->GetZone()->ProcessSpell(master_spell_list.GetSpell(spell_id, spell_tier), (Entity*)caster, (Entity*)target);
  1123. return 0;
  1124. }
  1125. int EQ2Emu_lua_SpellDamage(lua_State* state) {
  1126. if (!lua_interface)
  1127. return 0;
  1128. Spawn* target = lua_interface->GetSpawn(state);
  1129. int32 target_id = 0;
  1130. if (target)
  1131. target_id = target->GetID();
  1132. LuaSpell* luaspell = lua_interface->GetCurrentSpell(state);
  1133. if (!luaspell)
  1134. return 0;
  1135. Spawn* caster = luaspell->caster;
  1136. sint32 type = lua_interface->GetSInt32Value(state, 2);
  1137. int32 min_damage = lua_interface->GetInt32Value(state, 3);
  1138. int32 max_damage = lua_interface->GetInt32Value(state, 4);
  1139. int8 crit_mod = lua_interface->GetInt32Value(state, 5);
  1140. bool no_calcs = lua_interface->GetInt32Value(state, 6) == 1;
  1141. //lua_interface->ResetFunctionStack(state);
  1142. int32 class_id = lua_interface->GetInt32Value(state, 7);
  1143. vector<int16> faction_req;
  1144. vector<int16> race_req;
  1145. int32 class_req = 0;
  1146. int32 i = 0;
  1147. int8 f = 0;
  1148. int8 r = 0;
  1149. while ((class_id = lua_interface->GetInt32Value(state, 7 + i))) {
  1150. if (class_id < 100) {
  1151. class_req += pow(2.0, double(class_id - 1));
  1152. }
  1153. else if (class_id > 100 && class_id < 1000) {
  1154. race_req.push_back(class_id);
  1155. r++;
  1156. }
  1157. else {
  1158. faction_req.push_back(class_id);
  1159. f++;
  1160. }
  1161. i++;
  1162. }
  1163. if (caster && caster->IsEntity()) {
  1164. bool race_match = false;
  1165. bool success = false;
  1166. luaspell->resisted = false;
  1167. if (luaspell->initial_target == target_id) {
  1168. int xxx = 0;
  1169. }
  1170. if (luaspell->targets.size() > 0) {
  1171. ZoneServer* zone = luaspell->caster->GetZone();
  1172. Spawn* target = 0;
  1173. luaspell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  1174. for (int32 i = 0; i < luaspell->targets.size(); i++) {
  1175. if ((target = zone->GetSpawnByID(luaspell->targets[i]))) {
  1176. if (race_req.size() > 0) {
  1177. for (int8 i = 0; i < race_req.size(); i++) {
  1178. int32 xxx = target->GetLuaRaceId();
  1179. if (target->GetLuaRaceId() == race_req[i]) {
  1180. race_match = true;
  1181. }
  1182. }
  1183. }
  1184. else
  1185. race_match = true; // if the race_req.size = 0 then there is no race requirement and the race_match will be true
  1186. if (race_match == true) {
  1187. float distance = caster->GetDistance(target, true);
  1188. ((Entity*)caster)->SpellAttack(target, distance, luaspell, type, min_damage, max_damage, crit_mod, no_calcs);
  1189. }
  1190. }
  1191. }
  1192. success = true;
  1193. luaspell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  1194. }
  1195. else if (target) {
  1196. //check class and race/faction here
  1197. if (race_req.size() > 0) {
  1198. for (int8 i = 0; i < race_req.size(); i++) {
  1199. if (target->GetLuaRaceId() == race_req[i]) {
  1200. race_match = true;
  1201. }
  1202. }
  1203. }
  1204. else
  1205. race_match = true; // if the race_req.size = 0 then there is no race requirement and the race_match will be true
  1206. if (race_match == true) {
  1207. float distance = caster->GetDistance(target, true);
  1208. if (((Entity*)caster)->SpellAttack(target, distance, luaspell, type, min_damage, max_damage, crit_mod, no_calcs))
  1209. success = true;
  1210. }
  1211. }
  1212. if (success) {
  1213. Spell* spell = luaspell->spell;
  1214. if (caster->IsPlayer() && spell && spell->GetSpellData()->target_type == 1 && spell->GetSpellData()->spell_book_type == 1) { //offense combat art
  1215. ((Player*)caster)->InCombat(true);
  1216. if (caster->GetZone())
  1217. caster->GetZone()->TriggerCharSheetTimer();
  1218. }
  1219. }
  1220. }
  1221. return 0;
  1222. }
  1223. int EQ2Emu_lua_ModifyPower(lua_State* state) {
  1224. if (!lua_interface)
  1225. return 0;
  1226. Spawn* spawn = lua_interface->GetSpawn(state);
  1227. sint32 value = lua_interface->GetSInt32Value(state, 2);
  1228. lua_interface->ResetFunctionStack(state);
  1229. if (spawn && value != 0) {
  1230. if (spawn->GetPower() + value > spawn->GetTotalPower())
  1231. spawn->SetPower(spawn->GetTotalPower());
  1232. else
  1233. spawn->SetPower(spawn->GetPower() + value);
  1234. }
  1235. return 0;
  1236. }
  1237. int EQ2Emu_lua_ModifyHP(lua_State* state) {
  1238. if (!lua_interface)
  1239. return 0;
  1240. Spawn* spawn = lua_interface->GetSpawn(state);
  1241. sint32 value = lua_interface->GetSInt32Value(state, 2);
  1242. lua_interface->ResetFunctionStack(state);
  1243. if (spawn && value != 0) {
  1244. if (spawn->GetHP() + value > spawn->GetTotalHP())
  1245. spawn->SetHP(spawn->GetTotalHP());
  1246. else
  1247. spawn->SetHP(spawn->GetHP() + value);
  1248. }
  1249. return 0;
  1250. }
  1251. int EQ2Emu_lua_ModifyMaxPower(lua_State* state) {
  1252. if (!lua_interface)
  1253. return 0;
  1254. Spawn* spawn = lua_interface->GetSpawn(state);
  1255. sint32 value = lua_interface->GetSInt32Value(state, 2);
  1256. lua_interface->ResetFunctionStack(state);
  1257. if (spawn && value != 0) {
  1258. spawn->SetPower(spawn->GetPower() + value);
  1259. if (value > spawn->GetTotalHPBase())
  1260. spawn->SetTotalPower(spawn->GetTotalPower() + value);
  1261. }
  1262. return 0;
  1263. }
  1264. int EQ2Emu_lua_ModifyMaxHP(lua_State* state) {
  1265. if (!lua_interface)
  1266. return 0;
  1267. Spawn* spawn = lua_interface->GetSpawn(state);
  1268. sint32 value = lua_interface->GetSInt32Value(state, 2);
  1269. lua_interface->ResetFunctionStack(state);
  1270. if (spawn && value != 0) {
  1271. spawn->SetHP(spawn->GetHP() + value);
  1272. if (value > spawn->GetTotalHPBase())
  1273. spawn->SetTotalHP(spawn->GetTotalHP() + value);
  1274. }
  1275. return 0;
  1276. }
  1277. int EQ2Emu_lua_SetCurrentHP(lua_State* state) {
  1278. if (!lua_interface)
  1279. return 0;
  1280. Spawn* spawn = lua_interface->GetSpawn(state);
  1281. sint32 value = lua_interface->GetSInt32Value(state, 2);
  1282. lua_interface->ResetFunctionStack(state);
  1283. if (spawn && value > 0) {
  1284. spawn->SetHP(value);
  1285. if (value > spawn->GetTotalHPBase())
  1286. spawn->SetTotalHP(value);
  1287. }
  1288. return 0;
  1289. }
  1290. int EQ2Emu_lua_SetMaxHP(lua_State* state) {
  1291. if (!lua_interface)
  1292. return 0;
  1293. Spawn* spawn = lua_interface->GetSpawn(state);
  1294. float value = lua_interface->GetFloatValue(state, 2);
  1295. lua_interface->ResetFunctionStack(state);
  1296. if (spawn && spawn->IsEntity() && value > 0)
  1297. ((Entity*)spawn)->AddSpellBonus(0, ITEM_STAT_HEALTH, value - spawn->GetTotalHP());
  1298. if (spawn->IsPlayer())
  1299. ((Player*)spawn)->SetCharSheetChanged(true);
  1300. return 0;
  1301. }
  1302. int EQ2Emu_lua_SetMaxHPBase(lua_State* state) {
  1303. if (!lua_interface)
  1304. return 0;
  1305. Spawn* spawn = lua_interface->GetSpawn(state);
  1306. sint32 value = lua_interface->GetSInt32Value(state, 2);
  1307. lua_interface->ResetFunctionStack(state);
  1308. if (spawn && spawn->IsEntity() && value > 0)
  1309. ((Entity*)spawn)->SetTotalHPBase(value);
  1310. return 0;
  1311. }
  1312. int EQ2Emu_lua_SetCurrentPower(lua_State* state) {
  1313. if (!lua_interface)
  1314. return 0;
  1315. Spawn* spawn = lua_interface->GetSpawn(state);
  1316. sint32 value = lua_interface->GetSInt32Value(state, 2);
  1317. lua_interface->ResetFunctionStack(state);
  1318. if (spawn && value > 0) {
  1319. spawn->SetPower(value);
  1320. if (value > spawn->GetTotalPowerBase())
  1321. spawn->SetTotalPower(value);
  1322. }
  1323. return 0;
  1324. }
  1325. int EQ2Emu_lua_SetMaxPower(lua_State* state) {
  1326. if (!lua_interface)
  1327. return 0;
  1328. Spawn* spawn = lua_interface->GetSpawn(state);
  1329. sint32 value = lua_interface->GetSInt32Value(state, 2);
  1330. lua_interface->ResetFunctionStack(state);
  1331. if (spawn && spawn->IsEntity() && value > 0)
  1332. ((Entity*)spawn)->AddSpellBonus(0, ITEM_STAT_POWER, value - spawn->GetTotalPower());
  1333. return 0;
  1334. }
  1335. int EQ2Emu_lua_SetMaxPowerBase(lua_State* state) {
  1336. if (!lua_interface)
  1337. return 0;
  1338. Spawn* spawn = lua_interface->GetSpawn(state);
  1339. sint32 value = lua_interface->GetSInt32Value(state, 2);
  1340. lua_interface->ResetFunctionStack(state);
  1341. if (spawn && spawn->IsEntity() && value > 0)
  1342. ((Entity*)spawn)->SetTotalPowerBase(value);
  1343. return 0;
  1344. }
  1345. int EQ2Emu_lua_SetPosition(lua_State* state) {
  1346. if (!lua_interface)
  1347. return 0;
  1348. Spawn* spawn = lua_interface->GetSpawn(state);
  1349. float x = lua_interface->GetFloatValue(state, 2);
  1350. float y = lua_interface->GetFloatValue(state, 3);
  1351. float z = lua_interface->GetFloatValue(state, 4);
  1352. float heading = lua_interface->GetFloatValue(state, 5);
  1353. lua_interface->ResetFunctionStack(state);
  1354. if (spawn) {
  1355. spawn->SetX(x);
  1356. spawn->SetY(y);
  1357. spawn->SetZ(z);
  1358. if (heading != 0)
  1359. spawn->SetHeading(heading);
  1360. spawn->SetSpawnOrigX(spawn->GetX());
  1361. spawn->SetSpawnOrigY(spawn->GetY());
  1362. spawn->SetSpawnOrigZ(spawn->GetZ());
  1363. spawn->SetSpawnOrigHeading(spawn->GetHeading());
  1364. if (spawn->IsPlayer()) {
  1365. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  1366. if (client) {
  1367. EQ2Packet* packet = client->GetPlayer()->Move(x, y, z, client->GetVersion(), (heading == 0 ? -1.0f : (heading + 180.0f)));
  1368. client->QueuePacket(packet);
  1369. }
  1370. }
  1371. }
  1372. return 0;
  1373. }
  1374. int EQ2Emu_lua_SetHeading(lua_State* state) {
  1375. if (!lua_interface)
  1376. return 0;
  1377. Spawn* spawn = lua_interface->GetSpawn(state);
  1378. float value = lua_interface->GetFloatValue(state, 2);
  1379. lua_interface->ResetFunctionStack(state);
  1380. if (spawn) {
  1381. spawn->SetHeading(value);
  1382. if (spawn->IsPlayer()) {
  1383. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  1384. if (client) {
  1385. EQ2Packet* packet = client->GetPlayer()->Move(spawn->GetX(), spawn->GetY(), spawn->GetZ(), client->GetVersion(), value + 180.0f);
  1386. client->QueuePacket(packet);
  1387. }
  1388. }
  1389. }
  1390. return 0;
  1391. }
  1392. int EQ2Emu_lua_SetModelType(lua_State* state) {
  1393. if (!lua_interface)
  1394. return 0;
  1395. Spawn* spawn = lua_interface->GetSpawn(state);
  1396. int16 value = lua_interface->GetInt16Value(state, 2);
  1397. lua_interface->ResetFunctionStack(state);
  1398. if (spawn)
  1399. spawn->SetModelType(value);
  1400. return 0;
  1401. }
  1402. int EQ2Emu_lua_SetAdventureClass(lua_State* state) {
  1403. if (!lua_interface)
  1404. return 0;
  1405. Spawn* spawn = lua_interface->GetSpawn(state);
  1406. int8 value = lua_interface->GetInt8Value(state, 2);
  1407. lua_interface->ResetFunctionStack(state);
  1408. if (spawn) {
  1409. if (spawn->IsPlayer())
  1410. ((Player*)spawn)->SetPlayerAdventureClass(value);
  1411. else
  1412. spawn->SetAdventureClass(value);
  1413. }
  1414. return 0;
  1415. }
  1416. int EQ2Emu_lua_SetTradeskillClass(lua_State* state) {
  1417. if (!lua_interface)
  1418. return 0;
  1419. Spawn* spawn = lua_interface->GetSpawn(state);
  1420. int8 value = lua_interface->GetInt8Value(state, 2);
  1421. lua_interface->ResetFunctionStack(state);
  1422. if (spawn) {
  1423. spawn->SetTradeskillClass(value);
  1424. if (spawn->IsEntity()) {
  1425. ((Entity*)spawn)->GetInfoStruct()->tradeskill_class1 = classes.GetTSBaseClass(spawn->GetTradeskillClass());
  1426. ((Entity*)spawn)->GetInfoStruct()->tradeskill_class2 = classes.GetSecondaryTSBaseClass(spawn->GetTradeskillClass());
  1427. ((Entity*)spawn)->GetInfoStruct()->tradeskill_class3 = spawn->GetTradeskillClass();
  1428. }
  1429. if (spawn->IsPlayer())
  1430. ((Player*)spawn)->SetCharSheetChanged(true);
  1431. }
  1432. return 0;
  1433. }
  1434. int EQ2Emu_lua_SetMount(lua_State* state) {
  1435. if (!lua_interface)
  1436. return 0;
  1437. Spawn* spawn = lua_interface->GetSpawn(state);
  1438. int16 value = lua_interface->GetInt16Value(state, 2);
  1439. if (spawn && spawn->IsEntity()) {
  1440. ((Entity*)spawn)->SetMount(value);
  1441. EQ2_Color color;
  1442. color.red = 255;
  1443. color.green = 255;
  1444. color.blue = 255;
  1445. ((Entity*)spawn)->SetMountColor(&color);
  1446. ((Entity*)spawn)->SetMountSaddleColor(&color);
  1447. }
  1448. return 0;
  1449. }
  1450. int EQ2Emu_lua_SetMountColor(lua_State* state) {
  1451. if (!lua_interface)
  1452. return 0;
  1453. Spawn* spawn = lua_interface->GetSpawn(state);
  1454. EQ2_Color mount_color;
  1455. EQ2_Color saddle_color;
  1456. mount_color.red = lua_interface->GetInt8Value(state, 2);
  1457. mount_color.green = lua_interface->GetInt8Value(state, 3);
  1458. mount_color.blue = lua_interface->GetInt8Value(state, 4);
  1459. saddle_color.red = lua_interface->GetInt8Value(state, 5);
  1460. saddle_color.green = lua_interface->GetInt8Value(state, 6);
  1461. saddle_color.blue = lua_interface->GetInt8Value(state, 7);
  1462. if (spawn && spawn->IsEntity()) {
  1463. ((Entity*)spawn)->SetMountColor(&mount_color);
  1464. ((Entity*)spawn)->SetMountSaddleColor(&saddle_color);
  1465. }
  1466. return 0;
  1467. }
  1468. int EQ2Emu_lua_GetMount(lua_State* state) {
  1469. if (!lua_interface)
  1470. return 0;
  1471. Spawn* spawn = lua_interface->GetSpawn(state);
  1472. if (spawn && spawn->IsEntity()) {
  1473. lua_interface->SetInt32Value(state, ((Entity*)spawn)->GetMount());
  1474. return 1;
  1475. }
  1476. return 0;
  1477. }
  1478. int EQ2Emu_lua_GetRace(lua_State* state) {
  1479. if (!lua_interface)
  1480. return 0;
  1481. Spawn* spawn = lua_interface->GetSpawn(state);
  1482. if (spawn)
  1483. {
  1484. LogWrite(LUA__DEBUG, 0, "LUA", "%s - Race: %i", __FUNCTION__, spawn->GetRace());
  1485. lua_interface->SetInt32Value(state, spawn->GetRace());
  1486. return 1;
  1487. }
  1488. return 0;
  1489. }
  1490. int EQ2Emu_lua_GetRaceName(lua_State* state) {
  1491. if (!lua_interface)
  1492. return 0;
  1493. Spawn* spawn = lua_interface->GetSpawn(state);
  1494. if (spawn) {
  1495. lua_interface->SetStringValue(state, races.GetRaceName(spawn->GetRace()));
  1496. return 1;
  1497. }
  1498. return 0;
  1499. }
  1500. int EQ2Emu_lua_GetClass(lua_State* state) {
  1501. Spawn* spawn = lua_interface->GetSpawn(state);
  1502. if (spawn) {
  1503. lua_interface->SetInt32Value(state, spawn->GetAdventureClass());
  1504. return 1;
  1505. }
  1506. return 0;
  1507. }
  1508. int EQ2Emu_lua_GetClassName(lua_State* state) {
  1509. Spawn* spawn = lua_interface->GetSpawn(state);
  1510. if (spawn) {
  1511. lua_interface->SetStringValue(state, classes.GetClassName(spawn->GetAdventureClass()));
  1512. return 1;
  1513. }
  1514. return 0;
  1515. }
  1516. int EQ2Emu_lua_SetSpeed(lua_State* state) {
  1517. if (!lua_interface)
  1518. return 0;
  1519. Spawn* spawn = lua_interface->GetSpawn(state);
  1520. float value = lua_interface->GetFloatValue(state, 2);
  1521. lua_interface->ResetFunctionStack(state);
  1522. if (spawn) {
  1523. spawn->SetSpeed(value);
  1524. ((Entity*)spawn)->SetSpeed(value);
  1525. if (spawn->IsPlayer()) {
  1526. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  1527. if (client) {
  1528. PacketStruct* packet = configReader.getStruct("WS_SetControlGhost", client->GetVersion());
  1529. if (packet) {
  1530. packet->setDataByName("spawn_id", 0xFFFFFFFF);
  1531. packet->setDataByName("speed", value);
  1532. packet->setDataByName("size", 0.51);
  1533. EQ2Packet* app = packet->serialize();
  1534. client->QueuePacket(app);
  1535. safe_delete(packet);
  1536. }
  1537. }
  1538. }
  1539. }
  1540. return 0;
  1541. }
  1542. int EQ2Emu_lua_AddSpellBonus(lua_State* state) {
  1543. if (!lua_interface)
  1544. return 0;
  1545. Spawn* spawn = lua_interface->GetSpawn(state);
  1546. const int16 type = lua_interface->GetInt16Value(state, 2);
  1547. const float value = lua_interface->GetFloatValue(state, 3);
  1548. LuaSpell* luaspell = lua_interface->GetCurrentSpell(state);
  1549. int64 class_req = 0;
  1550. int32 class_id = 0;
  1551. vector<int16> faction_req;
  1552. vector<int16> race_req;
  1553. int32 i = 0;
  1554. int8 f = 0;
  1555. int8 r = 0;
  1556. while ((class_id = lua_interface->GetInt32Value(state, 4 + i))) {
  1557. if (class_id < 100) {
  1558. class_req += pow(2.0, double(class_id - 1));
  1559. }
  1560. else if (class_id > 100 && class_id < 1000) {
  1561. race_req.push_back(class_id);
  1562. r++;
  1563. }
  1564. else {
  1565. faction_req.push_back(class_id);
  1566. f++;
  1567. }
  1568. i++;
  1569. }
  1570. if (value != 0 && type >= 0) {
  1571. if (luaspell && luaspell->spell && luaspell->caster) {
  1572. ZoneServer* zone = luaspell->caster->GetZone();
  1573. luaspell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  1574. for (int32 i = 0; i < luaspell->targets.size(); i++) {
  1575. Spawn* target = zone->GetSpawnByID(luaspell->targets[i]);
  1576. if (target) {
  1577. if (target->IsPlayer()) {
  1578. ((Player*)target)->AddSpellBonus(luaspell, type, value, class_req, race_req, faction_req);
  1579. LogWrite(LUA__DEBUG, 0, "LUA", "Applying Spell Bonus to Player '%s'. Is a Group Member.", ((Player*)target)->GetName());
  1580. if (((Player*)target)->GetGroupMemberInfo())
  1581. ((Player*)target)->UpdateGroupMemberInfo();
  1582. ((Player*)target)->SetCharSheetChanged(true);
  1583. }
  1584. else if (target->IsNPC())
  1585. ((NPC*)target)->AddSpellBonus(luaspell, type, value, class_req, race_req, faction_req);
  1586. else
  1587. lua_interface->LogError("%s: Error applying spell bonus on non entity.", lua_interface->GetScriptName(state));
  1588. }
  1589. }
  1590. luaspell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  1591. if (!(luaspell->effect_bitmask & EFFECT_FLAG_SPELLBONUS))
  1592. luaspell->effect_bitmask += EFFECT_FLAG_SPELLBONUS;
  1593. }
  1594. else if (spawn && spawn->IsEntity()) {
  1595. ((Entity*)spawn)->AddSpellBonus(luaspell, type, value, class_req, race_req, faction_req);
  1596. LogWrite(LUA__DEBUG, 0, "LUA", "Applying Spell Bonus to Entity '%s'. Is a Group Member.", ((Entity*)spawn)->GetName());
  1597. if (spawn->IsPlayer())
  1598. ((Player*)spawn)->SetCharSheetChanged(true);
  1599. }
  1600. else
  1601. lua_interface->LogError("%s: Unable to apply spell bonus in AddSpellBonus.", lua_interface->GetScriptName(state));
  1602. }
  1603. else
  1604. lua_interface->LogError("%s: Invalid parameters for AddSpellBonus.", lua_interface->GetScriptName(state));
  1605. return 0;
  1606. }
  1607. int EQ2Emu_lua_AddSpawnSpellBonus(lua_State* state) {
  1608. if (!lua_interface)
  1609. return 0;
  1610. Spawn* spawn = lua_interface->GetSpawn(state);
  1611. int16 type = lua_interface->GetInt16Value(state, 2);
  1612. sint32 value = lua_interface->GetSInt32Value(state, 3);
  1613. LuaSpell* luaspell = lua_interface->GetCurrentSpell(state);
  1614. if (!spawn) {
  1615. lua_interface->LogError("%s: LUA AddSpawnSpellBonus command error: spawn is not valid", lua_interface->GetScriptName(state));
  1616. return 0;
  1617. }
  1618. if (!spawn->IsEntity()) {
  1619. lua_interface->LogError("%s: LUA AddSpawnSpellBonus command error: spawn is not an entity", lua_interface->GetScriptName(state));
  1620. return 0;
  1621. }
  1622. if (value == 0) {
  1623. lua_interface->LogError("%s: LUA AddSpawnSpellBonus command error: value must be set", lua_interface->GetScriptName(state));
  1624. return 0;
  1625. }
  1626. if (!luaspell || !luaspell->spell) {
  1627. lua_interface->LogError("%s: LUA AddSpawnSpellBonus command error: can only be used in a spell script", lua_interface->GetScriptName(state));
  1628. return 0;
  1629. }
  1630. int32 class_req = 0;
  1631. vector<int16> faction_req;
  1632. vector<int16> race_req;
  1633. int32 class_id = 0;
  1634. int32 i = 0;
  1635. int8 f = 0;
  1636. int8 r = 0;
  1637. while ((class_id = lua_interface->GetInt32Value(state, 4 + i))) {
  1638. if (class_id < 100) {
  1639. class_req += pow(2.0, double(class_id - 1));
  1640. }
  1641. else if (class_id > 100 && class_id < 1000) {
  1642. race_req.push_back(class_id);
  1643. r++;
  1644. }
  1645. else {
  1646. faction_req.push_back(class_id);
  1647. f++;
  1648. }
  1649. i++;
  1650. }
  1651. ((Entity*)spawn)->AddSpellBonus(luaspell, type, value, class_req, race_req, faction_req);
  1652. if (!(luaspell->effect_bitmask & EFFECT_FLAG_SPELLBONUS))
  1653. luaspell->effect_bitmask += EFFECT_FLAG_SPELLBONUS;
  1654. if (spawn->IsPlayer())
  1655. ((Player*)spawn)->SetCharSheetChanged(true);
  1656. return 0;
  1657. }
  1658. int EQ2Emu_lua_RemoveSpellBonus(lua_State* state) {
  1659. if (!lua_interface)
  1660. return 0;
  1661. Spawn* spawn = lua_interface->GetSpawn(state);
  1662. LuaSpell* luaspell = lua_interface->GetCurrentSpell(state);
  1663. if (luaspell && luaspell->spell) {
  1664. ZoneServer* zone = luaspell->caster->GetZone();
  1665. Spawn* target = 0;
  1666. luaspell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  1667. for (int32 i = 0; i < luaspell->targets.size(); i++) {
  1668. target = zone->GetSpawnByID(luaspell->targets[i]);
  1669. if (target && target->IsEntity()) {
  1670. ((Entity*)target)->RemoveSpellBonus(luaspell);
  1671. if (target->IsPlayer())
  1672. ((Player*)target)->SetCharSheetChanged(true);
  1673. }
  1674. }
  1675. luaspell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  1676. }
  1677. else if (spawn && spawn->IsEntity()) {
  1678. ((Entity*)spawn)->RemoveSpellBonus(luaspell);
  1679. if (spawn->IsPlayer())
  1680. ((Player*)spawn)->SetCharSheetChanged(true);
  1681. }
  1682. return 0;
  1683. }
  1684. int EQ2Emu_lua_AddSkillBonus(lua_State* state) {
  1685. if (!lua_interface)
  1686. return 0;
  1687. Spawn* spawn = lua_interface->GetSpawn(state);
  1688. int32 skill_id = lua_interface->GetInt32Value(state, 2);
  1689. float value = lua_interface->GetFloatValue(state, 3);
  1690. LuaSpell* luaspell = lua_interface->GetCurrentSpell(state);
  1691. if (value != 0) {
  1692. int32 spell_id = 0;
  1693. if (luaspell && luaspell->spell && luaspell->caster) {
  1694. spell_id = luaspell->spell->GetSpellID();
  1695. ZoneServer* zone = luaspell->caster->GetZone();
  1696. Spawn* target = 0;
  1697. luaspell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  1698. for (int32 i = 0; i < luaspell->targets.size(); i++) {
  1699. target = zone->GetSpawnByID(luaspell->targets[i]);
  1700. if (target && target->Alive()) {
  1701. if (target->IsPlayer()) {
  1702. ((Player*)target)->AddSkillBonus(spell_id, skill_id, value);
  1703. Client* client = target->GetZone()->GetClientBySpawn(target);
  1704. if (client) {
  1705. EQ2Packet* packet = ((Player*)target)->GetSkills()->GetSkillPacket(client->GetVersion());
  1706. if (packet)
  1707. client->QueuePacket(packet);
  1708. }
  1709. if (!(luaspell->effect_bitmask & EFFECT_FLAG_SKILLBONUS))
  1710. luaspell->effect_bitmask += EFFECT_FLAG_SKILLBONUS;
  1711. }
  1712. else if (target->IsNPC()) {
  1713. ((NPC*)target)->AddSkillBonus(spell_id, skill_id, value);
  1714. if (!(luaspell->effect_bitmask & EFFECT_FLAG_SKILLBONUS))
  1715. luaspell->effect_bitmask += EFFECT_FLAG_SKILLBONUS;
  1716. }
  1717. else
  1718. LogWrite(LUA__ERROR, 0, "LUA", "Error applying bonus buff on '%s'. Not a NPC or player.", target->GetName());
  1719. }
  1720. }
  1721. luaspell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  1722. }
  1723. else if (spawn) {
  1724. if (spawn->IsPlayer()) {
  1725. ((Player*)spawn)->AddSkillBonus(spell_id, skill_id, value);
  1726. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  1727. if (client) {
  1728. EQ2Packet* packet = ((Player*)spawn)->GetSkills()->GetSkillPacket(client->GetVersion());
  1729. if (packet)
  1730. client->QueuePacket(packet);
  1731. }
  1732. }
  1733. else if (spawn->IsNPC())
  1734. ((NPC*)spawn)->AddSkillBonus(spell_id, skill_id, value);
  1735. else
  1736. LogWrite(LUA__ERROR, 0, "LUA", "Error applying skill bonus on '%s'. Not a NPC or player.", spawn->GetName());
  1737. }
  1738. }
  1739. else
  1740. lua_interface->LogError("%s: Invalid parameters for AddSkillBonus.", lua_interface->GetScriptName(state));
  1741. return 0;
  1742. }
  1743. int EQ2Emu_lua_RemoveSkillBonus(lua_State* state) {
  1744. if (!lua_interface)
  1745. return 0;
  1746. Spawn* spawn = lua_interface->GetSpawn(state);
  1747. LuaSpell* luaspell = lua_interface->GetCurrentSpell(state);
  1748. if (spawn && spawn->IsPlayer()) {
  1749. int32 spell_id = 0;
  1750. if (luaspell && luaspell->spell) {
  1751. spell_id = luaspell->spell->GetSpellID();
  1752. ZoneServer* zone = luaspell->caster->GetZone();
  1753. Spawn* target = 0;
  1754. luaspell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  1755. for (int32 i = 0; i < luaspell->targets.size(); i++) {
  1756. target = zone->GetSpawnByID(luaspell->targets[i]);
  1757. if (target) {
  1758. if (target->IsPlayer()) {
  1759. ((Player*)target)->RemoveSkillBonus(spell_id);
  1760. Client* client = target->GetZone()->GetClientBySpawn(target);
  1761. if (client) {
  1762. EQ2Packet* packet = ((Player*)target)->GetSkills()->GetSkillPacket(client->GetVersion());
  1763. if (packet)
  1764. client->QueuePacket(packet);
  1765. }
  1766. }
  1767. else if (target->IsNPC())
  1768. ((NPC*)target)->RemoveSkillBonus(spell_id);
  1769. else
  1770. LogWrite(LUA__ERROR, 0, "LUA", "Error removing skill bonus on '%s'. Not a NPC or player.", spawn->GetName());
  1771. }
  1772. }
  1773. luaspell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  1774. }
  1775. else if (spawn) {
  1776. if (spawn->IsPlayer()) {
  1777. ((Player*)spawn)->RemoveSkillBonus(spell_id);
  1778. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  1779. if (client) {
  1780. EQ2Packet* packet = ((Player*)spawn)->GetSkills()->GetSkillPacket(client->GetVersion());
  1781. if (packet)
  1782. client->QueuePacket(packet);
  1783. }
  1784. }
  1785. else if (spawn->IsNPC())
  1786. ((NPC*)spawn)->RemoveSkillBonus(spell_id);
  1787. else
  1788. LogWrite(LUA__ERROR, 0, "LUA", "Error removing skill bonus on '%s'. Not a NPC or player.", spawn->GetName());
  1789. }
  1790. }
  1791. return 0;
  1792. }
  1793. int EQ2Emu_lua_AddControlEffect(lua_State* state) {
  1794. if (!lua_interface)
  1795. return 0;
  1796. Spawn* spawn = lua_interface->GetSpawn(state);
  1797. int8 type = lua_interface->GetInt32Value(state, 2);
  1798. bool only_add_spawn = lua_interface->GetInt8Value(state, 3) == 1;
  1799. LuaSpell* luaspell = lua_interface->GetCurrentSpell(state);
  1800. if (!only_add_spawn && luaspell && luaspell->spell && luaspell->caster && type != 0) {
  1801. ZoneServer* zone = luaspell->caster->GetZone();
  1802. Spawn* target = 0;
  1803. luaspell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  1804. for (int32 i = 0; i < luaspell->targets.size(); i++) {
  1805. target = zone->GetSpawnByID(luaspell->targets[i]);
  1806. if (target && target->IsEntity()) {
  1807. if (type == CONTROL_EFFECT_TYPE_MEZ) {
  1808. ((Entity*)target)->AddMezSpell(luaspell);
  1809. if (!(luaspell->effect_bitmask & EFFECT_FLAG_MEZ))
  1810. luaspell->effect_bitmask += EFFECT_FLAG_MEZ;
  1811. if (target->IsNPC())
  1812. ((NPC*)target)->Brain()->AddHate(luaspell->caster, 5);
  1813. }
  1814. else if (type == CONTROL_EFFECT_TYPE_STIFLE) {
  1815. ((Entity*)target)->AddStifleSpell(luaspell);
  1816. if (!(luaspell->effect_bitmask & EFFECT_FLAG_STIFLE))
  1817. luaspell->effect_bitmask += EFFECT_FLAG_STIFLE;
  1818. if (target->IsNPC())
  1819. ((NPC*)target)->Brain()->AddHate(luaspell->caster, 5);
  1820. }
  1821. else if (type == CONTROL_EFFECT_TYPE_DAZE) {
  1822. ((Entity*)target)->AddDazeSpell(luaspell);
  1823. if (!(luaspell->effect_bitmask & EFFECT_FLAG_DAZE))
  1824. luaspell->effect_bitmask += EFFECT_FLAG_DAZE;
  1825. if (target->IsNPC())
  1826. ((NPC*)target)->Brain()->AddHate(luaspell->caster, 5);
  1827. }
  1828. else if (type == CONTROL_EFFECT_TYPE_STUN) {
  1829. if (!(luaspell->effect_bitmask & EFFECT_FLAG_STUN))
  1830. luaspell->effect_bitmask += EFFECT_FLAG_STUN;
  1831. ((Entity*)target)->AddStunSpell(luaspell);
  1832. if (target->IsNPC())
  1833. ((NPC*)target)->Brain()->AddHate(luaspell->caster, 5);
  1834. }
  1835. else if (type == CONTROL_EFFECT_TYPE_ROOT) {
  1836. if (!(luaspell->effect_bitmask & EFFECT_FLAG_ROOT))
  1837. luaspell->effect_bitmask += EFFECT_FLAG_ROOT;
  1838. ((Entity*)target)->AddRootSpell(luaspell);
  1839. if (target->IsNPC())
  1840. ((NPC*)target)->Brain()->AddHate(luaspell->caster, 5);
  1841. }
  1842. else if (type == CONTROL_EFFECT_TYPE_FEAR) {
  1843. if (!(luaspell->effect_bitmask & EFFECT_FLAG_FEAR))
  1844. luaspell->effect_bitmask += EFFECT_FLAG_FEAR;
  1845. ((Entity*)target)->AddFearSpell(luaspell);
  1846. if (target->IsNPC())
  1847. ((NPC*)target)->Brain()->AddHate(luaspell->caster, 5);
  1848. }
  1849. else if (type == CONTROL_EFFECT_TYPE_WALKUNDERWATER) {
  1850. ((Entity*)target)->AddWaterwalkSpell(luaspell);
  1851. if (!(luaspell->effect_bitmask & EFFECT_FLAG_WATERWALK))
  1852. luaspell->effect_bitmask += EFFECT_FLAG_WATERWALK;
  1853. }
  1854. else if (type == CONTROL_EFFECT_TYPE_JUMPUNDERWATER) {
  1855. ((Entity*)target)->AddWaterjumpSpell(luaspell);
  1856. if (!(luaspell->effect_bitmask & EFFECT_FLAG_WATERJUMP))
  1857. luaspell->effect_bitmask += EFFECT_FLAG_WATERJUMP;
  1858. }
  1859. else if (type == CONTROL_EFFECT_TYPE_SNARE) {
  1860. ((Entity*)target)->AddSnareSpell(luaspell);
  1861. if (!(luaspell->effect_bitmask & EFFECT_FLAG_SNARE))
  1862. luaspell->effect_bitmask += EFFECT_FLAG_SNARE;
  1863. if (target->IsNPC())
  1864. ((NPC*)target)->Brain()->AddHate(luaspell->caster, 5);
  1865. }
  1866. else if (type == CONTROL_EFFECT_TYPE_FLIGHT) {
  1867. ((Entity*)target)->AddFlightSpell(luaspell);
  1868. if (!(luaspell->effect_bitmask & EFFECT_FLAG_FLIGHT))
  1869. luaspell->effect_bitmask += EFFECT_FLAG_FLIGHT;
  1870. }
  1871. else if (type == CONTROL_EFFECT_TYPE_GLIDE) {
  1872. ((Entity*)target)->AddGlideSpell(luaspell);
  1873. if (!(luaspell->effect_bitmask & EFFECT_FLAG_GLIDE))
  1874. luaspell->effect_bitmask += EFFECT_FLAG_GLIDE;
  1875. }
  1876. else if (type == CONTROL_EFFECT_TYPE_SAFEFALL) {
  1877. ((Entity*)target)->AddSafefallSpell(luaspell);
  1878. if (!(luaspell->effect_bitmask & EFFECT_FLAG_SAFEFALL))
  1879. luaspell->effect_bitmask += EFFECT_FLAG_SAFEFALL;
  1880. }
  1881. else
  1882. lua_interface->LogError("%s: Unhandled control effect type of %u.", lua_interface->GetScriptName(state), type);
  1883. }
  1884. else
  1885. lua_interface->LogError("%s: Error applying control effect on non entity '%s'.", lua_interface->GetScriptName(state), target->GetName());
  1886. }
  1887. luaspell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  1888. }
  1889. else if (only_add_spawn && spawn && spawn->IsEntity()) {
  1890. if (type == CONTROL_EFFECT_TYPE_MEZ) {
  1891. ((Entity*)spawn)->AddMezSpell(luaspell);
  1892. if (!(luaspell->effect_bitmask & EFFECT_FLAG_MEZ))
  1893. luaspell->effect_bitmask += EFFECT_FLAG_MEZ;
  1894. }
  1895. else if (type == CONTROL_EFFECT_TYPE_STIFLE) {
  1896. ((Entity*)spawn)->AddStifleSpell(luaspell);
  1897. if (!(luaspell->effect_bitmask & EFFECT_FLAG_STIFLE))
  1898. luaspell->effect_bitmask += EFFECT_FLAG_STIFLE;
  1899. }
  1900. else if (type == CONTROL_EFFECT_TYPE_DAZE) {
  1901. ((Entity*)spawn)->AddDazeSpell(luaspell);
  1902. if (!(luaspell->effect_bitmask & EFFECT_FLAG_DAZE))
  1903. luaspell->effect_bitmask += EFFECT_FLAG_DAZE;
  1904. }
  1905. else if (type == CONTROL_EFFECT_TYPE_STUN) {
  1906. ((Entity*)spawn)->AddStunSpell(luaspell);
  1907. if (!(luaspell->effect_bitmask & EFFECT_FLAG_STUN))
  1908. luaspell->effect_bitmask += EFFECT_FLAG_STUN;
  1909. }
  1910. else if (type == CONTROL_EFFECT_TYPE_ROOT) {
  1911. ((Entity*)spawn)->AddRootSpell(luaspell);
  1912. if (!(luaspell->effect_bitmask & EFFECT_FLAG_ROOT))
  1913. luaspell->effect_bitmask += EFFECT_FLAG_ROOT;
  1914. }
  1915. else if (type == CONTROL_EFFECT_TYPE_FEAR) {
  1916. ((Entity*)spawn)->AddFearSpell(luaspell);
  1917. if (!(luaspell->effect_bitmask & EFFECT_FLAG_FEAR))
  1918. luaspell->effect_bitmask += EFFECT_FLAG_FEAR;
  1919. }
  1920. else if (type == CONTROL_EFFECT_TYPE_WALKUNDERWATER) {
  1921. ((Entity*)spawn)->AddWaterwalkSpell(luaspell);
  1922. if (!(luaspell->effect_bitmask & EFFECT_FLAG_WATERWALK))
  1923. luaspell->effect_bitmask += EFFECT_FLAG_WATERWALK;
  1924. }
  1925. else if (type == CONTROL_EFFECT_TYPE_JUMPUNDERWATER) {
  1926. ((Entity*)spawn)->AddWaterjumpSpell(luaspell);
  1927. if (!(luaspell->effect_bitmask & EFFECT_FLAG_WATERJUMP))
  1928. luaspell->effect_bitmask += EFFECT_FLAG_WATERJUMP;
  1929. }
  1930. else if (type == CONTROL_EFFECT_TYPE_SNARE) {
  1931. ((Entity*)spawn)->AddSnareSpell(luaspell);
  1932. if (!(luaspell->effect_bitmask & EFFECT_FLAG_SNARE))
  1933. luaspell->effect_bitmask += EFFECT_FLAG_SNARE;
  1934. }
  1935. else if (type == CONTROL_EFFECT_TYPE_FLIGHT) {
  1936. ((Entity*)spawn)->AddFlightSpell(luaspell);
  1937. if (!(luaspell->effect_bitmask & EFFECT_FLAG_FLIGHT))
  1938. luaspell->effect_bitmask += EFFECT_FLAG_FLIGHT;
  1939. }
  1940. else if (type == CONTROL_EFFECT_TYPE_GLIDE) {
  1941. ((Entity*)spawn)->AddGlideSpell(luaspell);
  1942. if (!(luaspell->effect_bitmask & EFFECT_FLAG_GLIDE))
  1943. luaspell->effect_bitmask += EFFECT_FLAG_GLIDE;
  1944. }
  1945. else if (type == CONTROL_EFFECT_TYPE_SAFEFALL) {
  1946. ((Entity*)spawn)->AddSafefallSpell(luaspell);
  1947. if (!(luaspell->effect_bitmask & EFFECT_FLAG_SAFEFALL))
  1948. luaspell->effect_bitmask += EFFECT_FLAG_SAFEFALL;
  1949. }
  1950. else
  1951. lua_interface->LogError("%s: Unhandled control effect type of %u.", lua_interface->GetScriptName(state), type);
  1952. }
  1953. else
  1954. lua_interface->LogError("%s: Error applying control effect on non entity '%s'.", lua_interface->GetScriptName(state), spawn->GetName());
  1955. return 0;
  1956. }
  1957. int EQ2Emu_lua_RemoveControlEffect(lua_State* state) {
  1958. if (!lua_interface)
  1959. return 0;
  1960. Spawn* spawn = lua_interface->GetSpawn(state);
  1961. int8 type = lua_interface->GetInt8Value(state, 2);
  1962. bool only_remove_spawn = lua_interface->GetInt8Value(state, 3) == 1;
  1963. LuaSpell* luaspell = lua_interface->GetCurrentSpell(state);
  1964. if (spawn && spawn->IsEntity()) {
  1965. if (!only_remove_spawn && luaspell && luaspell->spell) {
  1966. ZoneServer* zone = luaspell->caster->GetZone();
  1967. Spawn* target = 0;
  1968. luaspell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  1969. for (int32 i = 0; i < luaspell->targets.size(); i++) {
  1970. target = zone->GetSpawnByID(luaspell->targets[i]);
  1971. if (target) {
  1972. if (type == CONTROL_EFFECT_TYPE_MEZ)
  1973. ((Entity*)target)->RemoveMezSpell(luaspell);
  1974. else if (type == CONTROL_EFFECT_TYPE_STIFLE)
  1975. ((Entity*)target)->RemoveStifleSpell(luaspell);
  1976. else if (type == CONTROL_EFFECT_TYPE_DAZE)
  1977. ((Entity*)target)->RemoveDazeSpell(luaspell);
  1978. else if (type == CONTROL_EFFECT_TYPE_STUN)
  1979. ((Entity*)target)->RemoveStunSpell(luaspell);
  1980. else if (type == CONTROL_EFFECT_TYPE_ROOT)
  1981. ((Entity*)target)->RemoveRootSpell(luaspell);
  1982. else if (type == CONTROL_EFFECT_TYPE_FEAR)
  1983. ((Entity*)target)->RemoveFearSpell(luaspell);
  1984. else if (type == CONTROL_EFFECT_TYPE_WALKUNDERWATER)
  1985. ((Entity*)target)->RemoveWaterwalkSpell(luaspell);
  1986. else if (type == CONTROL_EFFECT_TYPE_JUMPUNDERWATER)
  1987. ((Entity*)target)->RemoveWaterjumpSpell(luaspell);
  1988. else if (type == CONTROL_EFFECT_TYPE_SNARE)
  1989. ((Entity*)target)->RemoveSnareSpell(luaspell);
  1990. else if (type == CONTROL_EFFECT_TYPE_FLIGHT)
  1991. ((Entity*)target)->RemoveFlightSpell(luaspell);
  1992. else if (type == CONTROL_EFFECT_TYPE_GLIDE)
  1993. ((Entity*)target)->RemoveGlideSpell(luaspell);
  1994. else if (type == CONTROL_EFFECT_TYPE_SAFEFALL)
  1995. ((Entity*)target)->RemoveGlideSpell(luaspell);
  1996. else
  1997. lua_interface->LogError("%s: Unhandled control effect type of %u.", lua_interface->GetScriptName(state), type);
  1998. }
  1999. }
  2000. luaspell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  2001. }
  2002. else if (only_remove_spawn) {
  2003. if (type == CONTROL_EFFECT_TYPE_MEZ)
  2004. ((Entity*)spawn)->RemoveMezSpell(luaspell);
  2005. else if (type == CONTROL_EFFECT_TYPE_STIFLE)
  2006. ((Entity*)spawn)->RemoveStifleSpell(luaspell);
  2007. else if (type == CONTROL_EFFECT_TYPE_DAZE)
  2008. ((Entity*)spawn)->RemoveDazeSpell(luaspell);
  2009. else if (type == CONTROL_EFFECT_TYPE_STUN)
  2010. ((Entity*)spawn)->RemoveStunSpell(luaspell);
  2011. else if (type == CONTROL_EFFECT_TYPE_ROOT)
  2012. ((Entity*)spawn)->RemoveRootSpell(luaspell);
  2013. else if (type == CONTROL_EFFECT_TYPE_FEAR)
  2014. ((Entity*)spawn)->RemoveFearSpell(luaspell);
  2015. else if (type == CONTROL_EFFECT_TYPE_WALKUNDERWATER)
  2016. ((Entity*)spawn)->RemoveWaterwalkSpell(luaspell);
  2017. else if (type == CONTROL_EFFECT_TYPE_JUMPUNDERWATER)
  2018. ((Entity*)spawn)->RemoveWaterjumpSpell(luaspell);
  2019. else if (type == CONTROL_EFFECT_TYPE_SNARE)
  2020. ((Entity*)spawn)->RemoveSnareSpell(luaspell);
  2021. else if (type == CONTROL_EFFECT_TYPE_FLIGHT)
  2022. ((Entity*)spawn)->RemoveFlightSpell(luaspell);
  2023. else if (type == CONTROL_EFFECT_TYPE_GLIDE)
  2024. ((Entity*)spawn)->RemoveGlideSpell(luaspell);
  2025. else if (type == CONTROL_EFFECT_TYPE_SAFEFALL)
  2026. ((Entity*)spawn)->RemoveSafefallSpell(luaspell);
  2027. else
  2028. lua_interface->LogError("%s: Unhandled control effect type of %u.", lua_interface->GetScriptName(state), type);
  2029. }
  2030. }
  2031. return 0;
  2032. }
  2033. int EQ2Emu_lua_SetIntBase(lua_State* state) {
  2034. if (!lua_interface)
  2035. return 0;
  2036. Spawn* spawn = lua_interface->GetSpawn(state);
  2037. int16 value = lua_interface->GetInt16Value(state, 2);
  2038. if (spawn && spawn->IsEntity()) {
  2039. ((Entity*)spawn)->GetInfoStruct()->intel_base = value;
  2040. if (spawn->IsPlayer())
  2041. ((Player*)spawn)->SetCharSheetChanged(true);
  2042. }
  2043. return 0;
  2044. }
  2045. int EQ2Emu_lua_SetAgiBase(lua_State* state) {
  2046. if (!lua_interface)
  2047. return 0;
  2048. Spawn* spawn = lua_interface->GetSpawn(state);
  2049. int16 value = lua_interface->GetInt16Value(state, 2);
  2050. if (spawn && spawn->IsEntity()) {
  2051. ((Entity*)spawn)->GetInfoStruct()->agi_base = value;
  2052. if (spawn->IsPlayer())
  2053. ((Player*)spawn)->SetCharSheetChanged(true);
  2054. }
  2055. return 0;
  2056. }
  2057. int EQ2Emu_lua_SetWisBase(lua_State* state) {
  2058. if (!lua_interface)
  2059. return 0;
  2060. Spawn* spawn = lua_interface->GetSpawn(state);
  2061. int16 value = lua_interface->GetInt16Value(state, 2);
  2062. if (spawn && spawn->IsEntity()) {
  2063. ((Entity*)spawn)->GetInfoStruct()->wis_base = value;
  2064. if (spawn->IsPlayer())
  2065. ((Player*)spawn)->SetCharSheetChanged(true);
  2066. }
  2067. return 0;
  2068. }
  2069. int EQ2Emu_lua_SetStaBase(lua_State* state) {
  2070. if (!lua_interface)
  2071. return 0;
  2072. Spawn* spawn = lua_interface->GetSpawn(state);
  2073. int16 value = lua_interface->GetInt16Value(state, 2);
  2074. if (spawn && spawn->IsEntity()) {
  2075. ((Entity*)spawn)->GetInfoStruct()->sta_base = value;
  2076. if (spawn->IsPlayer())
  2077. ((Player*)spawn)->SetCharSheetChanged(true);
  2078. }
  2079. return 0;
  2080. }
  2081. int EQ2Emu_lua_SetStrBase(lua_State* state) {
  2082. if (!lua_interface)
  2083. return 0;
  2084. Spawn* spawn = lua_interface->GetSpawn(state);
  2085. int16 value = lua_interface->GetInt16Value(state, 2);
  2086. if (spawn && spawn->IsEntity()) {
  2087. ((Entity*)spawn)->GetInfoStruct()->str_base = value;
  2088. if (spawn->IsPlayer())
  2089. ((Player*)spawn)->SetCharSheetChanged(true);
  2090. }
  2091. return 0;
  2092. }
  2093. int EQ2Emu_lua_SetInt(lua_State* state) {
  2094. if (!lua_interface)
  2095. return 0;
  2096. Spawn* spawn = lua_interface->GetSpawn(state);
  2097. sint32 value = lua_interface->GetSInt32Value(state, 2);
  2098. if (spawn && spawn->IsEntity()) {
  2099. ((Entity*)spawn)->AddSpellBonus(0, ITEM_STAT_INT, value);
  2100. if (spawn->IsPlayer())
  2101. ((Player*)spawn)->SetCharSheetChanged(true);
  2102. }
  2103. return 0;
  2104. }
  2105. int EQ2Emu_lua_SetWis(lua_State* state) {
  2106. if (!lua_interface)
  2107. return 0;
  2108. Spawn* spawn = lua_interface->GetSpawn(state);
  2109. float value = lua_interface->GetFloatValue(state, 2);
  2110. if (spawn && spawn->IsEntity()) {
  2111. ((Entity*)spawn)->AddSpellBonus(0, ITEM_STAT_WIS, value);
  2112. if (spawn->IsPlayer())
  2113. ((Player*)spawn)->SetCharSheetChanged(true);
  2114. }
  2115. return 0;
  2116. }
  2117. int EQ2Emu_lua_SetSta(lua_State* state) {
  2118. if (!lua_interface)
  2119. return 0;
  2120. Spawn* spawn = lua_interface->GetSpawn(state);
  2121. float value = lua_interface->GetFloatValue(state, 2);
  2122. if (spawn && spawn->IsEntity()) {
  2123. ((Entity*)spawn)->AddSpellBonus(0, ITEM_STAT_STA, value);
  2124. if (spawn->IsPlayer())
  2125. ((Player*)spawn)->SetCharSheetChanged(true);
  2126. }
  2127. return 0;
  2128. }
  2129. int EQ2Emu_lua_SetStr(lua_State* state) {
  2130. if (!lua_interface)
  2131. return 0;
  2132. Spawn* spawn = lua_interface->GetSpawn(state);
  2133. float value = lua_interface->GetFloatValue(state, 2);
  2134. if (spawn && spawn->IsEntity()) {
  2135. ((Entity*)spawn)->AddSpellBonus(0, ITEM_STAT_STR, value);
  2136. if (spawn->IsPlayer())
  2137. ((Player*)spawn)->SetCharSheetChanged(true);
  2138. }
  2139. return 0;
  2140. }
  2141. int EQ2Emu_lua_SetAgi(lua_State* state) {
  2142. if (!lua_interface)
  2143. return 0;
  2144. Spawn* spawn = lua_interface->GetSpawn(state);
  2145. float value = lua_interface->GetFloatValue(state, 2);
  2146. if (spawn && spawn->IsEntity()) {
  2147. ((Entity*)spawn)->AddSpellBonus(0, ITEM_STAT_AGI, value);
  2148. if (spawn->IsPlayer())
  2149. ((Player*)spawn)->SetCharSheetChanged(true);
  2150. }
  2151. return 0;
  2152. }
  2153. int EQ2Emu_lua_GetCurrentHP(lua_State* state) {
  2154. if (!lua_interface)
  2155. return 0;
  2156. Spawn* spawn = lua_interface->GetSpawn(state);
  2157. if (spawn) {
  2158. lua_interface->SetInt32Value(state, spawn->GetHP());
  2159. return 1;
  2160. }
  2161. return 0;
  2162. }
  2163. int EQ2Emu_lua_GetMaxHP(lua_State* state) {
  2164. if (!lua_interface)
  2165. return 0;
  2166. Spawn* spawn = lua_interface->GetSpawn(state);
  2167. if (spawn) {
  2168. lua_interface->SetInt32Value(state, spawn->GetTotalHP());
  2169. return 1;
  2170. }
  2171. return 0;
  2172. }
  2173. int EQ2Emu_lua_GetMaxHPBase(lua_State* state) {
  2174. if (!lua_interface)
  2175. return 0;
  2176. Spawn* spawn = lua_interface->GetSpawn(state);
  2177. if (spawn) {
  2178. lua_interface->SetInt32Value(state, spawn->GetTotalHPBase());
  2179. return 1;
  2180. }
  2181. return 0;
  2182. }
  2183. int EQ2Emu_lua_GetName(lua_State* state) {
  2184. if (!lua_interface)
  2185. return 0;
  2186. Spawn* spawn = lua_interface->GetSpawn(state);
  2187. if (spawn) {
  2188. lua_interface->SetStringValue(state, spawn->GetName());
  2189. return 1;
  2190. }
  2191. return 0;
  2192. }
  2193. int EQ2Emu_lua_GetLevel(lua_State* state) {
  2194. Spawn* spawn = lua_interface->GetSpawn(state);
  2195. if (spawn) {
  2196. lua_interface->SetInt32Value(state, spawn->GetLevel());
  2197. return 1;
  2198. }
  2199. return 0;
  2200. }
  2201. int EQ2Emu_lua_GetCurrentPower(lua_State* state) {
  2202. if (!lua_interface)
  2203. return 0;
  2204. Spawn* spawn = lua_interface->GetSpawn(state);
  2205. if (spawn) {
  2206. lua_interface->SetInt32Value(state, spawn->GetPower());
  2207. return 1;
  2208. }
  2209. return 0;
  2210. }
  2211. int EQ2Emu_lua_GetMaxPower(lua_State* state) {
  2212. if (!lua_interface)
  2213. return 0;
  2214. Spawn* spawn = lua_interface->GetSpawn(state);
  2215. if (spawn) {
  2216. lua_interface->SetInt32Value(state, spawn->GetTotalPower());
  2217. return 1;
  2218. }
  2219. return 0;
  2220. }
  2221. int EQ2Emu_lua_GetMaxPowerBase(lua_State* state) {
  2222. if (!lua_interface)
  2223. return 0;
  2224. Spawn* spawn = lua_interface->GetSpawn(state);
  2225. if (spawn) {
  2226. lua_interface->SetInt32Value(state, spawn->GetTotalPowerBase());
  2227. return 1;
  2228. }
  2229. return 0;
  2230. }
  2231. int EQ2Emu_lua_GetDistance(lua_State* state) {
  2232. if (!lua_interface)
  2233. return 0;
  2234. Spawn* spawn = lua_interface->GetSpawn(state);
  2235. Spawn* spawn2 = lua_interface->GetSpawn(state, 2);
  2236. bool include_radius = lua_interface->GetInt8Value(state, 3) == 1;
  2237. if (spawn && spawn2) {
  2238. float distance = spawn->GetDistance(spawn2, false, include_radius);
  2239. lua_interface->SetFloatValue(state, distance);
  2240. return 1;
  2241. }
  2242. return 0;
  2243. }
  2244. int EQ2Emu_lua_GetX(lua_State* state) {
  2245. if (!lua_interface)
  2246. return 0;
  2247. Spawn* spawn = lua_interface->GetSpawn(state);
  2248. if (spawn) {
  2249. lua_interface->SetFloatValue(state, spawn->GetX());
  2250. return 1;
  2251. }
  2252. return 0;
  2253. }
  2254. int EQ2Emu_lua_GetY(lua_State* state) {
  2255. if (!lua_interface)
  2256. return 0;
  2257. Spawn* spawn = lua_interface->GetSpawn(state);
  2258. if (spawn) {
  2259. lua_interface->SetFloatValue(state, spawn->GetY());
  2260. return 1;
  2261. }
  2262. return 0;
  2263. }
  2264. int EQ2Emu_lua_GetZ(lua_State* state) {
  2265. if (!lua_interface)
  2266. return 0;
  2267. Spawn* spawn = lua_interface->GetSpawn(state);
  2268. if (spawn) {
  2269. lua_interface->SetFloatValue(state, spawn->GetZ());
  2270. return 1;
  2271. }
  2272. return 0;
  2273. }
  2274. int EQ2Emu_lua_GetHeading(lua_State* state) {
  2275. if (!lua_interface)
  2276. return 0;
  2277. Spawn* spawn = lua_interface->GetSpawn(state);
  2278. if (spawn) {
  2279. lua_interface->SetFloatValue(state, spawn->GetHeading());
  2280. return 1;
  2281. }
  2282. return 0;
  2283. }
  2284. int EQ2Emu_lua_GetModelType(lua_State* state) {
  2285. if (!lua_interface)
  2286. return 0;
  2287. Spawn* spawn = lua_interface->GetSpawn(state);
  2288. if (spawn) {
  2289. lua_interface->SetInt32Value(state, spawn->GetModelType());
  2290. return 1;
  2291. }
  2292. return 0;
  2293. }
  2294. int EQ2Emu_lua_GetSpeed(lua_State* state) {
  2295. if (!lua_interface)
  2296. return 0;
  2297. Spawn* spawn = lua_interface->GetSpawn(state);
  2298. if (spawn) {
  2299. lua_interface->SetFloatValue(state, spawn->GetSpeed());
  2300. return 1;
  2301. }
  2302. return 0;
  2303. }
  2304. int EQ2Emu_lua_HasMoved(lua_State* state) {
  2305. if (!lua_interface)
  2306. return 0;
  2307. Spawn* spawn = lua_interface->GetSpawn(state);
  2308. if (spawn && spawn->IsEntity()) {
  2309. lua_interface->SetBooleanValue(state, ((Entity*)spawn)->HasMoved(false));
  2310. return 1;
  2311. }
  2312. return 0;
  2313. }
  2314. int EQ2Emu_lua_GetInt(lua_State* state) {
  2315. if (!lua_interface)
  2316. return 0;
  2317. Spawn* spawn = lua_interface->GetSpawn(state);
  2318. if (spawn && spawn->IsEntity()) {
  2319. lua_interface->SetInt32Value(state, ((Entity*)spawn)->GetInt());
  2320. return 1;
  2321. }
  2322. return 0;
  2323. }
  2324. int EQ2Emu_lua_GetWis(lua_State* state) {
  2325. if (!lua_interface)
  2326. return 0;
  2327. Spawn* spawn = lua_interface->GetSpawn(state);
  2328. if (spawn && spawn->IsEntity()) {
  2329. lua_interface->SetInt32Value(state, ((Entity*)spawn)->GetWis());
  2330. return 1;
  2331. }
  2332. return 0;
  2333. }
  2334. int EQ2Emu_lua_GetSta(lua_State* state) {
  2335. if (!lua_interface)
  2336. return 0;
  2337. Spawn* spawn = lua_interface->GetSpawn(state);
  2338. if (spawn && spawn->IsEntity()) {
  2339. lua_interface->SetInt32Value(state, ((Entity*)spawn)->GetSta());
  2340. return 1;
  2341. }
  2342. return 0;
  2343. }
  2344. int EQ2Emu_lua_GetStr(lua_State* state) {
  2345. if (!lua_interface)
  2346. return 0;
  2347. Spawn* spawn = lua_interface->GetSpawn(state);
  2348. if (spawn && spawn->IsEntity()) {
  2349. lua_interface->SetInt32Value(state, ((Entity*)spawn)->GetStr());
  2350. return 1;
  2351. }
  2352. return 0;
  2353. }
  2354. int EQ2Emu_lua_GetAgi(lua_State* state) {
  2355. if (!lua_interface)
  2356. return 0;
  2357. Spawn* spawn = lua_interface->GetSpawn(state);
  2358. if (spawn && spawn->IsEntity()) {
  2359. lua_interface->SetInt32Value(state, ((Entity*)spawn)->GetAgi());
  2360. return 1;
  2361. }
  2362. return 0;
  2363. }
  2364. int EQ2Emu_lua_GetIntBase(lua_State* state) {
  2365. if (!lua_interface)
  2366. return 0;
  2367. Spawn* spawn = lua_interface->GetSpawn(state);
  2368. if (spawn && spawn->IsEntity()) {
  2369. lua_interface->SetInt32Value(state, ((Entity*)spawn)->GetIntBase());
  2370. return 1;
  2371. }
  2372. return 0;
  2373. }
  2374. int EQ2Emu_lua_GetWisBase(lua_State* state) {
  2375. if (!lua_interface)
  2376. return 0;
  2377. Spawn* spawn = lua_interface->GetSpawn(state);
  2378. if (spawn && spawn->IsEntity()) {
  2379. lua_interface->SetInt32Value(state, ((Entity*)spawn)->GetWisBase());
  2380. return 1;
  2381. }
  2382. return 0;
  2383. }
  2384. int EQ2Emu_lua_GetStaBase(lua_State* state) {
  2385. if (!lua_interface)
  2386. return 0;
  2387. Spawn* spawn = lua_interface->GetSpawn(state);
  2388. if (spawn && spawn->IsEntity()) {
  2389. lua_interface->SetInt32Value(state, ((Entity*)spawn)->GetStaBase());
  2390. return 1;
  2391. }
  2392. return 0;
  2393. }
  2394. int EQ2Emu_lua_GetStrBase(lua_State* state) {
  2395. if (!lua_interface)
  2396. return 0;
  2397. Spawn* spawn = lua_interface->GetSpawn(state);
  2398. if (spawn && spawn->IsEntity()) {
  2399. lua_interface->SetInt32Value(state, ((Entity*)spawn)->GetStrBase());
  2400. return 1;
  2401. }
  2402. return 0;
  2403. }
  2404. int EQ2Emu_lua_GetAgiBase(lua_State* state) {
  2405. if (!lua_interface)
  2406. return 0;
  2407. Spawn* spawn = lua_interface->GetSpawn(state);
  2408. if (spawn && spawn->IsEntity()) {
  2409. lua_interface->SetInt32Value(state, ((Entity*)spawn)->GetAgiBase());
  2410. return 1;
  2411. }
  2412. return 0;
  2413. }
  2414. int EQ2Emu_lua_SetStepComplete(lua_State* state) {
  2415. if (!lua_interface)
  2416. return 0;
  2417. Spawn* player = lua_interface->GetSpawn(state);
  2418. int32 quest_id = lua_interface->GetInt32Value(state, 2);
  2419. int32 step = lua_interface->GetInt32Value(state, 3);
  2420. if (player && player->IsPlayer() && quest_id > 0 && step > 0 && (((Player*)player)->player_quests.count(quest_id) > 0)) {
  2421. Client* client = player->GetZone()->GetClientBySpawn(player);
  2422. if (client)
  2423. client->AddPendingQuestUpdate(quest_id, step);
  2424. }
  2425. return 0;
  2426. }
  2427. int EQ2Emu_lua_AddStepProgress(lua_State* state) {
  2428. Spawn* player = lua_interface->GetSpawn(state);
  2429. int32 quest_id = lua_interface->GetInt32Value(state, 2);
  2430. int32 step = lua_interface->GetInt32Value(state, 3);
  2431. int32 progress = lua_interface->GetInt32Value(state, 4);
  2432. if (player && player->IsPlayer() && quest_id > 0 && step > 0 && progress > 0 && (((Player*)player)->player_quests.count(quest_id) > 0)) {
  2433. Client* client = player->GetZone()->GetClientBySpawn(player);
  2434. if (client)
  2435. client->AddPendingQuestUpdate(quest_id, step, progress);
  2436. }
  2437. return 0;
  2438. }
  2439. int EQ2Emu_lua_GetTaskGroupStep(lua_State* state) {
  2440. if (!lua_interface)
  2441. return 0;
  2442. Spawn* player = lua_interface->GetSpawn(state);
  2443. int32 quest_id = lua_interface->GetInt32Value(state, 2);
  2444. if (player && player->IsPlayer() && quest_id > 0) {
  2445. lua_interface->SetInt32Value(state, ((Player*)player)->GetTaskGroupStep(quest_id));
  2446. return 1;
  2447. }
  2448. return 0;
  2449. }
  2450. int EQ2Emu_lua_QuestStepIsComplete(lua_State* state) {
  2451. if (!lua_interface)
  2452. return 0;
  2453. Spawn* player = lua_interface->GetSpawn(state);
  2454. int32 quest_id = lua_interface->GetInt32Value(state, 2);
  2455. int32 step_id = lua_interface->GetInt32Value(state, 3);
  2456. if (player && player->IsPlayer() && quest_id > 0) {
  2457. lua_interface->SetBooleanValue(state, ((Player*)player)->GetQuestStepComplete(quest_id, step_id));
  2458. return 1;
  2459. }
  2460. return 0;
  2461. }
  2462. int EQ2Emu_lua_GetQuestStep(lua_State* state) {
  2463. if (!lua_interface)
  2464. return 0;
  2465. Spawn* player = lua_interface->GetSpawn(state);
  2466. int32 quest_id = lua_interface->GetInt32Value(state, 2);
  2467. if (player && player->IsPlayer() && quest_id > 0) {
  2468. lua_interface->SetInt32Value(state, ((Player*)player)->GetQuestStep(quest_id));
  2469. return 1;
  2470. }
  2471. return 0;
  2472. }
  2473. int EQ2Emu_lua_RegisterQuest(lua_State* state) {
  2474. if (!lua_interface)
  2475. return 0;
  2476. Quest* quest = lua_interface->GetQuest(state);
  2477. string name = lua_interface->GetStringValue(state, 2);
  2478. string type = lua_interface->GetStringValue(state, 3);
  2479. string zone = lua_interface->GetStringValue(state, 4);
  2480. int16 level = lua_interface->GetInt16Value(state, 5);
  2481. string description = lua_interface->GetStringValue(state, 6);
  2482. bool load = true;
  2483. if (!quest) {
  2484. lua_interface->LogError("%s: Quest not given in RegisterQuest!", lua_interface->GetScriptName(state));
  2485. load = false;
  2486. }
  2487. if (load && name.length() == 0) {
  2488. lua_interface->LogError("%s: Name not given in RegisterQuest!", lua_interface->GetScriptName(state));
  2489. load = false;
  2490. }
  2491. if (load && type.length() == 0) {
  2492. lua_interface->LogError("%s: Type not given in RegisterQuest for '%s'!", lua_interface->GetScriptName(state), name.c_str());
  2493. load = false;
  2494. }
  2495. if (load && zone.length() == 0) {
  2496. lua_interface->LogError("%s: Zone not given in RegisterQuest for '%s'!", lua_interface->GetScriptName(state), name.c_str());
  2497. load = false;
  2498. }
  2499. if (load && description.length() == 0) {
  2500. lua_interface->LogError("%s: Description not given in RegisterQuest for '%s'!", lua_interface->GetScriptName(state), name.c_str());
  2501. load = false;
  2502. }
  2503. if (load && level == 0) {
  2504. lua_interface->LogError("%s: Level not given in RegisterQuest for '%s'!", lua_interface->GetScriptName(state), name.c_str());
  2505. load = false;
  2506. }
  2507. if (load)
  2508. quest->RegisterQuest(name, type, zone, level, description);
  2509. return 0;
  2510. }
  2511. int EQ2Emu_lua_SetQuestPrereqLevel(lua_State* state) {
  2512. if (!lua_interface)
  2513. return 0;
  2514. Quest* quest = lua_interface->GetQuest(state);
  2515. if (quest) {
  2516. int8 level = lua_interface->GetInt16Value(state, 2);
  2517. quest->SetPrereqLevel(level);
  2518. }
  2519. return 0;
  2520. }
  2521. int EQ2Emu_lua_AddQuestPrereqQuest(lua_State* state) {
  2522. if (!lua_interface)
  2523. return 0;
  2524. Quest* quest = lua_interface->GetQuest(state);
  2525. if (quest) {
  2526. int32 quest_id = lua_interface->GetInt32Value(state, 2);
  2527. quest->AddPrereqQuest(quest_id);
  2528. }
  2529. return 0;
  2530. }
  2531. int EQ2Emu_lua_AddQuestPrereqItem(lua_State* state) {
  2532. if (!lua_interface)
  2533. return 0;
  2534. Quest* quest = lua_interface->GetQuest(state);
  2535. if (quest) {
  2536. int32 item_id = lua_interface->GetInt32Value(state, 2);
  2537. int8 quantity = lua_interface->GetInt32Value(state, 3);
  2538. if (quantity == 0)
  2539. quantity = 1;
  2540. Item* master_item = master_item_list.GetItem(item_id);
  2541. if (master_item) {
  2542. Item* item = new Item(master_item);
  2543. item->details.count = quantity;
  2544. quest->AddPrereqItem(item);
  2545. }
  2546. }
  2547. return 0;
  2548. }
  2549. int EQ2Emu_lua_HasQuest(lua_State* state) {
  2550. if (!lua_interface)
  2551. return 0;
  2552. Spawn* player = lua_interface->GetSpawn(state);
  2553. int32 quest_id = lua_interface->GetInt32Value(state, 2);
  2554. if (player && player->IsPlayer() && quest_id > 0) {
  2555. lua_interface->SetBooleanValue(state, (((Player*)player)->player_quests.count(quest_id) > 0));
  2556. return 1;
  2557. }
  2558. return 0;
  2559. }
  2560. int EQ2Emu_lua_QuestReturnNPC(lua_State* state) {
  2561. if (!lua_interface)
  2562. return 0;
  2563. Quest* quest = lua_interface->GetQuest(state);
  2564. int32 spawn_id = lua_interface->GetInt32Value(state, 2);
  2565. if (quest && spawn_id > 0)
  2566. quest->SetQuestReturnNPC(spawn_id);
  2567. return 0;
  2568. }
  2569. int EQ2Emu_lua_AddTimer(lua_State* state) {
  2570. if (!lua_interface)
  2571. return 0;
  2572. Spawn* spawn = lua_interface->GetSpawn(state);
  2573. if (!spawn) {
  2574. lua_interface->LogError("%s: LUA AddTimer command error: spawn is not valid", lua_interface->GetScriptName(state));
  2575. return 0;
  2576. }
  2577. int32 time = lua_interface->GetInt32Value(state, 2);
  2578. if (time <= 0) {
  2579. lua_interface->LogError("%s: LUA AddTimer command error: time is not set", lua_interface->GetScriptName(state));
  2580. return 0;
  2581. }
  2582. string function = lua_interface->GetStringValue(state, 3);
  2583. if (function.length() == 0) {
  2584. lua_interface->LogError("%s: LUA AddTimer command error: function is not set", lua_interface->GetScriptName(state));
  2585. return 0;
  2586. }
  2587. int32 max_count = lua_interface->GetInt32Value(state, 4);
  2588. Spawn* player = lua_interface->GetSpawn(state, 5);
  2589. SpawnScriptTimer* timer = new SpawnScriptTimer;
  2590. timer->timer = Timer::GetCurrentTime2() + time;
  2591. timer->function = function;
  2592. timer->spawn = spawn->GetID();
  2593. timer->player = player ? player->GetID() : 0;
  2594. if (max_count == 0)
  2595. max_count = 1;
  2596. timer->max_count = max_count;
  2597. timer->current_count = 0;
  2598. spawn->GetZone()->AddSpawnScriptTimer(timer);
  2599. return 0;
  2600. }
  2601. int EQ2Emu_lua_GetQuest(lua_State* state) {
  2602. if (!lua_interface)
  2603. return 0;
  2604. Spawn* player = lua_interface->GetSpawn(state);
  2605. int32 quest_id = lua_interface->GetInt32Value(state, 2);
  2606. if (player && player->IsPlayer() && quest_id > 0) {
  2607. lua_interface->SetQuestValue(state, ((Player*)player)->player_quests[quest_id]);
  2608. return 1;
  2609. }
  2610. return 0;
  2611. }
  2612. int EQ2Emu_lua_QuestIsComplete(lua_State* state) {
  2613. if (!lua_interface)
  2614. return 0;
  2615. Spawn* player = lua_interface->GetSpawn(state);
  2616. int32 quest_id = lua_interface->GetInt32Value(state, 2);
  2617. if (player && player->IsPlayer() && quest_id > 0 && (((Player*)player)->player_quests.count(quest_id) > 0)) {
  2618. Quest* quest = ((Player*)player)->player_quests[quest_id];
  2619. if (quest)
  2620. lua_interface->SetBooleanValue(state, quest->GetCompleted());
  2621. return 1;
  2622. }
  2623. return 0;
  2624. }
  2625. int EQ2Emu_lua_HasCompletedQuest(lua_State* state) {
  2626. if (!lua_interface)
  2627. return 0;
  2628. Spawn* player = lua_interface->GetSpawn(state);
  2629. int32 quest_id = lua_interface->GetInt32Value(state, 2);
  2630. if (player && player->IsPlayer() && quest_id > 0) {
  2631. lua_interface->SetBooleanValue(state, (((Player*)player)->GetCompletedQuest(quest_id) != 0));
  2632. return 1;
  2633. }
  2634. return 0;
  2635. }
  2636. int EQ2Emu_lua_ProvidesQuest(lua_State* state) {
  2637. if (!lua_interface)
  2638. return 0;
  2639. Spawn* npc = lua_interface->GetSpawn(state);
  2640. int32 quest_id = lua_interface->GetInt32Value(state, 2);
  2641. if (npc && !npc->IsPlayer() && quest_id > 0)
  2642. npc->AddProvidedQuest(quest_id);
  2643. return 0;
  2644. }
  2645. int EQ2Emu_lua_OfferQuest(lua_State* state) {
  2646. if (!lua_interface)
  2647. return 0;
  2648. Spawn* npc = lua_interface->GetSpawn(state);
  2649. Spawn* player = lua_interface->GetSpawn(state, 2);
  2650. int32 quest_id = lua_interface->GetInt32Value(state, 3);
  2651. /* NPC is allowed to be null */
  2652. if (player && player->IsPlayer() && quest_id > 0) {
  2653. Quest* master_quest = master_quest_list.GetQuest(quest_id);
  2654. if (master_quest) {
  2655. Client* client = player->GetZone()->GetClientBySpawn(player);
  2656. Quest* quest = new Quest(master_quest);
  2657. if (client && quest) {
  2658. client->AddPendingQuest(quest);
  2659. if (npc)
  2660. quest->SetQuestGiver(npc->GetDatabaseID());
  2661. else
  2662. quest->SetQuestGiver(0);
  2663. }
  2664. }
  2665. }
  2666. return 0;
  2667. }
  2668. int EQ2Emu_lua_AddQuestPrereqClass(lua_State* state) {
  2669. if (!lua_interface)
  2670. return 0;
  2671. Quest* quest = lua_interface->GetQuest(state);
  2672. if (quest) {
  2673. int8 class_id = lua_interface->GetInt8Value(state, 2);
  2674. quest->AddPrereqClass(class_id);
  2675. }
  2676. return 0;
  2677. }
  2678. int EQ2Emu_lua_AddQuestPrereqRace(lua_State* state) {
  2679. if (!lua_interface)
  2680. return 0;
  2681. Quest* quest = lua_interface->GetQuest(state);
  2682. if (quest) {
  2683. int8 race = lua_interface->GetInt8Value(state, 2);
  2684. quest->AddPrereqRace(race);
  2685. }
  2686. return 0;
  2687. }
  2688. int EQ2Emu_lua_AddQuestPrereqModelType(lua_State* state) {
  2689. if (!lua_interface)
  2690. return 0;
  2691. Quest* quest = lua_interface->GetQuest(state);
  2692. if (quest) {
  2693. int16 model_type = lua_interface->GetInt16Value(state, 2);
  2694. quest->AddPrereqModelType(model_type);
  2695. }
  2696. return 0;
  2697. }
  2698. int EQ2Emu_lua_AddQuestPrereqTradeskillLevel(lua_State* state) {
  2699. if (!lua_interface)
  2700. return 0;
  2701. Quest* quest = lua_interface->GetQuest(state);
  2702. if (!quest) {
  2703. lua_interface->LogError("%s: LUA AddQuestPrereqTradeskillLevel command error: quest is not valid", lua_interface->GetScriptName(state));
  2704. return 0;
  2705. }
  2706. int8 level = lua_interface->GetInt8Value(state, 2);
  2707. quest->SetPrereqTSLevel(level);
  2708. return 0;
  2709. }
  2710. int EQ2Emu_lua_AddQuestPrereqTradeskillClass(lua_State* state) {
  2711. if (!lua_interface)
  2712. return 0;
  2713. Quest* quest = lua_interface->GetQuest(state);
  2714. if (!quest) {
  2715. lua_interface->LogError("%s: LUA AddQuestPrereqTradeskillClass command error: quest is not valid", lua_interface->GetScriptName(state));
  2716. return 0;
  2717. }
  2718. int8 class_id = lua_interface->GetInt8Value(state, 2);
  2719. quest->AddPrereqTradeskillClass(class_id);
  2720. return 0;
  2721. }
  2722. int EQ2Emu_lua_AddQuestPrereqFaction(lua_State* state) {
  2723. if (!lua_interface)
  2724. return 0;
  2725. Quest* quest = lua_interface->GetQuest(state);
  2726. if (quest) {
  2727. int32 faction_id = lua_interface->GetInt32Value(state, 2);
  2728. sint32 min = lua_interface->GetSInt32Value(state, 3);
  2729. sint32 max = lua_interface->GetSInt32Value(state, 4);
  2730. quest->AddPrereqFaction(faction_id, min, max);
  2731. }
  2732. return 0;
  2733. }
  2734. int EQ2Emu_lua_AddQuestSelectableRewardItem(lua_State* state) {
  2735. if (!lua_interface)
  2736. return 0;
  2737. Quest* quest = lua_interface->GetQuest(state);
  2738. if (quest) {
  2739. int32 item_id = lua_interface->GetInt32Value(state, 2);
  2740. int8 quantity = lua_interface->GetInt8Value(state, 3);
  2741. if (quantity == 0)
  2742. quantity = 1;
  2743. Item* master_item = master_item_list.GetItem(item_id);
  2744. if (master_item) {
  2745. Item* item = new Item(master_item);
  2746. item->details.count = quantity;
  2747. quest->AddSelectableRewardItem(item);
  2748. }
  2749. }
  2750. return 0;
  2751. }
  2752. int EQ2Emu_lua_AddQuestRewardItem(lua_State* state) {
  2753. if (!lua_interface)
  2754. return 0;
  2755. Quest* quest = lua_interface->GetQuest(state);
  2756. if (quest) {
  2757. int32 item_id = lua_interface->GetInt32Value(state, 2);
  2758. int8 quantity = lua_interface->GetInt32Value(state, 3);
  2759. if (quantity == 0)
  2760. quantity = 1;
  2761. Item* master_item = master_item_list.GetItem(item_id);
  2762. if (master_item) {
  2763. Item* item = new Item(master_item);
  2764. item->details.count = quantity;
  2765. quest->AddRewardItem(item);
  2766. }
  2767. }
  2768. return 0;
  2769. }
  2770. int EQ2Emu_lua_AddQuestRewardCoin(lua_State* state) {
  2771. if (!lua_interface)
  2772. return 0;
  2773. Quest* quest = lua_interface->GetQuest(state);
  2774. if (quest) {
  2775. int32 copper = lua_interface->GetInt32Value(state, 2);
  2776. int32 silver = lua_interface->GetInt32Value(state, 3);
  2777. int32 gold = lua_interface->GetInt32Value(state, 4);
  2778. int32 plat = lua_interface->GetInt32Value(state, 5);
  2779. quest->AddRewardCoins(copper, silver, gold, plat);
  2780. }
  2781. return 0;
  2782. }
  2783. int EQ2Emu_lua_AddQuestRewardFaction(lua_State* state) {
  2784. if (!lua_interface)
  2785. return 0;
  2786. Quest* quest = lua_interface->GetQuest(state);
  2787. int32 faction_id = lua_interface->GetInt32Value(state, 2);
  2788. sint32 amount = lua_interface->GetSInt32Value(state, 3);
  2789. if (quest && faction_id > 0 && amount != 0)
  2790. quest->AddRewardFaction(faction_id, amount);
  2791. return 0;
  2792. }
  2793. int EQ2Emu_lua_SetQuestRewardStatus(lua_State* state) {
  2794. if (!lua_interface)
  2795. return 0;
  2796. Quest* quest = lua_interface->GetQuest(state);
  2797. if (quest) {
  2798. int32 status = lua_interface->GetInt32Value(state, 2);
  2799. quest->SetRewardStatus(status);
  2800. }
  2801. return 0;
  2802. }
  2803. int EQ2Emu_lua_SetQuestRewardComment(lua_State* state) {
  2804. if (!lua_interface)
  2805. return 0;
  2806. Quest* quest = lua_interface->GetQuest(state);
  2807. if (quest) {
  2808. string comment = lua_interface->GetStringValue(state, 2);
  2809. quest->SetRewardComment(comment);
  2810. }
  2811. return 0;
  2812. }
  2813. int EQ2Emu_lua_SetQuestRewardExp(lua_State* state) {
  2814. if (!lua_interface)
  2815. return 0;
  2816. Quest* quest = lua_interface->GetQuest(state);
  2817. if (quest) {
  2818. int32 exp = lua_interface->GetInt32Value(state, 2);
  2819. quest->SetRewardXP(exp);
  2820. }
  2821. return 0;
  2822. }
  2823. int EQ2Emu_lua_AddQuestStep(lua_State* state) {
  2824. Quest* quest = lua_interface->GetQuest(state);
  2825. if (quest) {
  2826. int32 step = lua_interface->GetInt32Value(state, 2);
  2827. string description = lua_interface->GetStringValue(state, 3);
  2828. int32 quantity = lua_interface->GetInt32Value(state, 4);
  2829. float percentage = lua_interface->GetFloatValue(state, 5);
  2830. string str_taskgroup = lua_interface->GetStringValue(state, 6);
  2831. int16 icon = lua_interface->GetInt16Value(state, 7);
  2832. int32 usableitemid = lua_interface->GetInt32Value(state, 8);
  2833. const char* taskgroup = 0;
  2834. if (str_taskgroup.length() > 0)
  2835. taskgroup = str_taskgroup.c_str();
  2836. QuestStep* quest_step = quest->AddQuestStep(step, QUEST_STEP_TYPE_NORMAL, description, 0, quantity, taskgroup, 0, 0, percentage, usableitemid);
  2837. if (quest_step && icon && quantity > 0)
  2838. quest_step->SetIcon(icon);
  2839. }
  2840. return 0;
  2841. }
  2842. int EQ2Emu_lua_AddQuestStepKill(lua_State* state) {
  2843. if (!lua_interface)
  2844. return 0;
  2845. Quest* quest = lua_interface->GetQuest(state);
  2846. if (quest) {
  2847. int32 step = lua_interface->GetInt32Value(state, 2);
  2848. string description = lua_interface->GetStringValue(state, 3);
  2849. int32 quantity = lua_interface->GetInt32Value(state, 4);
  2850. float percentage = lua_interface->GetFloatValue(state, 5);
  2851. string str_taskgroup = lua_interface->GetStringValue(state, 6);
  2852. int16 icon = lua_interface->GetInt16Value(state, 7);
  2853. const char* taskgroup = 0;
  2854. if (str_taskgroup.length() > 0)
  2855. taskgroup = str_taskgroup.c_str();
  2856. int32 npc_id = 0;
  2857. vector<int32>* ids = 0;
  2858. Spawn* spawn = nullptr;
  2859. int i = 0;
  2860. while ((npc_id = lua_interface->GetInt32Value(state, 8 + i))) {
  2861. if (ids == 0)
  2862. ids = new vector<int32>;
  2863. ids->push_back(npc_id);
  2864. i++;
  2865. }
  2866. QuestStep* quest_step = quest->AddQuestStep(step, QUEST_STEP_TYPE_KILL, description, ids, quantity, taskgroup, 0, 0, percentage, 0);
  2867. if (quest_step && icon > 0 && quantity > 0)
  2868. quest_step->SetIcon(icon);
  2869. }
  2870. return 0;
  2871. }
  2872. int EQ2Emu_lua_AddQuestStepChat(lua_State* state) {
  2873. if (!lua_interface)
  2874. return 0;
  2875. Quest* quest = lua_interface->GetQuest(state);
  2876. if (quest) {
  2877. int32 step = lua_interface->GetInt32Value(state, 2);
  2878. string description = lua_interface->GetStringValue(state, 3);
  2879. int32 quantity = lua_interface->GetInt32Value(state, 4);
  2880. string str_taskgroup = lua_interface->GetStringValue(state, 5);
  2881. int16 icon = lua_interface->GetInt16Value(state, 6);
  2882. const char* taskgroup = 0;
  2883. if (str_taskgroup.length() > 0)
  2884. taskgroup = str_taskgroup.c_str();
  2885. int32 npc_id = 0;
  2886. vector<int32>* ids = 0;
  2887. int i = 0;
  2888. while ((npc_id = lua_interface->GetInt32Value(state, 7 + i))) {
  2889. if (ids == 0)
  2890. ids = new vector<int32>;
  2891. ids->push_back(npc_id);
  2892. i++;
  2893. }
  2894. QuestStep* quest_step = quest->AddQuestStep(step, QUEST_STEP_TYPE_CHAT, description, ids, quantity, taskgroup);
  2895. if (quest_step && icon > 0)
  2896. quest_step->SetIcon(icon);
  2897. if (quest->GetPlayer()) {
  2898. Client* client = quest->GetPlayer()->GetZone()->GetClientBySpawn(quest->GetPlayer());
  2899. quest->GetPlayer()->GetZone()->SendQuestUpdates(client);
  2900. }
  2901. }
  2902. return 0;
  2903. }
  2904. int EQ2Emu_lua_AddQuestStepObtainItem(lua_State* state) {
  2905. if (!lua_interface)
  2906. return 0;
  2907. Quest* quest = lua_interface->GetQuest(state);
  2908. if (quest) {
  2909. int32 step = lua_interface->GetInt32Value(state, 2);
  2910. string description = lua_interface->GetStringValue(state, 3);
  2911. int32 quantity = lua_interface->GetInt32Value(state, 4);
  2912. float percentage = lua_interface->GetFloatValue(state, 5);
  2913. string str_taskgroup = lua_interface->GetStringValue(state, 6);
  2914. int16 icon = lua_interface->GetInt16Value(state, 7);
  2915. const char* taskgroup = 0;
  2916. if (str_taskgroup.length() > 0)
  2917. taskgroup = str_taskgroup.c_str();
  2918. int32 item_id = 0;
  2919. vector<int32>* ids = 0;
  2920. int i = 0;
  2921. while ((item_id = lua_interface->GetInt32Value(state, 8 + i))) {
  2922. if (ids == 0)
  2923. ids = new vector<int32>;
  2924. ids->push_back(item_id);
  2925. i++;
  2926. }
  2927. QuestStep* quest_step = quest->AddQuestStep(step, QUEST_STEP_TYPE_OBTAIN_ITEM, description, ids, quantity, taskgroup, 0, 0, percentage, 0);
  2928. if (quest_step && icon > 0 && quantity > 0)
  2929. quest_step->SetIcon(icon);
  2930. }
  2931. return 0;
  2932. }
  2933. int EQ2Emu_lua_AddQuestStepLocation(lua_State* state) {
  2934. if (!lua_interface)
  2935. return 0;
  2936. Quest* quest = lua_interface->GetQuest(state);
  2937. if (quest) {
  2938. int32 step = lua_interface->GetInt32Value(state, 2);
  2939. string description = lua_interface->GetStringValue(state, 3);
  2940. float max_variation = lua_interface->GetFloatValue(state, 4);
  2941. string str_taskgroup = lua_interface->GetStringValue(state, 5);
  2942. int16 icon = lua_interface->GetInt16Value(state, 6);
  2943. const char* taskgroup = 0;
  2944. if (str_taskgroup.length() > 0)
  2945. taskgroup = str_taskgroup.c_str();
  2946. vector<Location>* locations = 0;
  2947. int i = 7;
  2948. while (true) {
  2949. Location loc;
  2950. loc.x = lua_interface->GetFloatValue(state, i);
  2951. loc.y = lua_interface->GetFloatValue(state, i + 1);
  2952. loc.z = lua_interface->GetFloatValue(state, i + 2);
  2953. if (loc.x == 0 && loc.y == 0 && loc.z == 0)
  2954. break;
  2955. if (locations == 0)
  2956. locations = new vector<Location>;
  2957. locations->push_back(loc);
  2958. i += 3;
  2959. }
  2960. QuestStep* quest_step = quest->AddQuestStep(step, QUEST_STEP_TYPE_LOCATION, description, 0, 1, taskgroup, locations, max_variation);
  2961. if (quest_step && icon > 0)
  2962. quest_step->SetIcon(icon);
  2963. }
  2964. return 0;
  2965. }
  2966. int EQ2Emu_lua_AddQuestUsableItem(lua_State* state) {
  2967. if (!lua_interface)
  2968. return 0;
  2969. Quest* quest = lua_interface->GetQuest(state);
  2970. if (quest) {
  2971. int32 step = lua_interface->GetInt32Value(state, 2);
  2972. string description = lua_interface->GetStringValue(state, 3);
  2973. float max_variation = lua_interface->GetFloatValue(state, 4);
  2974. string str_taskgroup = lua_interface->GetStringValue(state, 5);
  2975. int16 icon = lua_interface->GetInt16Value(state, 6);
  2976. const char* taskgroup = 0;
  2977. if (str_taskgroup.length() > 0)
  2978. taskgroup = str_taskgroup.c_str();
  2979. vector<Location>* locations = 0;
  2980. int i = 7;
  2981. while (true) {
  2982. Location loc;
  2983. loc.x = lua_interface->GetFloatValue(state, i);
  2984. loc.y = lua_interface->GetFloatValue(state, i + 1);
  2985. loc.z = lua_interface->GetFloatValue(state, i + 2);
  2986. if (loc.x == 0 && loc.y == 0 && loc.z == 0)
  2987. break;
  2988. if (locations == 0)
  2989. locations = new vector<Location>;
  2990. locations->push_back(loc);
  2991. i += 3;
  2992. }
  2993. QuestStep* quest_step = quest->AddQuestStep(step, QUEST_STEP_TYPE_LOCATION, description, 0, 1, taskgroup, locations, max_variation);
  2994. if (quest_step && icon > 0)
  2995. quest_step->SetIcon(icon);
  2996. }
  2997. return 0;
  2998. }
  2999. int EQ2Emu_lua_AddQuestStepSpell(lua_State* state) {
  3000. Quest* quest = lua_interface->GetQuest(state);
  3001. if (quest) {
  3002. int32 step = lua_interface->GetInt32Value(state, 2);
  3003. string description = lua_interface->GetStringValue(state, 3);
  3004. int32 quantity = lua_interface->GetInt32Value(state, 4);
  3005. float percentage = lua_interface->GetFloatValue(state, 5);
  3006. string str_taskgroup = lua_interface->GetStringValue(state, 6);
  3007. int16 icon = lua_interface->GetInt16Value(state, 7);
  3008. const char* taskgroup = 0;
  3009. if (str_taskgroup.length() > 0)
  3010. taskgroup = str_taskgroup.c_str();
  3011. int32 spell_id = 0;
  3012. vector<int32>* ids = 0;
  3013. int i = 0;
  3014. while ((spell_id = lua_interface->GetInt32Value(state, 8 + i))) {
  3015. if (ids == 0)
  3016. ids = new vector<int32>;
  3017. ids->push_back(spell_id);
  3018. i++;
  3019. }
  3020. QuestStep* quest_step = quest->AddQuestStep(step, QUEST_STEP_TYPE_SPELL, description, ids, quantity, taskgroup, 0, 0, percentage, 0);
  3021. if (quest_step && icon > 0 && quantity > 0)
  3022. quest_step->SetIcon(icon);
  3023. }
  3024. return 0;
  3025. }
  3026. int EQ2Emu_lua_AddQuestStepCraft(lua_State* state) {
  3027. if (!lua_interface)
  3028. return 0;
  3029. Quest* quest = lua_interface->GetQuest(state);
  3030. if (quest) {
  3031. int32 step = lua_interface->GetInt32Value(state, 2);
  3032. string description = lua_interface->GetStringValue(state, 3);
  3033. int32 quantity = lua_interface->GetInt32Value(state, 4);
  3034. float percentage = lua_interface->GetFloatValue(state, 5);
  3035. string str_taskgroup = lua_interface->GetStringValue(state, 6);
  3036. int16 icon = lua_interface->GetInt16Value(state, 7);
  3037. const char* taskgroup = 0;
  3038. if (str_taskgroup.length() > 0)
  3039. taskgroup = str_taskgroup.c_str();
  3040. int32 item_id = 0;
  3041. vector<int32>* ids = 0;
  3042. int i = 0;
  3043. while ((item_id = lua_interface->GetInt32Value(state, 8 + i))) {
  3044. if (ids == 0)
  3045. ids = new vector<int32>;
  3046. ids->push_back(item_id);
  3047. i++;
  3048. }
  3049. QuestStep* quest_step = quest->AddQuestStep(step, QUEST_STEP_TYPE_CRAFT, description, ids, quantity, taskgroup, 0, 0, percentage, 0);
  3050. if (quest_step && icon > 0 && quantity > 0)
  3051. quest_step->SetIcon(icon);
  3052. }
  3053. return 0;
  3054. }
  3055. int EQ2Emu_lua_AddQuestStepHarvest(lua_State* state) {
  3056. if (!lua_interface)
  3057. return 0;
  3058. Quest* quest = lua_interface->GetQuest(state);
  3059. if (quest) {
  3060. int32 step = lua_interface->GetInt32Value(state, 2);
  3061. string description = lua_interface->GetStringValue(state, 3);
  3062. int32 quantity = lua_interface->GetInt32Value(state, 4);
  3063. float percentage = lua_interface->GetFloatValue(state, 5);
  3064. string str_taskgroup = lua_interface->GetStringValue(state, 6);
  3065. int16 icon = lua_interface->GetInt16Value(state, 7);
  3066. const char* taskgroup = 0;
  3067. if (str_taskgroup.length() > 0)
  3068. taskgroup = str_taskgroup.c_str();
  3069. int32 item_id = 0;
  3070. vector<int32>* ids = 0;
  3071. int i = 0;
  3072. while ((item_id = lua_interface->GetInt32Value(state, 8 + i))) {
  3073. if (ids == 0)
  3074. ids = new vector<int32>;
  3075. ids->push_back(item_id);
  3076. i++;
  3077. }
  3078. QuestStep* quest_step = quest->AddQuestStep(step, QUEST_STEP_TYPE_HARVEST, description, ids, quantity, taskgroup, 0, 0, percentage, 0);
  3079. if (quest_step && icon > 0 && quantity > 0)
  3080. quest_step->SetIcon(icon);
  3081. }
  3082. return 0;
  3083. }
  3084. int EQ2Emu_lua_SetQuestCompleteAction(lua_State* state) {
  3085. if (!lua_interface)
  3086. return 0;
  3087. Quest* quest = lua_interface->GetQuest(state);
  3088. if (quest) {
  3089. string action = lua_interface->GetStringValue(state, 2);
  3090. if (action.length() > 0)
  3091. quest->SetCompleteAction(action);
  3092. }
  3093. return 0;
  3094. }
  3095. int EQ2Emu_lua_AddQuestStepCompleteAction(lua_State* state) {
  3096. if (!lua_interface)
  3097. return 0;
  3098. Quest* quest = lua_interface->GetQuest(state);
  3099. if (quest) {
  3100. int32 step = lua_interface->GetInt32Value(state, 2);
  3101. string action = lua_interface->GetStringValue(state, 3);
  3102. if (step > 0 && action.length() > 0)
  3103. quest->AddCompleteAction(step, action);
  3104. }
  3105. return 0;
  3106. }
  3107. int EQ2Emu_lua_AddQuestStepProgressAction(lua_State* state) {
  3108. if (!lua_interface)
  3109. return 0;
  3110. Quest* quest = lua_interface->GetQuest(state);
  3111. if (quest) {
  3112. int32 step = lua_interface->GetInt32Value(state, 2);
  3113. string action = lua_interface->GetStringValue(state, 3);
  3114. if (step > 0 && action.length() > 0)
  3115. quest->AddProgressAction(step, action);
  3116. }
  3117. return 0;
  3118. }
  3119. int EQ2Emu_lua_UpdateQuestDescription(lua_State* state) {
  3120. if (!lua_interface)
  3121. return 0;
  3122. Quest* quest = lua_interface->GetQuest(state);
  3123. string description = lua_interface->GetStringValue(state, 2);
  3124. if (quest && description.length() > 0)
  3125. quest->SetDescription(description);
  3126. return 0;
  3127. }
  3128. int EQ2Emu_lua_SetCompletedDescription(lua_State* state) {
  3129. if (!lua_interface)
  3130. return 0;
  3131. Quest* quest = lua_interface->GetQuest(state);
  3132. string description = lua_interface->GetStringValue(state, 2);
  3133. if (quest && description.length() > 0)
  3134. quest->SetCompletedDescription(description);
  3135. return 0;
  3136. }
  3137. int EQ2Emu_lua_UpdateQuestTaskGroupDescription(lua_State* state) {
  3138. if (!lua_interface)
  3139. return 0;
  3140. Quest* quest = lua_interface->GetQuest(state);
  3141. int32 step = lua_interface->GetInt32Value(state, 2);
  3142. string description = lua_interface->GetStringValue(state, 3);
  3143. bool display_bullets = (lua_interface->GetInt8Value(state, 4) == 1);
  3144. if (quest && step > 0 && description.length() > 0) {
  3145. quest->SetTaskGroupDescription(step, description, display_bullets);
  3146. if (quest->GetPlayer()) {
  3147. Client* client = quest->GetPlayer()->GetZone()->GetClientBySpawn(quest->GetPlayer());
  3148. if (client)
  3149. client->SendQuestUpdateStep(quest, step, false);
  3150. }
  3151. }
  3152. return 0;
  3153. }
  3154. int EQ2Emu_lua_UpdateQuestStepDescription(lua_State* state) {
  3155. if (!lua_interface)
  3156. return 0;
  3157. Quest* quest = lua_interface->GetQuest(state);
  3158. int32 step = lua_interface->GetInt32Value(state, 2);
  3159. string description = lua_interface->GetStringValue(state, 3);
  3160. if (quest && step > 0 && description.length() > 0) {
  3161. quest->SetStepDescription(step, description);
  3162. if (quest->GetPlayer()) {
  3163. Client* client = quest->GetPlayer()->GetZone()->GetClientBySpawn(quest->GetPlayer());
  3164. if (client)
  3165. client->SendQuestUpdateStep(quest, step);
  3166. }
  3167. }
  3168. return 0;
  3169. }
  3170. int EQ2Emu_lua_UpdateQuestZone(lua_State* state) {
  3171. Quest* quest = lua_interface->GetQuest(state);
  3172. string zone = lua_interface->GetStringValue(state, 2);
  3173. if (quest && zone.length() > 0)
  3174. quest->SetZone(zone);
  3175. return 0;
  3176. }
  3177. int EQ2Emu_lua_GiveQuestReward(lua_State* state) {
  3178. if (!lua_interface)
  3179. return 0;
  3180. Quest* quest = lua_interface->GetQuest(state);
  3181. Spawn* spawn = lua_interface->GetSpawn(state, 2);
  3182. if (quest && spawn) {
  3183. if (spawn->IsPlayer()) {
  3184. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  3185. if (client)
  3186. client->AddPendingQuestReward(quest);
  3187. }
  3188. }
  3189. return 0;
  3190. }
  3191. int EQ2Emu_lua_Harvest(lua_State* state) {
  3192. if (!lua_interface)
  3193. return 0;
  3194. Spawn* player = lua_interface->GetSpawn(state);
  3195. Spawn* node = lua_interface->GetSpawn(state, 2);
  3196. if (player && node && player->IsPlayer() && node->IsGroundSpawn()) {
  3197. Client* client = player->GetZone()->GetClientBySpawn(player);
  3198. if (client) {
  3199. LogWrite(MISC__TODO, 1, "TODO", "Cancel harvest if skill insufficient; Func: %s, Line: %i", __FUNCTION__, __LINE__);
  3200. ((GroundSpawn*)node)->ProcessHarvest(client);
  3201. if (((GroundSpawn*)node)->GetNumberHarvests() == 0)
  3202. player->GetZone()->RemoveSpawn(true, node, true);
  3203. }
  3204. }
  3205. else if (player && player->IsPlayer()) {
  3206. Client* client = player->GetZone()->GetClientBySpawn(player);
  3207. if (client)
  3208. client->Message(CHANNEL_COLOR_RED, "Invalid target for this spell.");
  3209. }
  3210. return 0;
  3211. }
  3212. int EQ2Emu_lua_Bind(lua_State* state) {
  3213. if (!lua_interface)
  3214. return 0;
  3215. Spawn* spawn = lua_interface->GetSpawn(state);
  3216. int32 zone_id = lua_interface->GetInt32Value(state, 2);
  3217. float x = lua_interface->GetFloatValue(state, 3);
  3218. float y = lua_interface->GetFloatValue(state, 4);
  3219. float z = lua_interface->GetFloatValue(state, 5);
  3220. float h = lua_interface->GetFloatValue(state, 6);
  3221. if (!spawn) {
  3222. lua_interface->LogError("%s: LUA Bind command error: spawn is not valid", lua_interface->GetScriptName(state));
  3223. return 0;
  3224. }
  3225. if (!spawn->IsPlayer()) {
  3226. lua_interface->LogError("%s: LUA Bind command error: spawn is not a player", lua_interface->GetScriptName(state));
  3227. return 0;
  3228. }
  3229. if (zone_id == 0) {
  3230. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  3231. if (!client) {
  3232. lua_interface->LogError("%s: LUA Bind command error: unable to get client from spawn", lua_interface->GetScriptName(state));
  3233. return 0;
  3234. }
  3235. if (!client->Bind())
  3236. client->SimpleMessage(CHANNEL_COLOR_RED, "Unable to set bind point.");
  3237. }
  3238. else {
  3239. Player* player = (Player*)spawn;
  3240. player->GetPlayerInfo()->SetBindZone(zone_id);
  3241. player->GetPlayerInfo()->SetBindX(x);
  3242. player->GetPlayerInfo()->SetBindY(y);
  3243. player->GetPlayerInfo()->SetBindZ(z);
  3244. player->GetPlayerInfo()->SetBindHeading(h);
  3245. }
  3246. return 0;
  3247. }
  3248. int EQ2Emu_lua_Gate(lua_State* state) {
  3249. if (!lua_interface)
  3250. return 0;
  3251. Spawn* spawn = lua_interface->GetSpawn(state);
  3252. if (spawn) {
  3253. if (spawn->IsPlayer()) {
  3254. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  3255. if (client) {
  3256. if (!client->Gate())
  3257. client->SimpleMessage(CHANNEL_COLOR_RED, "Unable to gate.");
  3258. }
  3259. }
  3260. }
  3261. return 0;
  3262. }
  3263. int EQ2Emu_lua_IsBindAllowed(lua_State* state) {
  3264. if (!lua_interface)
  3265. return 0;
  3266. bool ret = false;
  3267. Spawn* spawn = lua_interface->GetSpawn(state);
  3268. if (spawn) {
  3269. if (spawn->IsPlayer()) {
  3270. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  3271. if (client)
  3272. ret = client->BindAllowed();
  3273. }
  3274. }
  3275. lua_interface->SetBooleanValue(state, ret);
  3276. return 1;
  3277. }
  3278. int EQ2Emu_lua_IsGateAllowed(lua_State* state) {
  3279. if (!lua_interface)
  3280. return 0;
  3281. bool ret = false;
  3282. Spawn* spawn = lua_interface->GetSpawn(state);
  3283. if (spawn) {
  3284. if (spawn->IsPlayer()) {
  3285. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  3286. if (client)
  3287. ret = client->GateAllowed();
  3288. }
  3289. }
  3290. lua_interface->SetBooleanValue(state, ret);
  3291. return 1;
  3292. }
  3293. int EQ2Emu_lua_IsAlive(lua_State* state) {
  3294. Spawn* spawn = lua_interface->GetSpawn(state);
  3295. if (spawn) {
  3296. lua_interface->SetBooleanValue(state, spawn->Alive());
  3297. return 1;
  3298. }
  3299. return 0;
  3300. }
  3301. int EQ2Emu_lua_IsInCombat(lua_State* state) {
  3302. if (!lua_interface)
  3303. return 0;
  3304. Spawn* spawn = lua_interface->GetSpawn(state);
  3305. if (spawn && spawn->IsEntity()) {
  3306. lua_interface->SetBooleanValue(state, ((Entity*)spawn)->EngagedInCombat());
  3307. return 1;
  3308. }
  3309. return 0;
  3310. }
  3311. int EQ2Emu_lua_SendMessage(lua_State* state) {
  3312. Spawn* spawn = lua_interface->GetSpawn(state);
  3313. string message = lua_interface->GetStringValue(state, 2);
  3314. string color_str = lua_interface->GetStringValue(state, 3);
  3315. int8 color = CHANNEL_COLOR_WHITE;
  3316. if (spawn && spawn->IsPlayer() && message.length() > 0) {
  3317. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  3318. if (client) {
  3319. if (color_str.length() > 0) {
  3320. if (strncasecmp(color_str.c_str(), "red", 3) == 0)
  3321. color = CHANNEL_COLOR_RED;
  3322. else if (strncasecmp(color_str.c_str(), "yellow", 6) == 0)
  3323. color = CHANNEL_COLOR_YELLOW;
  3324. }
  3325. client->SimpleMessage(color, message.c_str());
  3326. }
  3327. }
  3328. return 0;
  3329. }
  3330. int EQ2Emu_lua_SendPopUpMessage(lua_State* state) {
  3331. Spawn* spawn = lua_interface->GetSpawn(state);
  3332. string message = lua_interface->GetStringValue(state, 2);
  3333. int8 red = lua_interface->GetInt8Value(state, 3);
  3334. int8 green = lua_interface->GetInt8Value(state, 4);
  3335. int8 blue = lua_interface->GetInt8Value(state, 5);
  3336. if (!spawn) {
  3337. lua_interface->LogError("%s: LUA SendPopUpMessage command error: Spawn is not valid.", lua_interface->GetScriptName(state));
  3338. return 0;
  3339. }
  3340. int32 words = ::CountWordsInString(message.c_str());
  3341. if (words < 5)
  3342. words = 5;
  3343. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  3344. if (client)
  3345. client->SendPopupMessage(10, message.c_str(), "ui_harvested_normal", words, red, green, blue);
  3346. return 0;
  3347. }
  3348. int EQ2Emu_lua_SetServerControlFlag(lua_State* state) {
  3349. Spawn* spawn = lua_interface->GetSpawn(state);
  3350. int8 param = lua_interface->GetInt8Value(state, 2);
  3351. int8 param_value = lua_interface->GetInt8Value(state, 3);
  3352. int8 value = lua_interface->GetInt8Value(state, 4);
  3353. if (spawn && spawn->IsPlayer() && (param >= 1 && param <= 5)) {
  3354. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  3355. if (client) {
  3356. PacketStruct* packet = configReader.getStruct("WS_ServerControlFlags", client->GetVersion());
  3357. switch (param) {
  3358. case 1: {
  3359. packet->setDataByName("parameter1", param_value);
  3360. break;
  3361. }
  3362. case 2: {
  3363. packet->setDataByName("parameter2", param_value);
  3364. break;
  3365. }
  3366. case 3: {
  3367. packet->setDataByName("parameter3", param_value);
  3368. break;
  3369. }
  3370. case 4: {
  3371. packet->setDataByName("parameter4", param_value);
  3372. break;
  3373. }
  3374. case 5: {
  3375. packet->setDataByName("parameter5", param_value);
  3376. break;
  3377. }
  3378. }
  3379. packet->setDataByName("value", value);
  3380. client->QueuePacket(packet->serialize());
  3381. safe_delete(packet);
  3382. }
  3383. }
  3384. return 0;
  3385. }
  3386. int EQ2Emu_lua_ToggleTracking(lua_State* state) {
  3387. Spawn* spawn = lua_interface->GetSpawn(state);
  3388. if (spawn && spawn->IsPlayer()) {
  3389. if (((Player*)spawn)->GetIsTracking())
  3390. spawn->GetZone()->AddPlayerTracking((Player*)spawn);
  3391. else
  3392. spawn->GetZone()->RemovePlayerTracking((Player*)spawn, TRACKING_STOP);
  3393. }
  3394. return 0;
  3395. }
  3396. int EQ2Emu_lua_AddPrimaryEntityCommand(lua_State* state) {
  3397. Spawn* player = lua_interface->GetSpawn(state);
  3398. Spawn* spawn = lua_interface->GetSpawn(state, 2);
  3399. string name = lua_interface->GetStringValue(state, 3);
  3400. float distance = lua_interface->GetFloatValue(state, 4);
  3401. string command = lua_interface->GetStringValue(state, 5);
  3402. string error_text = lua_interface->GetStringValue(state, 6);
  3403. int16 cast_time = lua_interface->GetInt16Value(state, 7);
  3404. int32 spell_visual = lua_interface->GetInt32Value(state, 8);
  3405. bool denyListDefault = (lua_interface->GetInt8Value(state, 9) == 1);
  3406. if (spawn) {
  3407. if (distance == 0)
  3408. distance = 10.0f;
  3409. if (command.length() == 0)
  3410. command = name;
  3411. if (command.length() < 1 && name.length() < 1)
  3412. {
  3413. // have to run this first to send a 'blank' default command, then remove all commands from the list
  3414. spawn->GetZone()->SendUpdateDefaultCommand(spawn, command.c_str(), distance);
  3415. spawn->RemovePrimaryCommands();
  3416. }
  3417. else
  3418. {
  3419. spawn->AddPrimaryEntityCommand(name.c_str(), distance, command.c_str(), error_text.c_str(), cast_time, spell_visual, denyListDefault, (player && player->IsPlayer()) ? (Player*)player : NULL);
  3420. }
  3421. }
  3422. return 0;
  3423. }
  3424. int EQ2Emu_lua_AddSpellBookEntry(lua_State* state) {
  3425. if (!lua_interface)
  3426. return 0;
  3427. Spawn* player = lua_interface->GetSpawn(state);
  3428. int32 spellid = lua_interface->GetInt32Value(state, 2);
  3429. int16 tier = lua_interface->GetInt16Value(state, 3);
  3430. Spell* spell = master_spell_list.GetSpell(spellid, tier);
  3431. if (player && spell && player->IsPlayer()) {
  3432. Client* client = player->GetZone()->GetClientBySpawn(player);
  3433. if (client) {
  3434. if (!client->GetPlayer()->HasSpell(spellid, tier - 1, true))
  3435. {
  3436. Spell* spell = master_spell_list.GetSpell(spellid, tier);
  3437. client->GetPlayer()->AddSpellBookEntry(spellid, 1, client->GetPlayer()->GetFreeSpellBookSlot(spell->GetSpellData()->spell_book_type), spell->GetSpellData()->spell_book_type, spell->GetSpellData()->linked_timer, true);
  3438. client->GetPlayer()->UnlockSpell(spell);
  3439. client->SendSpellUpdate(spell);
  3440. }
  3441. else
  3442. {
  3443. Spell* spell = master_spell_list.GetSpell(spellid, tier);
  3444. int8 old_slot = client->GetPlayer()->GetSpellSlot(spell->GetSpellID());
  3445. client->GetPlayer()->RemoveSpellBookEntry(spell->GetSpellID());
  3446. client->GetPlayer()->AddSpellBookEntry(spell->GetSpellID(), spell->GetSpellTier(), old_slot, spell->GetSpellData()->spell_book_type, spell->GetSpellData()->linked_timer, true);
  3447. client->GetPlayer()->UnlockSpell(spell);
  3448. client->SendSpellUpdate(spell);
  3449. }
  3450. //if (client ) {
  3451. // ((Player*)player)->AddSpellBookEntry(spell->GetSpellID(), spell->GetSpellTier(), ((Player*)player)->GetFreeSpellBookSlot(spell->GetSpellData()->spell_book_type), spell->GetSpellData()->spell_book_type, spell->GetSpellData()->linked_timer, true);
  3452. EQ2Packet* outapp = ((Player*)player)->GetSpellBookUpdatePacket(client->GetVersion());
  3453. if (outapp)
  3454. client->QueuePacket(outapp);
  3455. }
  3456. }
  3457. return 0;
  3458. }
  3459. int EQ2Emu_lua_HasFreeSlot(lua_State* state) {
  3460. if (!lua_interface)
  3461. return 0;
  3462. Spawn* player = lua_interface->GetSpawn(state);
  3463. if (player && player->IsPlayer()) {
  3464. lua_interface->SetBooleanValue(state, ((Player*)player)->item_list.HasFreeSlot());
  3465. return 1;
  3466. }
  3467. return 0;
  3468. }
  3469. int EQ2Emu_lua_Attack(lua_State* state) {
  3470. if (lua_interface) {
  3471. Spawn* npc = lua_interface->GetSpawn(state);
  3472. Spawn* player = lua_interface->GetSpawn(state, 2);
  3473. if (npc && player && npc->IsNPC() && player->IsPlayer())
  3474. ((NPC*)npc)->AddHate((Entity*)player, 100);
  3475. }
  3476. return 0;
  3477. }
  3478. int EQ2Emu_lua_ApplySpellVisual(lua_State* state) {
  3479. if (lua_interface) {
  3480. Spawn* target = lua_interface->GetSpawn(state);
  3481. int32 spell_visual = lua_interface->GetInt32Value(state, 2);
  3482. if (target && target->GetZone())
  3483. target->GetZone()->SendCastSpellPacket(spell_visual, target);
  3484. }
  3485. return 0;
  3486. }
  3487. int EQ2Emu_lua_HasCollectionsToHandIn(lua_State* state) {
  3488. Spawn* player;
  3489. if (lua_interface) {
  3490. player = lua_interface->GetSpawn(state);
  3491. if (player && player->IsPlayer()) {
  3492. lua_interface->SetBooleanValue(state, ((Player*)player)->GetCollectionList()->HasCollectionsToHandIn());
  3493. return 1;
  3494. }
  3495. }
  3496. return 0;
  3497. }
  3498. int EQ2Emu_lua_HandInCollections(lua_State* state) {
  3499. Spawn* player;
  3500. Client* client;
  3501. if (lua_interface) {
  3502. player = lua_interface->GetSpawn(state);
  3503. if (player && ((Player*)player)->IsPlayer() && ((Player*)player)->GetCollectionList()->HasCollectionsToHandIn())
  3504. if ((client = player->GetZone()->GetClientBySpawn(player)))
  3505. client->HandInCollections();
  3506. }
  3507. return 0;
  3508. }
  3509. int EQ2Emu_lua_UseWidget(lua_State* state) {
  3510. Spawn* widget;
  3511. if (lua_interface) {
  3512. widget = lua_interface->GetSpawn(state);
  3513. if (widget && widget->IsWidget())
  3514. ((Widget*)widget)->HandleUse(NULL, "");
  3515. }
  3516. return 0;
  3517. }
  3518. int EQ2Emu_lua_SetSpellList(lua_State* state) {
  3519. Spawn* spawn = 0;
  3520. int32 primary_list = 0;
  3521. int32 secondary_list = 0;
  3522. if (lua_interface) {
  3523. spawn = lua_interface->GetSpawn(state);
  3524. primary_list = lua_interface->GetInt32Value(state, 2);
  3525. secondary_list = lua_interface->GetInt32Value(state, 3);
  3526. if (!spawn->IsNPC()) {
  3527. lua_interface->LogError("%s: LUA SetSpellList command error: Spawn was not a valid NPC", lua_interface->GetScriptName(state));
  3528. return 0;
  3529. }
  3530. NPC* npc = (NPC*)spawn;
  3531. npc->SetPrimarySpellList(primary_list);
  3532. npc->SetSecondarySpellList(secondary_list);
  3533. npc->SetSpells(npc->GetZone()->GetNPCSpells(npc->GetPrimarySpellList(), npc->GetSecondarySpellList()));
  3534. }
  3535. return 0;
  3536. }
  3537. int EQ2Emu_lua_GetPet(lua_State* state) {
  3538. if (!lua_interface)
  3539. return 0;
  3540. Spawn* spawn = lua_interface->GetSpawn(state);
  3541. if (spawn) {
  3542. if (spawn->IsEntity() && ((Entity*)spawn)->GetPet()) {
  3543. lua_interface->SetSpawnValue(state, ((Entity*)spawn)->GetPet());
  3544. return 1;
  3545. }
  3546. }
  3547. return 0;
  3548. }
  3549. int EQ2Emu_lua_GetCharmedPet(lua_State* state) {
  3550. if (!lua_interface)
  3551. return 0;
  3552. Spawn* spawn = lua_interface->GetSpawn(state);
  3553. if (spawn) {
  3554. if (spawn->IsEntity() && ((Entity*)spawn)->GetCharmedPet()) {
  3555. lua_interface->SetSpawnValue(state, ((Entity*)spawn)->GetCharmedPet());
  3556. return 1;
  3557. }
  3558. }
  3559. return 0;
  3560. }
  3561. int EQ2Emu_lua_GetDeityPet(lua_State* state) {
  3562. if (!lua_interface)
  3563. return 0;
  3564. Spawn* spawn = lua_interface->GetSpawn(state);
  3565. if (spawn) {
  3566. if (spawn->IsEntity() && ((Entity*)spawn)->GetDeityPet()) {
  3567. lua_interface->SetSpawnValue(state, ((Entity*)spawn)->GetDeityPet());
  3568. return 1;
  3569. }
  3570. }
  3571. return 0;
  3572. }
  3573. int EQ2Emu_lua_GetCosmeticPet(lua_State* state) {
  3574. if (!lua_interface)
  3575. return 0;
  3576. Spawn* spawn = lua_interface->GetSpawn(state);
  3577. if (spawn) {
  3578. if (spawn->IsEntity() && ((Entity*)spawn)->GetCosmeticPet()) {
  3579. lua_interface->SetSpawnValue(state, ((Entity*)spawn)->GetCosmeticPet());
  3580. return 1;
  3581. }
  3582. }
  3583. return 0;
  3584. }
  3585. int EQ2Emu_lua_Charm(lua_State* state) {
  3586. if (!lua_interface)
  3587. return 0;
  3588. Spawn* owner = lua_interface->GetSpawn(state);
  3589. Spawn* pet = lua_interface->GetSpawn(state, 2);
  3590. LuaSpell* luaspell = lua_interface->GetCurrentSpell(state);
  3591. if (!luaspell) {
  3592. lua_interface->LogError("%s: LUA Charm command error: Spell is not valid, charm can only be used in spell scripts.", lua_interface->GetScriptName(state));
  3593. return 0;
  3594. }
  3595. if (owner && pet && owner->IsEntity() && pet->IsNPC()) {
  3596. ((Entity*)owner)->SetCharmedPet((Entity*)pet);
  3597. pet->SetPet(true);
  3598. ((NPC*)pet)->SetPetType(PET_TYPE_CHARMED);
  3599. ((NPC*)pet)->SetOwner((Entity*)owner);
  3600. // If owner is player and player does not have a summoned pet set the players charsheet
  3601. if (owner->IsPlayer() && !((Entity*)owner)->GetPet()) {
  3602. Player* player = (Player*)owner;
  3603. player->GetInfoStruct()->pet_id = player->GetIDWithPlayerSpawn(pet);
  3604. strcpy(player->GetInfoStruct()->pet_name, pet->GetName());
  3605. player->GetInfoStruct()->pet_movement = 2;
  3606. player->GetInfoStruct()->pet_behavior = 3;
  3607. player->GetInfoStruct()->pet_health_pct = 1.0f;
  3608. player->GetInfoStruct()->pet_power_pct = 1.0f;
  3609. // Make sure the values get sent to the client
  3610. player->SetCharSheetChanged(true);
  3611. }
  3612. // Clear the spawns script so the charmed mob doesn't try to do anything like random walks
  3613. pet->SetSpawnScript("");
  3614. // Set faction to the same as the owner
  3615. pet->SetFactionID(owner->GetFactionID());
  3616. ((NPC*)pet)->SetPetSpellID(luaspell->spell->GetSpellData()->id);
  3617. ((NPC*)pet)->SetPetSpellTier(luaspell->spell->GetSpellData()->tier);
  3618. // Clear hate list
  3619. ((NPC*)pet)->Brain()->ClearHate();
  3620. // Set the brain to a pet brain
  3621. ((NPC*)pet)->SetBrain(new CombatPetBrain((NPC*)pet));
  3622. }
  3623. return 0;
  3624. }
  3625. int EQ2Emu_lua_GetGroup(lua_State* state) {
  3626. if (!lua_interface)
  3627. return 0;
  3628. Spawn* spawn = lua_interface->GetSpawn(state);
  3629. if (!spawn) {
  3630. lua_interface->LogError("%s: LUA GetGroup command error: spawn is not valid", lua_interface->GetScriptName(state));
  3631. return 0;
  3632. }
  3633. vector<Spawn*> groupMembers;
  3634. if (!spawn->IsPlayer() && spawn->HasSpawnGroup()) {
  3635. groupMembers = *spawn->GetSpawnGroup();
  3636. }
  3637. else if (spawn->IsPlayer() && ((Player*)spawn)->GetGroupMemberInfo()) {
  3638. world.GetGroupManager()->GroupLock(__FUNCTION__, __LINE__);
  3639. deque<GroupMemberInfo*>::iterator itr;
  3640. deque<GroupMemberInfo*>* members = world.GetGroupManager()->GetGroupMembers(((Player*)spawn)->GetGroupMemberInfo()->group_id);
  3641. GroupMemberInfo* info = 0;
  3642. for (itr = members->begin(); itr != members->end(); itr++) {
  3643. info = *itr;
  3644. if (info->client)
  3645. groupMembers.push_back(info->client->GetPlayer());
  3646. }
  3647. world.GetGroupManager()->ReleaseGroupLock(__FUNCTION__, __LINE__);
  3648. }
  3649. else
  3650. return 0;
  3651. lua_createtable(state, groupMembers.size(), 0);
  3652. int newTable = lua_gettop(state);
  3653. for (int32 i = 0; i < groupMembers.size(); i++) {
  3654. lua_interface->SetSpawnValue(state, groupMembers.at(i));
  3655. lua_rawseti(state, newTable, i + 1);
  3656. }
  3657. return 1;
  3658. }
  3659. int EQ2Emu_lua_CreateOptionWindow(lua_State* state) {
  3660. if (!lua_interface)
  3661. return 0;
  3662. vector<OptionWindowOption>* option_window = new vector<OptionWindowOption>();
  3663. lua_interface->SetOptionWindowValue(state, option_window);
  3664. return 1;
  3665. }
  3666. int EQ2Emu_lua_AddOptionWindowOption(lua_State* state) {
  3667. if (!lua_interface)
  3668. return 0;
  3669. vector<OptionWindowOption>* option_window = lua_interface->GetOptionWindow(state);
  3670. if (option_window) {
  3671. OptionWindowOption option_window_option;
  3672. option_window_option.optionName = lua_interface->GetStringValue(state, 2);
  3673. option_window_option.optionDescription = lua_interface->GetStringValue(state, 3);
  3674. option_window_option.optionIconSheet = lua_interface->GetInt32Value(state, 4);
  3675. option_window_option.optionIconID = lua_interface->GetInt16Value(state, 5);
  3676. option_window_option.optionCommand = lua_interface->GetStringValue(state, 6);
  3677. option_window_option.optionConfirmTitle = lua_interface->GetStringValue(state, 7);
  3678. if (option_window_option.optionName.length() > 0 && option_window_option.optionDescription.length() > 0)
  3679. option_window->push_back(option_window_option);
  3680. }
  3681. return 0;
  3682. }
  3683. int EQ2Emu_lua_SendOptionWindow(lua_State* state) {
  3684. if (!lua_interface)
  3685. return 0;
  3686. vector<OptionWindowOption>* option_window = lua_interface->GetOptionWindow(state);
  3687. Spawn* player = lua_interface->GetSpawn(state, 2);
  3688. string window_title = lua_interface->GetStringValue(state, 3);
  3689. string cancel_command = lua_interface->GetStringValue(state, 4);
  3690. Client* client = player->GetZone()->GetClientBySpawn(player);
  3691. if (option_window && window_title.length() > 0 && client) {
  3692. PacketStruct* packet = configReader.getStruct("WS_SelectTradeskill", client->GetVersion());
  3693. if (!packet)
  3694. return 0;
  3695. packet->setDataByName("title_text", window_title.c_str());
  3696. if (cancel_command.length() > 0)
  3697. packet->setDataByName("command_text_cancel", cancel_command.c_str());
  3698. packet->setArrayLengthByName("num_selections", option_window->size());
  3699. vector<OptionWindowOption>::iterator itr;
  3700. int8 i = 0;
  3701. for (itr = option_window->begin(); itr != option_window->end(); itr++) {
  3702. OptionWindowOption opt = *itr;
  3703. packet->setArrayDataByName("tradeskill_name", opt.optionName.c_str(), i);
  3704. packet->setArrayDataByName("tradeskill_description", opt.optionDescription.c_str(), i);
  3705. packet->setArrayDataByName("icon_sheet", opt.optionIconSheet, i);
  3706. packet->setArrayDataByName("icon_id", opt.optionIconID, i);
  3707. if (opt.optionCommand.length() > 0)
  3708. packet->setArrayDataByName("command_text", opt.optionCommand.c_str(), i);
  3709. if (opt.optionConfirmTitle.length() > 0)
  3710. packet->setArrayDataByName("confirm_window_title", opt.optionConfirmTitle.c_str(), i);
  3711. i++;
  3712. }
  3713. client->QueuePacket(packet->serialize());
  3714. safe_delete(option_window);
  3715. safe_delete(packet);
  3716. }
  3717. return 0;
  3718. }
  3719. int EQ2Emu_lua_GetTradeskillClass(lua_State* state) {
  3720. if (!lua_interface)
  3721. return 0;
  3722. Spawn* spawn = lua_interface->GetSpawn(state);
  3723. if (spawn) {
  3724. lua_interface->SetInt32Value(state, spawn->GetTradeskillClass());
  3725. return 1;
  3726. }
  3727. else
  3728. lua_interface->LogError("%s: LUA GetTradeskillClass command error: Spawn was not valid", lua_interface->GetScriptName(state));
  3729. return 0;
  3730. }
  3731. int EQ2Emu_lua_GetTradeskillLevel(lua_State* state) {
  3732. if (!lua_interface)
  3733. return 0;
  3734. Spawn* spawn = lua_interface->GetSpawn(state);
  3735. if (spawn) {
  3736. lua_interface->SetInt32Value(state, spawn->GetTSLevel());
  3737. return 1;
  3738. }
  3739. else
  3740. lua_interface->LogError("%s: LUA GetTradeskillLevel command error: Spawns was not valid", lua_interface->GetScriptName(state));
  3741. return 0;
  3742. }
  3743. int EQ2Emu_lua_GetTradeskillClassName(lua_State* state) {
  3744. if (!lua_interface)
  3745. return 0;
  3746. Spawn* spawn = lua_interface->GetSpawn(state);
  3747. if (spawn) {
  3748. int8 class_id = spawn->GetTradeskillClass();
  3749. // Need to add 42 for the offset in the array
  3750. class_id += 44;
  3751. lua_interface->SetStringValue(state, classes.GetClassNameCase(class_id).c_str());
  3752. return 1;
  3753. }
  3754. else
  3755. lua_interface->LogError("%s: LUA GetTradeskillClassName command error: Spawn was not valid", lua_interface->GetScriptName(state));
  3756. return 0;
  3757. }
  3758. int EQ2Emu_lua_SetTradeskillLevel(lua_State* state) {
  3759. if (!lua_interface)
  3760. return 0;
  3761. Spawn* spawn = lua_interface->GetSpawn(state);
  3762. int16 level = lua_interface->GetInt8Value(state, 2);
  3763. if (spawn) {
  3764. if (spawn->IsPlayer())
  3765. spawn->GetZone()->GetClientBySpawn(spawn)->ChangeTSLevel(spawn->GetTSLevel(), level);
  3766. else
  3767. spawn->SetTSLevel(level);
  3768. }
  3769. else
  3770. lua_interface->LogError("%s: LUA SetTradeskillLevel command error: Spawn was not valid", lua_interface->GetScriptName(state));
  3771. return 0;
  3772. }
  3773. int EQ2Emu_lua_SummonPet(lua_State* state) {
  3774. // Check to see if we have a valid lua_interface
  3775. if (!lua_interface)
  3776. return 0;
  3777. // Get the spawn that is getting the pet
  3778. Spawn* spawn = lua_interface->GetSpawn(state);
  3779. // Get the DB ID of the pet
  3780. int32 pet_id = lua_interface->GetInt32Value(state, 2);
  3781. // The max level the pet can gain
  3782. int8 max_level = lua_interface->GetInt8Value(state, 3);
  3783. // Get the spell that this command was called from
  3784. LuaSpell* luaspell = lua_interface->GetCurrentSpell(state);
  3785. // Check to make sure the spawn pointer is valid
  3786. if (!spawn) {
  3787. lua_interface->LogError("%s: LUA SummonPet command error: Spawn is not valid", lua_interface->GetScriptName(state));
  3788. return 0;
  3789. }
  3790. // Check to make sure the spawn is an entity
  3791. if (!spawn->IsEntity()) {
  3792. lua_interface->LogError("%s: LUA SummonPet command error: Spawn is not an entity", lua_interface->GetScriptName(state));
  3793. return 0;
  3794. }
  3795. // Check to make sure the spawn doesn't already have a pet of this type
  3796. if (((Entity*)spawn)->GetPet()) {
  3797. if (spawn->IsPlayer()) {
  3798. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  3799. if (client)
  3800. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You already have a pet.");
  3801. }
  3802. lua_interface->LogError("%s: LUA SummonPet command error: spawn already has a pet of this type", lua_interface->GetScriptName(state));
  3803. return 0;
  3804. }
  3805. // Check to see if the DB ID for the pet is set
  3806. if (pet_id == 0) {
  3807. lua_interface->LogError("%s: LUA SummonPet command error: pet_id can not be set to 0", lua_interface->GetScriptName(state));
  3808. return 0;
  3809. }
  3810. // Check to see if the pointer to the spell is valid
  3811. if (!luaspell) {
  3812. lua_interface->LogError("%s: LUA SummonPet command error: valid spell not found, SummonPet can only be used in spell scripts", lua_interface->GetScriptName(state));
  3813. return 0;
  3814. }
  3815. // Get a pointer to a spawn with the given DB ID and check if the pointer is valid
  3816. Spawn* pet = spawn->GetZone()->GetSpawn(pet_id);
  3817. if (!pet) {
  3818. lua_interface->LogError("%s: LUA SummonPet command error: Could not find spawn with id of %u.", lua_interface->GetScriptName(state), pet_id);
  3819. return 0;
  3820. }
  3821. // Check to make sure the pet is an npc
  3822. if (!pet->IsNPC()) {
  3823. lua_interface->LogError("%s: LUA SummonPet command error: id (%u) did not point to a npc", lua_interface->GetScriptName(state), pet_id);
  3824. return 0;
  3825. }
  3826. // Spawn the pet at the same location as the owner
  3827. pet->SetX(spawn->GetX());
  3828. pet->SetY(spawn->GetY());
  3829. pet->SetZ(spawn->GetZ());
  3830. pet->SetLocation(spawn->GetLocation());
  3831. pet->SetHeading(spawn->GetHeading());
  3832. spawn->GetZone()->AddSpawn(pet);
  3833. /*
  3834. const char* spawn_script = world.GetSpawnScript(pet_id);
  3835. if(spawn_script && lua_interface->GetSpawnScript(spawn_script) != 0){
  3836. spawn->SetSpawnScript(string(spawn_script));
  3837. zone->CallSpawnScript(spawn, SPAWN_SCRIPT_SPAWN);
  3838. }*/
  3839. // Get a random pet name
  3840. string random_pet_name;
  3841. int16 rand_index = MakeRandomInt(0, spawn->GetZone()->pet_names.size() - 1);
  3842. random_pet_name = spawn->GetZone()->pet_names.at(rand_index);
  3843. LogWrite(PET__DEBUG, 0, "Pets", "Randomize Pet Name: '%s' (rand: %i)", random_pet_name.c_str(), rand_index);
  3844. // If player set various values for the char sheet (pet window)
  3845. if (spawn->IsPlayer()) {
  3846. Player* player = (Player*)spawn;
  3847. player->GetInfoStruct()->pet_id = player->GetIDWithPlayerSpawn(pet);
  3848. strcpy(player->GetInfoStruct()->pet_name, random_pet_name.c_str());
  3849. player->GetInfoStruct()->pet_movement = 2;
  3850. player->GetInfoStruct()->pet_behavior = 3;
  3851. player->GetInfoStruct()->pet_health_pct = 1.0f;
  3852. player->GetInfoStruct()->pet_power_pct = 1.0f;
  3853. // Make sure the values get sent to the client
  3854. player->SetCharSheetChanged(true);
  3855. }
  3856. // Set the pets name
  3857. pet->SetName(random_pet_name.c_str());
  3858. // Set the level of the pet to the owners level or max level(if set) if owners level is greater
  3859. if (max_level > 0)
  3860. pet->SetLevel(spawn->GetLevel() >= max_level ? max_level : spawn->GetLevel());
  3861. else
  3862. pet->SetLevel(spawn->GetLevel());
  3863. // Set the max level this pet can reach
  3864. ((NPC*)pet)->SetMaxPetLevel(max_level);
  3865. // Set the faction of the pet to the same faction as the owner
  3866. pet->SetFactionID(spawn->GetFactionID());
  3867. // Set the spawn as a pet
  3868. pet->SetPet(true);
  3869. // Give a pointer of the owner to the pet
  3870. ((NPC*)pet)->SetOwner((Entity*)spawn);
  3871. // Give a pointer of the pet to the owner
  3872. ((Entity*)spawn)->SetCombatPet((Entity*)pet);
  3873. // Set the pet type
  3874. ((NPC*)pet)->SetPetType(PET_TYPE_COMBAT);
  3875. // Set the spell id used to create this pet
  3876. ((NPC*)pet)->SetPetSpellID(luaspell->spell->GetSpellData()->id);
  3877. // Set the spell tier used to create this pet
  3878. ((NPC*)pet)->SetPetSpellTier(luaspell->spell->GetSpellData()->tier);
  3879. // Set the pets spawn type to 6
  3880. pet->SetSpawnType(6);
  3881. // Set the pets brain
  3882. ((NPC*)pet)->SetBrain(new CombatPetBrain((NPC*)pet));
  3883. // Check to see if the pet has a subtitle
  3884. if (strlen(pet->GetSubTitle()) > 0) {
  3885. // Add the players name to the front of the sub title
  3886. string pet_subtitle;
  3887. pet_subtitle.append(spawn->GetName()).append("'s ").append(pet->GetSubTitle());
  3888. LogWrite(PET__DEBUG, 0, "Pets", "Pet Subtitle: '%s'", pet_subtitle.c_str());
  3889. // Set the pets subtitle to the new one
  3890. pet->SetSubTitle(pet_subtitle.c_str());
  3891. }
  3892. // Add the "Pet Options" entity command to the pet
  3893. pet->AddSecondaryEntityCommand("Pet Options", 10.0f, "petoptions", "", 0, 0);
  3894. // Set the pet as the return value for this function
  3895. lua_interface->SetSpawnValue(state, pet);
  3896. return 1;
  3897. }
  3898. int EQ2Emu_lua_SummonDeityPet(lua_State* state) {
  3899. if (!lua_interface)
  3900. return 0;
  3901. Spawn* spawn = lua_interface->GetSpawn(state);
  3902. int32 pet_id = lua_interface->GetInt32Value(state, 2);
  3903. LuaSpell* luaspell = lua_interface->GetCurrentSpell(state);
  3904. if (!spawn) {
  3905. lua_interface->LogError("%s: LUA SummonDeityPet command error: Spawn is not valid", lua_interface->GetScriptName(state));
  3906. return 0;
  3907. }
  3908. if (!spawn->IsEntity()) {
  3909. lua_interface->LogError("%s: LUA SummonDeityPet command error: Spawn is not an entity", lua_interface->GetScriptName(state));
  3910. return 0;
  3911. }
  3912. if (((Entity*)spawn)->GetDeityPet()) {
  3913. if (spawn->IsPlayer()) {
  3914. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  3915. if (client)
  3916. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You already have a deity pet.");
  3917. }
  3918. lua_interface->LogError("%s: LUA SummonDeityPet command error: spawn already has a pet of this type", lua_interface->GetScriptName(state));
  3919. return 0;
  3920. }
  3921. if (pet_id == 0) {
  3922. lua_interface->LogError("%s: LUA SummonDeityPet command error: pet_id can not be set to 0", lua_interface->GetScriptName(state));
  3923. return 0;
  3924. }
  3925. if (!luaspell) {
  3926. lua_interface->LogError("%s: LUA SummonDeityPet command error: valid spell not found, SummonDeityPet can only be used in spell scripts", lua_interface->GetScriptName(state));
  3927. return 0;
  3928. }
  3929. Spawn* pet = spawn->GetZone()->GetSpawn(pet_id);
  3930. if (!pet) {
  3931. lua_interface->LogError("%s: LUA SummonDeityPet command error: Could not find spawn with id of %u.", lua_interface->GetScriptName(state), pet_id);
  3932. return 0;
  3933. }
  3934. if (!pet->IsNPC()) {
  3935. lua_interface->LogError("%s: LUA SummonDeityPet command error: spawn with id of %u is not a npc", lua_interface->GetScriptName(state), pet_id);
  3936. return 0;
  3937. }
  3938. pet->SetX(spawn->GetX());
  3939. pet->SetY(spawn->GetY());
  3940. pet->SetZ(spawn->GetZ());
  3941. pet->SetLocation(spawn->GetLocation());
  3942. pet->SetHeading(spawn->GetHeading());
  3943. spawn->GetZone()->AddSpawn(pet);
  3944. string random_pet_name;
  3945. int16 rand_index = MakeRandomInt(0, spawn->GetZone()->pet_names.size() - 1);
  3946. random_pet_name = spawn->GetZone()->pet_names.at(rand_index);
  3947. LogWrite(PET__DEBUG, 0, "Pets", "Randomize Pet Name: '%s' (rand: %i)", random_pet_name.c_str(), rand_index);
  3948. pet->SetName(random_pet_name.c_str());
  3949. pet->SetLevel(spawn->GetLevel());
  3950. pet->SetFactionID(spawn->GetFactionID());
  3951. pet->SetPet(true);
  3952. ((NPC*)pet)->SetPetType(PET_TYPE_DEITY);
  3953. ((NPC*)pet)->SetOwner((Entity*)spawn);
  3954. ((Entity*)spawn)->SetDeityPet((Entity*)pet);
  3955. pet->SetSpawnType(6);
  3956. ((NPC*)pet)->SetBrain(new NonCombatPetBrain((NPC*)pet));
  3957. ((NPC*)pet)->SetPetSpellID(luaspell->spell->GetSpellData()->id);
  3958. ((NPC*)pet)->SetPetSpellTier(luaspell->spell->GetSpellData()->tier);
  3959. if (strlen(pet->GetSubTitle()) > 0) {
  3960. string pet_subtitle;
  3961. pet_subtitle.append(spawn->GetName()).append("'s ").append(pet->GetSubTitle());
  3962. LogWrite(PET__DEBUG, 0, "Pets", "Pet Subtitle: '%s'", pet_subtitle.c_str());
  3963. pet->SetSubTitle(pet_subtitle.c_str());
  3964. }
  3965. // deity and cosmetic pets are not attackable
  3966. pet->SetAttackable(false);
  3967. pet->AddSecondaryEntityCommand("Pet Options", 10.0f, "petoptions", "", 0, 0);
  3968. lua_interface->SetSpawnValue(state, pet);
  3969. return 1;
  3970. }
  3971. int EQ2Emu_lua_SummonCosmeticPet(lua_State* state) {
  3972. if (!lua_interface)
  3973. return 0;
  3974. Spawn* spawn = lua_interface->GetSpawn(state);
  3975. int32 pet_id = lua_interface->GetInt32Value(state, 2);
  3976. LuaSpell* luaspell = lua_interface->GetCurrentSpell(state);
  3977. if (!spawn) {
  3978. lua_interface->LogError("%s: LUA SummonCosmeticPet command error: Spawn is not valid", lua_interface->GetScriptName(state));
  3979. return 0;
  3980. }
  3981. if (!spawn->IsEntity()) {
  3982. lua_interface->LogError("%s: LUA SummonCosmeticPet command error: Spawn is not an entity", lua_interface->GetScriptName(state));
  3983. return 0;
  3984. }
  3985. if (((Entity*)spawn)->GetCosmeticPet()) {
  3986. if (spawn->IsPlayer()) {
  3987. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  3988. if (client)
  3989. client->SimpleMessage(CHANNEL_COLOR_YELLOW, "You already have a cosmetic pet.");
  3990. }
  3991. lua_interface->LogError("%s: LUA SummonCosmeticPet command error: spawn already has a pet of this type", lua_interface->GetScriptName(state));
  3992. return 0;
  3993. }
  3994. if (pet_id == 0) {
  3995. lua_interface->LogError("%s: LUA SummonCosmeticPet command error: pet_id can not be set to 0", lua_interface->GetScriptName(state));
  3996. return 0;
  3997. }
  3998. if (!luaspell) {
  3999. lua_interface->LogError("%s: LUA SummonCosmeticPet command error: valid spell not found, SummonCosmeticPet can only be used in spell scripts", lua_interface->GetScriptName(state));
  4000. return 0;
  4001. }
  4002. Spawn* pet = spawn->GetZone()->GetSpawn(pet_id);
  4003. if (!pet) {
  4004. lua_interface->LogError("%s: LUA SummonCosmeticPet command error: Could not find spawn with id of %u.", lua_interface->GetScriptName(state), pet_id);
  4005. return 0;
  4006. }
  4007. if (!pet->IsNPC()) {
  4008. lua_interface->LogError("%s: LUA SummonCosmeticPet command error: spawn with id of %u is not a npc", lua_interface->GetScriptName(state), pet_id);
  4009. return 0;
  4010. }
  4011. pet->SetX(spawn->GetX());
  4012. pet->SetY(spawn->GetY());
  4013. pet->SetZ(spawn->GetZ());
  4014. pet->SetLocation(spawn->GetLocation());
  4015. pet->SetHeading(spawn->GetHeading());
  4016. spawn->GetZone()->AddSpawn(pet);
  4017. string random_pet_name;
  4018. int16 rand_index = MakeRandomInt(0, spawn->GetZone()->pet_names.size() - 1);
  4019. random_pet_name = spawn->GetZone()->pet_names.at(rand_index);
  4020. LogWrite(PET__DEBUG, 0, "Pets", "Randomize Pet Name: '%s' (rand: %i)", random_pet_name.c_str(), rand_index);
  4021. pet->SetName(random_pet_name.c_str());
  4022. pet->SetLevel(spawn->GetLevel());
  4023. pet->SetFactionID(spawn->GetFactionID());
  4024. pet->SetPet(true);
  4025. ((NPC*)pet)->SetPetType(PET_TYPE_COSMETIC);
  4026. ((NPC*)pet)->SetOwner((Entity*)spawn);
  4027. ((Entity*)spawn)->SetCosmeticPet((Entity*)pet);
  4028. pet->SetSpawnType(6);
  4029. ((NPC*)pet)->SetBrain(new NonCombatPetBrain((NPC*)pet));
  4030. ((NPC*)pet)->SetPetSpellID(luaspell->spell->GetSpellData()->id);
  4031. ((NPC*)pet)->SetPetSpellTier(luaspell->spell->GetSpellData()->tier);
  4032. if (strlen(pet->GetSubTitle()) > 0) {
  4033. string pet_subtitle;
  4034. pet_subtitle.append(spawn->GetName()).append("'s ").append(pet->GetSubTitle());
  4035. LogWrite(PET__DEBUG, 0, "Pets", "Pet Subtitle: '%s'", pet_subtitle.c_str());
  4036. pet->SetSubTitle(pet_subtitle.c_str());
  4037. }
  4038. pet->SetAttackable(false);
  4039. pet->AddSecondaryEntityCommand("Pet Options", 10.0f, "petoptions", "", 0, 0);
  4040. lua_interface->SetSpawnValue(state, pet);
  4041. return 1;
  4042. }
  4043. int EQ2Emu_lua_DismissPet(lua_State* state) {
  4044. if (!lua_interface)
  4045. return 0;
  4046. Spawn* spawn = lua_interface->GetSpawn(state);
  4047. if (!spawn) {
  4048. lua_interface->LogError("%s: LUA DismissPet command error: spawn is not valid", lua_interface->GetScriptName(state));
  4049. return 0;
  4050. }
  4051. if (!spawn->IsPet()) {
  4052. lua_interface->LogError("%s: LUA DismissPet command error: spawn is not a pet", lua_interface->GetScriptName(state));
  4053. return 0;
  4054. }
  4055. if (!((NPC*)spawn)->IsDismissing())
  4056. ((NPC*)spawn)->GetOwner()->DismissPet((NPC*)spawn);
  4057. return 0;
  4058. }
  4059. int EQ2Emu_lua_SetQuestFeatherColor(lua_State* state) {
  4060. if (!lua_interface)
  4061. return 0;
  4062. Quest* quest = lua_interface->GetQuest(state);
  4063. if (!quest) {
  4064. lua_interface->LogError("%s: LUA SetQuestFeatherColor command error: valid quest not found, SetQuestFeatherColor can only be called from a quest script", lua_interface->GetScriptName(state));
  4065. return 0;
  4066. }
  4067. int8 feather_color = lua_interface->GetInt8Value(state, 2);
  4068. if (feather_color > 0)
  4069. quest->SetFeatherColor(feather_color);
  4070. return 0;
  4071. }
  4072. int EQ2Emu_lua_RemoveSpawnAccess(lua_State* state) {
  4073. if (!lua_interface)
  4074. return 0;
  4075. Spawn* spawn = lua_interface->GetSpawn(state);
  4076. Spawn* spawn2 = lua_interface->GetSpawn(state, 2);
  4077. if (!spawn) {
  4078. lua_interface->LogError("%s: LUA RemoveSpawnAccess command error: first spawn is not valid", lua_interface->GetScriptName(state));
  4079. return 0;
  4080. }
  4081. if (!spawn2) {
  4082. lua_interface->LogError("%s: LUA RemoveSpawnAccess command error: second spawn is not valid", lua_interface->GetScriptName(state));
  4083. return 0;
  4084. }
  4085. spawn->RemoveSpawnAccess(spawn2);
  4086. return 0;
  4087. }
  4088. int EQ2Emu_lua_SpawnByLocationID(lua_State* state) {
  4089. if (!lua_interface)
  4090. return 0;
  4091. ZoneServer* zone = lua_interface->GetZone(state);
  4092. int32 location_id = lua_interface->GetInt32Value(state, 2);
  4093. if (!zone) {
  4094. lua_interface->LogError("%s: LUA SpawnByLocationID command error: zone is not valid", lua_interface->GetScriptName(state));
  4095. return 0;
  4096. }
  4097. if (location_id == 0) {
  4098. lua_interface->LogError("%s: LUA SpawnByLocationID command error: location id can not be 0", lua_interface->GetScriptName(state));
  4099. return 0;
  4100. }
  4101. SpawnLocation* location = zone->GetSpawnLocation(location_id);
  4102. if (!location) {
  4103. lua_interface->LogError("%s: LUA SpawnByLocationID command error: no location found for the given ID (%u)", lua_interface->GetScriptName(state), location_id);
  4104. return 0;
  4105. }
  4106. Spawn* spawn = 0;
  4107. if (location->entities[0]) {
  4108. if (location->entities[0]->spawn_type == SPAWN_ENTRY_TYPE_NPC)
  4109. spawn = zone->AddNPCSpawn(location, location->entities[0]);
  4110. else if (location->entities[0]->spawn_type == SPAWN_ENTRY_TYPE_GROUNDSPAWN)
  4111. spawn = zone->AddGroundSpawn(location, location->entities[0]);
  4112. else if (location->entities[0]->spawn_type == SPAWN_ENTRY_TYPE_OBJECT)
  4113. spawn = zone->AddObjectSpawn(location, location->entities[0]);
  4114. else if (location->entities[0]->spawn_type == SPAWN_ENTRY_TYPE_WIDGET)
  4115. spawn = zone->AddWidgetSpawn(location, location->entities[0]);
  4116. else if (location->entities[0]->spawn_type == SPAWN_ENTRY_TYPE_SIGN)
  4117. spawn = zone->AddSignSpawn(location, location->entities[0]);
  4118. if (spawn) {
  4119. const char* script = 0;
  4120. for (int x = 0; x < 3; x++) {
  4121. switch (x) {
  4122. case 0:
  4123. script = world.GetSpawnEntryScript(location->entities[0]->spawn_entry_id);
  4124. break;
  4125. case 1:
  4126. script = world.GetSpawnLocationScript(location->entities[0]->spawn_location_id);
  4127. break;
  4128. case 2:
  4129. script = world.GetSpawnScript(location->entities[0]->spawn_id);
  4130. break;
  4131. }
  4132. if (script && lua_interface->GetSpawnScript(script) != 0) {
  4133. spawn->SetSpawnScript(string(script));
  4134. break;
  4135. }
  4136. }
  4137. zone->CallSpawnScript(spawn, SPAWN_SCRIPT_SPAWN);
  4138. lua_interface->SetSpawnValue(state, spawn);
  4139. return 1;
  4140. }
  4141. else {
  4142. LogWrite(ZONE__ERROR, 0, "Zone", "Error adding spawn to zone");
  4143. safe_delete(spawn);
  4144. }
  4145. }
  4146. return 0;
  4147. }
  4148. int EQ2Emu_lua_CastEntityCommand(lua_State* state) {
  4149. if (!lua_interface)
  4150. return 0;
  4151. Spawn* caster = lua_interface->GetSpawn(state);
  4152. Spawn* target = lua_interface->GetSpawn(state, 2);
  4153. int32 id = lua_interface->GetInt32Value(state, 3);
  4154. string command = lua_interface->GetStringValue(state, 4);
  4155. if (!caster) {
  4156. lua_interface->LogError("%s: LUA CastEntityCommand command error: caster is not valid", lua_interface->GetScriptName(state));
  4157. return 0;
  4158. }
  4159. if (!target) {
  4160. lua_interface->LogError("%s: LUA CastEntityCommand command error: target is not valid", lua_interface->GetScriptName(state));
  4161. return 0;
  4162. }
  4163. if (!caster->IsPlayer()) {
  4164. lua_interface->LogError("%s: LUA CastEntityCommand command error: caster is not a player", lua_interface->GetScriptName(state));
  4165. return 0;
  4166. }
  4167. EntityCommand* entity_command = caster->GetZone()->GetEntityCommand(id, command);
  4168. if (!entity_command) {
  4169. lua_interface->LogError("%s: LUA CastEntityCommand command error: unable to get a valid EntityCommand with the given ID (%u) and name (%s)", lua_interface->GetScriptName(state), id, command.c_str());
  4170. return 0;
  4171. }
  4172. Client* client = caster->GetZone()->GetClientBySpawn(caster);
  4173. if (!client) {
  4174. lua_interface->LogError("%s: LUA CastEntityCommand command error: unable to get a valid client for the given caster", lua_interface->GetScriptName(state));
  4175. return 0;
  4176. }
  4177. client->GetCurrentZone()->ProcessEntityCommand(entity_command, (Player*)caster, target);
  4178. return 0;
  4179. }
  4180. int EQ2Emu_lua_SetLuaBrain(lua_State* state) {
  4181. if (!lua_interface)
  4182. return 0;
  4183. Spawn* spawn = lua_interface->GetSpawn(state);
  4184. if (!spawn) {
  4185. lua_interface->LogError("%s: LUA SetLuaBrain command error: spawn is not valid", lua_interface->GetScriptName(state));
  4186. return 0;
  4187. }
  4188. if (!spawn->IsNPC()) {
  4189. lua_interface->LogError("%s: LUA SetLuaBrain command error: spawn is not a npc", lua_interface->GetScriptName(state));
  4190. return 0;
  4191. }
  4192. ((NPC*)spawn)->SetBrain(new LuaBrain((NPC*)spawn));
  4193. return 0;
  4194. }
  4195. int EQ2Emu_lua_SetBrainTick(lua_State* state) {
  4196. if (!lua_interface)
  4197. return 0;
  4198. Spawn* spawn = lua_interface->GetSpawn(state);
  4199. int16 tick = lua_interface->GetInt16Value(state, 2);
  4200. if (!spawn) {
  4201. lua_interface->LogError("%s: LUA SetBrainTick command error: spawn is not valid", lua_interface->GetScriptName(state));
  4202. return 0;
  4203. }
  4204. if (!spawn->IsNPC()) {
  4205. lua_interface->LogError("%s: LUA SetBrainTick command error: spawn is not a valid npc", lua_interface->GetScriptName(state));
  4206. return 0;
  4207. }
  4208. if (tick < 20) {
  4209. lua_interface->LogError("%s: LUA SetBrainTick command error: tick can not be set below 20 milliseconds", lua_interface->GetScriptName(state));
  4210. return 0;
  4211. }
  4212. ((NPC*)spawn)->Brain()->SetTick(tick);
  4213. return 0;
  4214. }
  4215. int EQ2Emu_lua_SetFollowTarget(lua_State* state) {
  4216. if (!lua_interface)
  4217. return 0;
  4218. Spawn* spawn = lua_interface->GetSpawn(state);
  4219. Spawn* target = lua_interface->GetSpawn(state, 2);
  4220. int32 follow_distance = lua_interface->GetInt32Value(state, 3);
  4221. if (!spawn) {
  4222. lua_interface->LogError("%s: LUA SetFollowTarget command error: spawn is not valid", lua_interface->GetScriptName(state));
  4223. return 0;
  4224. }
  4225. // Target can be null, setting follow target to 0 clears it and will cancel follow, so no need to check it
  4226. spawn->SetFollowTarget(target, follow_distance);
  4227. return 0;
  4228. }
  4229. int EQ2Emu_lua_GetFollowTarget(lua_State* state) {
  4230. if (!lua_interface)
  4231. return 0;
  4232. Spawn* spawn = lua_interface->GetSpawn(state);
  4233. if (!spawn) {
  4234. lua_interface->LogError("%s: LUA GetFollowTarget command error: spawn is not valid", lua_interface->GetScriptName(state));
  4235. return 0;
  4236. }
  4237. Spawn* target = spawn->GetFollowTarget();
  4238. if (target) {
  4239. lua_interface->SetSpawnValue(state, target);
  4240. return 1;
  4241. }
  4242. return 0;
  4243. }
  4244. int EQ2Emu_lua_ToggleFollow(lua_State* state) {
  4245. if (!lua_interface)
  4246. return 0;
  4247. Spawn* spawn = lua_interface->GetSpawn(state);
  4248. if (!spawn) {
  4249. lua_interface->LogError("%s: LUA ToggleFollow command error: spawn is not valid", lua_interface->GetScriptName(state));
  4250. return 0;
  4251. }
  4252. if (spawn->following)
  4253. spawn->following = false;
  4254. else
  4255. spawn->following = true;
  4256. return 0;
  4257. }
  4258. int EQ2Emu_lua_IsFollowing(lua_State* state) {
  4259. if (!lua_interface)
  4260. return 0;
  4261. Spawn* spawn = lua_interface->GetSpawn(state);
  4262. if (!spawn) {
  4263. lua_interface->LogError("%s: LUA IsFollowing command error: spawn is not valid", lua_interface->GetScriptName(state));
  4264. return 0;
  4265. }
  4266. lua_interface->SetBooleanValue(state, spawn->following);
  4267. return 1;
  4268. }
  4269. int EQ2Emu_lua_SetTempVariable(lua_State* state) {
  4270. // As this is unique among the rest of our lua functions as the 3rd param can be of multiple types
  4271. // I will attempt to explain how this function works for future refrence
  4272. // Fist lets make sure lua_interface is valid, if not return out
  4273. if (!lua_interface)
  4274. return 0;
  4275. // Next we grab the first 2 params same as we usually would
  4276. Spawn* spawn = lua_interface->GetSpawn(state);
  4277. string var = lua_interface->GetStringValue(state, 2);
  4278. // DataType will let us know the value type so we can handle it correctly, we set these ourself so the values I used are made up
  4279. // 1 = Spawn
  4280. // 2 = Zone
  4281. // 3 = Item
  4282. // 4 = Quest
  4283. // 5 = String
  4284. // 6 = nil (null)
  4285. int8 dataType = 0;
  4286. // Define pointers for each potential type
  4287. Spawn* spawnVal = 0;
  4288. ZoneServer* zone = 0;
  4289. Item* item = 0;
  4290. Quest* quest = 0;
  4291. string val;
  4292. // Finally we get to grabbing the third param, we will first check to see if it is light user data
  4293. // which is custom data types, in this case it can be Spawn, Zone, Item, or Quest. Conversation and
  4294. // options window are also light user data be we do not handle those.
  4295. // We check with lua_islightuserdata(lua_State*, index)
  4296. if (lua_islightuserdata(state, 3)) {
  4297. // It is light user data so we will grab the param with lua_touserdata(lua_State*, index)
  4298. // and convert it to LUAUserData*
  4299. LUAUserData* data = (LUAUserData*)lua_touserdata(state, 3);
  4300. // Check to make sure the data we got is valid, if not give an error
  4301. if (!data || !data->IsCorrectlyInitialized()) {
  4302. lua_interface->LogError("%s: LUA SetTempVariable command error while processing %s", lua_interface->GetScriptName(state), lua_tostring(state, -1));
  4303. }
  4304. // Check if data is a Spawn, if so set our Spawn pointer and the dataType variable
  4305. else if (data->IsSpawn()) {
  4306. spawnVal = data->spawn;
  4307. dataType = 1;
  4308. }
  4309. // Check if data is a Zone, if so set our Zone pointer and the dataType variable
  4310. else if (data->IsZone()) {
  4311. zone = data->zone;
  4312. dataType = 2;
  4313. }
  4314. // Check if data is a Item, if so set our Item pointer and the dataType variable
  4315. else if (data->IsItem()) {
  4316. item = data->item;
  4317. dataType = 3;
  4318. }
  4319. // Check if data is a Ques, if so set our Quest pointer and the dataType variable
  4320. else if (data->IsQuest()) {
  4321. quest = data->quest;
  4322. dataType = 4;
  4323. }
  4324. }
  4325. // Wasn't light user data, check if it is nil(null)
  4326. else if (lua_isnil(state, 3)) {
  4327. // It is nil (null) set the dataType variable, no need to set a pointer in this case
  4328. dataType = 6;
  4329. }
  4330. // Wasn't light user data or nil (null), must be a string
  4331. else {
  4332. // Set the string and dataType variable
  4333. val = lua_interface->GetStringValue(state, 3);
  4334. dataType = 5;
  4335. }
  4336. // We now have all the params, lets check to make sure they are valid
  4337. if (!spawn) {
  4338. lua_interface->LogError("%s: LUA SetTempVariable command error: spawn is not valid", lua_interface->GetScriptName(state));
  4339. return 0;
  4340. }
  4341. if (var.length() == 0) {
  4342. lua_interface->LogError("%s: LUA SetTempVariable command error: var must be set", lua_interface->GetScriptName(state));
  4343. return 0;
  4344. }
  4345. if (dataType == 0) {
  4346. lua_interface->LogError("%s: LUA SetTempVariable command error: unknown data type", lua_interface->GetScriptName(state));
  4347. return 0;
  4348. }
  4349. // All params are valid, lets set the spawns temp variable, this is where dataType variable comes in.
  4350. // AddTempVariable has overloads for all the types of data we support, we need to make sure the third
  4351. // param gets sent to the correct list so we check the value of dataType to know where it should go.
  4352. switch (dataType) {
  4353. case 1:
  4354. // 1 = Spawn
  4355. spawn->AddTempVariable(var, spawnVal);
  4356. break;
  4357. case 2:
  4358. // 2 = Zone
  4359. spawn->AddTempVariable(var, zone);
  4360. break;
  4361. case 3:
  4362. // 3 = Item
  4363. spawn->AddTempVariable(var, item);
  4364. break;
  4365. case 4:
  4366. // 4 = Quest
  4367. spawn->AddTempVariable(var, quest);
  4368. break;
  4369. case 5:
  4370. // 5 = String
  4371. spawn->AddTempVariable(var, val);
  4372. break;
  4373. case 6:
  4374. // 6 = nil (null) so the variable is no longer set, lets remove it from the spawn
  4375. spawn->DeleteTempVariable(var);
  4376. break;
  4377. }
  4378. // And we are done so return out
  4379. return 0;
  4380. }
  4381. int EQ2Emu_lua_GetTempVariable(lua_State* state) {
  4382. if (!lua_interface)
  4383. return 0;
  4384. Spawn* spawn = lua_interface->GetSpawn(state);
  4385. string var = lua_interface->GetStringValue(state, 2);
  4386. if (!spawn) {
  4387. lua_interface->LogError("%s: LUA GetTempVariable command error: spawn is not valid", lua_interface->GetScriptName(state));
  4388. return 0;
  4389. }
  4390. if (var.length() == 0) {
  4391. lua_interface->LogError("%s: LUA GetTempVariable command error: var must be set", lua_interface->GetScriptName(state));
  4392. return 0;
  4393. }
  4394. // This will tell us the type of data this variable contains, uses the same values as the previous function
  4395. int8 type = spawn->GetTempVariableType(var);
  4396. Spawn* spawn2 = 0;
  4397. ZoneServer* zone = 0;
  4398. Item* item = 0;
  4399. Quest* quest = 0;
  4400. // Set the lua function return value based on the type of data the variable contains
  4401. switch (type) {
  4402. case 1:
  4403. spawn2 = spawn->GetTempVariableSpawn(var);
  4404. if (!spawn2)
  4405. return 0;
  4406. lua_interface->SetSpawnValue(state, spawn2);
  4407. break;
  4408. case 2:
  4409. zone = spawn->GetTempVariableZone(var);
  4410. if (!zone)
  4411. return 0;
  4412. lua_interface->SetZoneValue(state, zone);
  4413. break;
  4414. case 3:
  4415. item = spawn->GetTempVariableItem(var);
  4416. if (!item)
  4417. return 0;
  4418. lua_interface->SetItemValue(state, item);
  4419. break;
  4420. case 4:
  4421. quest = spawn->GetTempVariableQuest(var);
  4422. if (!quest)
  4423. return 0;
  4424. lua_interface->SetQuestValue(state, quest);
  4425. break;
  4426. case 5:
  4427. lua_interface->SetStringValue(state, spawn->GetTempVariable(var).c_str());
  4428. break;
  4429. default:
  4430. // Not a valid type then the variable was not set so return out
  4431. return 0;
  4432. }
  4433. // Return value was set so return out
  4434. return 1;
  4435. }
  4436. int EQ2Emu_lua_GiveQuestItem(lua_State* state)
  4437. {
  4438. if (!lua_interface)
  4439. return 0;
  4440. Quest* quest = lua_interface->GetQuest(state);
  4441. Spawn* spawn = lua_interface->GetSpawn(state, 2);
  4442. string description = lua_interface->GetStringValue(state, 3);
  4443. int32 item_id = lua_interface->GetInt32Value(state, 4);
  4444. if (!quest) {
  4445. lua_interface->LogError("%s: LUA GiveQuestItem command error: quest is not valid", lua_interface->GetScriptName(state));
  4446. lua_interface->SetBooleanValue(state, false);
  4447. return 1;
  4448. }
  4449. if (!spawn) {
  4450. lua_interface->LogError("%s: LUA GiveQuestItem command error: spawn is not valid", lua_interface->GetScriptName(state));
  4451. lua_interface->SetBooleanValue(state, false);
  4452. return 1;
  4453. }
  4454. if (!spawn->IsPlayer()) {
  4455. lua_interface->LogError("%s: LUA GiveQuestItem command error: spawn must be a player", lua_interface->GetScriptName(state));
  4456. lua_interface->SetBooleanValue(state, false);
  4457. return 1;
  4458. }
  4459. if (item_id == 0) {
  4460. lua_interface->LogError("%s: LUA GiveQuestItem command error: item_id is not valid", lua_interface->GetScriptName(state));
  4461. lua_interface->SetBooleanValue(state, false);
  4462. return 1;
  4463. }
  4464. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  4465. if (!client) {
  4466. lua_interface->LogError("%s: LUA GiveQuestItem command error: unable to get a valid client from the given spawn", lua_interface->GetScriptName(state));
  4467. lua_interface->SetBooleanValue(state, false);
  4468. return 1;
  4469. }
  4470. Item* item = master_item_list.GetItem(item_id);
  4471. if (!item) {
  4472. lua_interface->LogError("%s: LUA GiveQuestItem command error: unable to get an item from the given id (%u)", lua_interface->GetScriptName(state), item_id);
  4473. lua_interface->SetBooleanValue(state, false);
  4474. return 1;
  4475. }
  4476. PacketStruct* packet = configReader.getStruct("WS_QuestComplete", client->GetVersion());
  4477. if (packet) {
  4478. packet->setDataByName("title", "Quest Reward!");
  4479. packet->setDataByName("name", quest->GetName());
  4480. packet->setDataByName("description", description.c_str());
  4481. packet->setDataByName("level", quest->GetLevel());
  4482. packet->setArrayLengthByName("num_rewards", 1);
  4483. packet->setArrayDataByName("reward_id", item->details.item_id);
  4484. if (client->GetVersion() < 860)
  4485. packet->setItemArrayDataByName("item", item, (Player*)spawn, 0, 0, -1);
  4486. else if (client->GetVersion() < 1193)
  4487. packet->setItemArrayDataByName("item", item, (Player*)spawn);
  4488. else
  4489. packet->setItemArrayDataByName("item", item, (Player*)spawn, 0, 0, 2);
  4490. client->QueuePacket(packet->serialize());
  4491. safe_delete(packet);
  4492. lua_interface->SetBooleanValue(state, client->AddItem(item_id, 1));
  4493. client->Message(CHANNEL_COLOR_YELLOW, "You receive \\aITEM %u 0:%s\\/a.", item->details.item_id, item->name.c_str());
  4494. return 1;
  4495. }
  4496. lua_interface->SetBooleanValue(state, false);
  4497. return 1;
  4498. }
  4499. int EQ2Emu_lua_SetQuestRepeatable(lua_State* state) {
  4500. if (!lua_interface)
  4501. return 0;
  4502. Quest* quest = lua_interface->GetQuest(state);
  4503. if (!quest) {
  4504. lua_interface->LogError("%s: LUA SetQuestRepeatable command error: quest is not valid", lua_interface->GetScriptName(state));
  4505. return 0;
  4506. }
  4507. quest->SetRepeatable(true);
  4508. return 0;
  4509. }
  4510. int EQ2Emu_lua_GetArchetypeName(lua_State* state) {
  4511. if (!lua_interface)
  4512. return 0;
  4513. Spawn* spawn = lua_interface->GetSpawn(state);
  4514. if (!spawn) {
  4515. lua_interface->LogError("%s: LUA GetArchetypeName command error: spawn is not valid", lua_interface->GetScriptName(state));
  4516. return 0;
  4517. }
  4518. int8 base_class = classes.GetBaseClass(spawn->GetAdventureClass());
  4519. string ret = classes.GetClassNameCase(base_class);
  4520. if (ret.length() > 0) {
  4521. lua_interface->SetStringValue(state, ret.c_str());
  4522. return 1;
  4523. }
  4524. return 0;
  4525. }
  4526. int EQ2Emu_lua_AddWard(lua_State* state) {
  4527. if (!lua_interface)
  4528. return 0;
  4529. int32 damage = lua_interface->GetInt32Value(state);
  4530. bool keepWard = (lua_interface->GetInt8Value(state, 2) == 1);
  4531. int8 wardType = lua_interface->GetInt8Value(state, 3);
  4532. int8 damageTypes = lua_interface->GetInt8Value(state, 4);
  4533. int32 damageAbsorptionPercent = lua_interface->GetInt32Value(state, 5);
  4534. int32 damageAbsorptionMaxHealthPercent = lua_interface->GetInt32Value(state, 6);
  4535. int32 redirectDamagePercent = lua_interface->GetInt32Value(state, 7);
  4536. int32 maxHitCount = lua_interface->GetInt32Value(state, 8);
  4537. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  4538. bool ward_was_added = false;
  4539. ZoneServer* zone = spell->caster->GetZone();
  4540. spell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  4541. for (int32 i = 0; i < spell->targets.size(); i++) {
  4542. Spawn* target = zone->GetSpawnByID(spell->targets.at(i));
  4543. if (!target)
  4544. continue;
  4545. if (target->IsEntity()) {
  4546. // If the ward is already active remove it
  4547. if (((Entity*)target)->GetWard(spell->spell->GetSpellID()))
  4548. ((Entity*)target)->RemoveWard(spell->spell->GetSpellID());
  4549. // Create new ward info
  4550. WardInfo* ward = new WardInfo;
  4551. ward->Spell = spell;
  4552. ward->BaseDamage = damage;
  4553. ward->DamageLeft = damage;
  4554. ward->AbsorbAllDamage = (damage == 0) ? true : false;
  4555. ward->keepWard = keepWard;
  4556. ward->WardType = wardType;
  4557. if (damageAbsorptionPercent > 100)
  4558. damageAbsorptionPercent = 100;
  4559. ward->DamageAbsorptionPercentage = damageAbsorptionPercent;
  4560. if (damageAbsorptionMaxHealthPercent > 100)
  4561. damageAbsorptionMaxHealthPercent = 100;
  4562. ward->DamageAbsorptionMaxHealthPercent = damageAbsorptionMaxHealthPercent;
  4563. ward->RedirectDamagePercent = redirectDamagePercent;
  4564. ward->LastRedirectDamage = 0;
  4565. ward->LastAbsorbedDamage = 0;
  4566. ward->HitCount = 0;
  4567. spell->num_triggers = maxHitCount;
  4568. spell->had_triggers = true;
  4569. spell->cancel_after_all_triggers = false;
  4570. ward->MaxHitCount = maxHitCount;
  4571. if (wardType == WARD_TYPE_MAGICAL)
  4572. ward->DamageType = damageTypes;
  4573. // Add the ward to the entity
  4574. ((Entity*)target)->AddWard(spell->spell->GetSpellID(), ward);
  4575. ward_was_added = true;
  4576. }
  4577. }
  4578. spell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  4579. if (ward_was_added && spell->caster->IsPlayer()) {
  4580. spell->had_dmg_remaining = true;
  4581. ClientPacketFunctions::SendMaintainedExamineUpdate(spell->caster->GetZone()->GetClientBySpawn(spell->caster), spell->slot_pos, damage, 1);
  4582. }
  4583. return 0;
  4584. }
  4585. int EQ2Emu_lua_AddToWard(lua_State* state) {
  4586. if (!lua_interface)
  4587. return 0;
  4588. int32 amount = lua_interface->GetInt32Value(state);
  4589. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  4590. WardInfo* ward = 0;
  4591. ZoneServer* zone = spell->caster->GetZone();
  4592. spell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  4593. if (zone->GetSpawnByID(spell->targets.at(0))->IsEntity()) {
  4594. Entity* target = (Entity*)zone->GetSpawnByID(spell->targets.at(0));
  4595. ward = target->GetWard(spell->spell->GetSpellID());
  4596. if (ward) {
  4597. ward->DamageLeft += amount;
  4598. if (ward->DamageLeft > ward->BaseDamage)
  4599. ward->DamageLeft = ward->BaseDamage;
  4600. for (int32 i = 0; i < spell->targets.size(); i++) {
  4601. if (Spawn* spawn = zone->GetSpawnByID(spell->targets.at(i)))
  4602. zone->SendHealPacket(ward->Spell->caster, spawn, HEAL_PACKET_TYPE_REGEN_ABSORB, amount, ward->Spell->spell->GetName());
  4603. }
  4604. }
  4605. }
  4606. spell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  4607. if (ward && spell->caster->IsPlayer())
  4608. ClientPacketFunctions::SendMaintainedExamineUpdate(spell->caster->GetZone()->GetClientBySpawn(spell->caster), spell->slot_pos, ward->DamageLeft, 1);
  4609. return 0;
  4610. }
  4611. int EQ2Emu_lua_GetWardAmountLeft(lua_State* state) {
  4612. if (!lua_interface)
  4613. return 0;
  4614. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  4615. if (!spell) {
  4616. lua_interface->LogError("%s: LUA GetWardAmountLeft command error: this command can only be used in a spell script", lua_interface->GetScriptName(state));
  4617. return 0;
  4618. }
  4619. if (spell->caster->GetZone()->GetSpawnByID(spell->targets.at(0))->IsEntity()) {
  4620. Entity* target = (Entity*)spell->caster->GetZone()->GetSpawnByID(spell->targets.at(0));
  4621. WardInfo* ward = target->GetWard(spell->spell->GetSpellID());
  4622. if (ward) {
  4623. lua_interface->SetInt32Value(state, ward->DamageLeft);
  4624. return 1;
  4625. }
  4626. }
  4627. return 0;
  4628. }
  4629. int EQ2Emu_lua_GetWardValue(lua_State* state) {
  4630. if (!lua_interface)
  4631. return 0;
  4632. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  4633. if (!spell) {
  4634. lua_interface->LogError("%s: LUA GetWardValue command error: this command can only be used in a spell script", lua_interface->GetScriptName(state));
  4635. return 0;
  4636. }
  4637. string type = lua_interface->GetStringValue(state, 2);
  4638. if (spell->caster->GetZone()->GetSpawnByID(spell->targets.at(0))->IsEntity()) {
  4639. Entity* target = (Entity*)spell->caster->GetZone()->GetSpawnByID(spell->targets.at(0));
  4640. WardInfo* ward = target->GetWard(spell->spell->GetSpellID());
  4641. if (ward) {
  4642. if (boost::iequals(type, "damageleft"))
  4643. lua_interface->SetInt32Value(state, ward->DamageLeft);
  4644. else if (boost::iequals(type, "basedamage"))
  4645. lua_interface->SetInt32Value(state, ward->BaseDamage);
  4646. else if (boost::iequals(type, "keepward"))
  4647. lua_interface->SetBooleanValue(state, ward->keepWard);
  4648. else if (boost::iequals(type, "wardtype"))
  4649. lua_interface->SetInt32Value(state, ward->WardType);
  4650. else if (boost::iequals(type, "dmgabsorptionpct"))
  4651. lua_interface->SetInt32Value(state, ward->DamageAbsorptionPercentage);
  4652. else if (boost::iequals(type, "dmgabsorptionmaxhealthpct"))
  4653. lua_interface->SetInt32Value(state, ward->DamageAbsorptionMaxHealthPercent);
  4654. else if (boost::iequals(type, "redirectdamagepercent"))
  4655. lua_interface->SetInt32Value(state, ward->RedirectDamagePercent);
  4656. else if (boost::iequals(type, "lastredirectdamage"))
  4657. lua_interface->SetInt32Value(state, ward->LastRedirectDamage);
  4658. else if (boost::iequals(type, "lastabsorbeddamage"))
  4659. lua_interface->SetInt32Value(state, ward->LastAbsorbedDamage);
  4660. else if (boost::iequals(type, "hitcount"))
  4661. lua_interface->SetInt32Value(state, ward->HitCount);
  4662. else if (boost::iequals(type, "maxhitcount"))
  4663. lua_interface->SetInt32Value(state, ward->MaxHitCount);
  4664. else
  4665. lua_interface->LogError("%s: LUA GetWardValue command argument type '%s' did not match any options", lua_interface->GetScriptName(state), type);
  4666. return 1;
  4667. }
  4668. }
  4669. return 0;
  4670. }
  4671. int EQ2Emu_lua_RemoveWard(lua_State* state) {
  4672. if (!lua_interface)
  4673. return 0;
  4674. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  4675. ZoneServer* zone = spell->caster->GetZone();
  4676. Spawn* target = 0;
  4677. spell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  4678. for (int32 i = 0; i < spell->targets.size(); i++) {
  4679. target = zone->GetSpawnByID(spell->targets.at(i));
  4680. if (target && target->IsEntity()) {
  4681. ((Entity*)target)->RemoveWard(spell->spell->GetSpellID());
  4682. }
  4683. }
  4684. spell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  4685. return 0;
  4686. }
  4687. int EQ2Emu_lua_Interrupt(lua_State* state)
  4688. {
  4689. if (!lua_interface)
  4690. return 0;
  4691. Spawn* caster = lua_interface->GetSpawn(state); // Second param in lua_interface->get functions defaults to 1
  4692. Spawn* target = lua_interface->GetSpawn(state, 2);
  4693. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  4694. if (!caster)
  4695. {
  4696. lua_interface->LogError("%s: LUA Interrupt command error: caster is not a valid spawn", lua_interface->GetScriptName(state));
  4697. return 0;
  4698. }
  4699. if (!target)
  4700. {
  4701. lua_interface->LogError("%s: LUA Interrupt command error: target is not a valid spawn", lua_interface->GetScriptName(state));
  4702. return 0;
  4703. }
  4704. if (!spell) {
  4705. lua_interface->LogError("%s: LUA Interrupt command error: spell is not a valid spawn", lua_interface->GetScriptName(state));
  4706. return 0;
  4707. }
  4708. if (!target->IsEntity() && !spell)
  4709. {
  4710. lua_interface->LogError("%s: LUA Interrupt command error: Target is not an entity", lua_interface->GetScriptName(state));
  4711. return 0;
  4712. }
  4713. if (!target && spell) {
  4714. spell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  4715. for (int8 i = 0; i < spell->targets.size(); i++) {
  4716. target = caster->GetZone()->GetSpawnByID(spell->targets.at(i));
  4717. if (!target || !target->IsEntity())
  4718. continue;
  4719. ((Entity*)target)->GetZone()->GetSpellProcess()->Interrupted((Entity*)target, caster, SPELL_ERROR_INTERRUPTED);
  4720. }
  4721. spell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  4722. }
  4723. else
  4724. caster->GetZone()->GetSpellProcess()->Interrupted((Entity*)target, caster, SPELL_ERROR_INTERRUPTED);
  4725. return 0;
  4726. }
  4727. int EQ2Emu_lua_Stealth(lua_State* state) {
  4728. if (!lua_interface)
  4729. return 0;
  4730. int8 type = lua_interface->GetInt8Value(state);
  4731. Spawn* spawn = lua_interface->GetSpawn(state, 2);
  4732. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  4733. if (!spell) {
  4734. lua_interface->LogError("%s: LUA Stealth command error: must be used from spell script", lua_interface->GetScriptName(state));
  4735. return 0;
  4736. }
  4737. ZoneServer* zone = spell->caster->GetZone();
  4738. if (spawn) {
  4739. if (spawn->IsEntity()) {
  4740. if (type == 1) {
  4741. ((Entity*)spawn)->AddStealthSpell(spell);
  4742. if (!(spell->effect_bitmask & EFFECT_FLAG_STEALTH))
  4743. spell->effect_bitmask += EFFECT_FLAG_STEALTH;
  4744. }
  4745. else if (type == 2) {
  4746. ((Entity*)spawn)->AddInvisSpell(spell);
  4747. if (!(spell->effect_bitmask & EFFECT_FLAG_INVIS))
  4748. spell->effect_bitmask += EFFECT_FLAG_INVIS;
  4749. }
  4750. return 0;
  4751. }
  4752. else {
  4753. lua_interface->LogError("%s: LUA Stealth command error: target override is not Entity", lua_interface->GetScriptName(state));
  4754. return 0;
  4755. }
  4756. }
  4757. else {
  4758. spell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  4759. for (int32 i = 0; i < spell->targets.size(); i++) {
  4760. spawn = zone->GetSpawnByID(spell->targets.at(i));
  4761. if (!spawn || !spawn->IsEntity())
  4762. continue;
  4763. if (type == 1) {
  4764. ((Entity*)spawn)->AddStealthSpell(spell);
  4765. if (!(spell->effect_bitmask & EFFECT_FLAG_STEALTH))
  4766. spell->effect_bitmask += EFFECT_FLAG_STEALTH;
  4767. }
  4768. else if (type == 2) {
  4769. ((Entity*)spawn)->AddInvisSpell(spell);
  4770. if (!(spell->effect_bitmask & EFFECT_FLAG_INVIS))
  4771. spell->effect_bitmask += EFFECT_FLAG_INVIS;
  4772. }
  4773. else {
  4774. lua_interface->LogError("%s: LUA Stealth command error: invalid stealth type given", lua_interface->GetScriptName(state));
  4775. break;
  4776. }
  4777. }
  4778. spell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  4779. }
  4780. return 0;
  4781. }
  4782. int EQ2Emu_lua_IsStealthed(lua_State* state) {
  4783. if (!lua_interface)
  4784. return 0;
  4785. Spawn* spawn = lua_interface->GetSpawn(state);
  4786. if (!spawn) {
  4787. lua_interface->LogError("%s: LUA IsStealthed command error: spawn is not valid", lua_interface->GetScriptName(state));
  4788. return 0;
  4789. }
  4790. if (spawn->IsEntity()) {
  4791. lua_interface->SetBooleanValue(state, ((Entity*)spawn)->IsStealthed());
  4792. return 1;
  4793. }
  4794. else
  4795. lua_interface->LogError("%s: LUA IsStealthed command error: spawn is not entity", lua_interface->GetScriptName(state));
  4796. return 0;
  4797. }
  4798. int EQ2Emu_lua_IsInvis(lua_State* state) {
  4799. if (!lua_interface)
  4800. return 0;
  4801. Spawn* spawn = lua_interface->GetSpawn(state);
  4802. if (!spawn) {
  4803. lua_interface->LogError("%s: LUA IsInvis command error: spawn is not valid", lua_interface->GetScriptName(state));
  4804. return 0;
  4805. }
  4806. if (spawn->IsEntity()) {
  4807. lua_interface->SetBooleanValue(state, ((Entity*)spawn)->IsInvis());
  4808. return 1;
  4809. }
  4810. else
  4811. lua_interface->LogError("%s: LUA IsInvis command error: spawn is not entity", lua_interface->GetScriptName(state));
  4812. return 0;
  4813. }
  4814. int EQ2Emu_lua_HasItemEquipped(lua_State* state) {
  4815. if (!lua_interface)
  4816. return 0;
  4817. Spawn* player = lua_interface->GetSpawn(state);
  4818. int32 item_id = lua_interface->GetInt32Value(state, 2);
  4819. if (!player->IsPlayer()) {
  4820. lua_interface->LogError("%s: LUA HasItemEquipped command error: spawn is not player", lua_interface->GetScriptName(state));
  4821. return 0;
  4822. }
  4823. lua_interface->SetBooleanValue(state, ((Player*)player)->GetEquipmentList()->HasItem(item_id));
  4824. return 1;
  4825. }
  4826. int EQ2Emu_lua_GetEquippedItemBySlot(lua_State* state) {
  4827. if (!lua_interface)
  4828. return 0;
  4829. Spawn* player = lua_interface->GetSpawn(state);
  4830. int8 slot = lua_interface->GetInt8Value(state, 2);
  4831. if (!player) {
  4832. lua_interface->LogError("%s: LUA GetEquippedItemBySlot command error: spawn is not valid", lua_interface->GetScriptName(state));
  4833. return 0;
  4834. }
  4835. if (!player->IsPlayer()) {
  4836. lua_interface->LogError("%s: LUA GetEquippedItemBySlot command error: spawn is not player", lua_interface->GetScriptName(state));
  4837. return 0;
  4838. }
  4839. Item* item = ((Player*)player)->GetEquipmentList()->GetItem(slot);
  4840. if (!item) {
  4841. lua_interface->LogError("%s: LUA GetEquippedItemBySlot command error: item was not found in slot", lua_interface->GetScriptName(state));
  4842. return 0;
  4843. }
  4844. lua_interface->SetItemValue(state, item);
  4845. return 1;
  4846. }
  4847. int EQ2Emu_lua_GetEquippedItemByID(lua_State* state) {
  4848. if (!lua_interface)
  4849. return 0;
  4850. Spawn* player = lua_interface->GetSpawn(state);
  4851. int32 id = lua_interface->GetInt32Value(state, 2);
  4852. if (!player) {
  4853. lua_interface->LogError("%s: LUA GetEquippedItemByID command error: spawn is not valid", lua_interface->GetScriptName(state));
  4854. return 0;
  4855. }
  4856. if (!player->IsPlayer()) {
  4857. lua_interface->LogError("%s: LUA GetEquippedItemByID command error: spawn is not player", lua_interface->GetScriptName(state));
  4858. return 0;
  4859. }
  4860. Item* item = ((Player*)player)->GetEquipmentList()->GetItemFromItemID(id);
  4861. if (!item) {
  4862. lua_interface->LogError("%s: LUA GetEquippedItemByID command error: equipped item with used id not found", lua_interface->GetScriptName(state));
  4863. return 0;
  4864. }
  4865. lua_interface->SetItemValue(state, item);
  4866. return 1;
  4867. }
  4868. int EQ2Emu_lua_GetItemByID(lua_State* state) {
  4869. if (!lua_interface)
  4870. return 0;
  4871. Spawn* player = lua_interface->GetSpawn(state);
  4872. int32 id = lua_interface->GetInt32Value(state, 2);
  4873. int8 count = lua_interface->GetInt8Value(state, 3);
  4874. bool include_bank = lua_interface->GetInt8Value(state, 4);
  4875. if (!player) {
  4876. lua_interface->LogError("%s: LUA GetItemByID command error: spawn is not valid", lua_interface->GetScriptName(state));
  4877. return 0;
  4878. }
  4879. if (!player->IsPlayer()) {
  4880. lua_interface->LogError("%s: LUA GetItemByID command error: spawn is not player", lua_interface->GetScriptName(state));
  4881. return 0;
  4882. }
  4883. if (!count)
  4884. count = 1;
  4885. Item* item = ((Player*)player)->GetPlayerItemList()->GetItemFromID(id, count, include_bank);
  4886. if (!item) {
  4887. lua_interface->LogError("%s: LUA GetItemByID command error: item with used id not found", lua_interface->GetScriptName(state));
  4888. return 0;
  4889. }
  4890. lua_interface->SetItemValue(state, item);
  4891. return 1;
  4892. }
  4893. int EQ2Emu_lua_PlayAnimation(lua_State* state) {
  4894. if (!lua_interface)
  4895. return 0;
  4896. Spawn* spawn = lua_interface->GetSpawn(state);
  4897. int32 anim = lua_interface->GetInt32Value(state, 2);
  4898. Spawn* spawn2 = lua_interface->GetSpawn(state, 3);
  4899. int8 type = lua_interface->GetInt8Value(state, 4);
  4900. if (!spawn) {
  4901. lua_interface->LogError("%s: LUA PlayAnimation command error: spawn is not valid", lua_interface->GetScriptName(state));
  4902. return 0;
  4903. }
  4904. if (spawn2) {
  4905. if (spawn2->IsPlayer()) {
  4906. if (type != 1 && type != 2)
  4907. spawn->GetZone()->PlayAnimation(spawn, anim, spawn2);
  4908. else
  4909. spawn->GetZone()->PlayAnimation(spawn, anim, spawn2, type);
  4910. return 0;
  4911. }
  4912. else {
  4913. lua_interface->LogError("%s: LUA PlayAnimation command error: second spawn not a player", lua_interface->GetScriptName(state));
  4914. return 0;
  4915. }
  4916. }
  4917. else
  4918. spawn->GetZone()->PlayAnimation(spawn, anim);
  4919. return 0;
  4920. }
  4921. int EQ2Emu_lua_IsPet(lua_State* state) {
  4922. if (!lua_interface)
  4923. return 0;
  4924. Spawn* spawn = lua_interface->GetSpawn(state);
  4925. if (!spawn) {
  4926. lua_interface->LogError("%s: LUA IsPet command error: spawn is not valid", lua_interface->GetScriptName(state));
  4927. return 0;
  4928. }
  4929. lua_interface->SetBooleanValue(state, spawn->IsPet());
  4930. return 1;
  4931. }
  4932. int EQ2Emu_lua_GetOwner(lua_State* state) {
  4933. if (!lua_interface)
  4934. return 0;
  4935. Spawn* spawn = lua_interface->GetSpawn(state);
  4936. if (!spawn) {
  4937. lua_interface->LogError("%s: LUA GetOwner command error: spawn is not valid", lua_interface->GetScriptName(state));
  4938. return 0;
  4939. }
  4940. if (!spawn->IsNPC()) {
  4941. lua_interface->LogError("%s: LUA GetOwner command error: spawn is not a NPC", lua_interface->GetScriptName(state));
  4942. return 0;
  4943. }
  4944. if (((NPC*)spawn)->GetOwner()) {
  4945. lua_interface->SetSpawnValue(state, ((NPC*)spawn)->GetOwner());
  4946. return 1;
  4947. }
  4948. return 0;
  4949. }
  4950. int EQ2Emu_lua_SetTarget(lua_State* state) {
  4951. if (!lua_interface)
  4952. return 0;
  4953. Spawn* spawn = lua_interface->GetSpawn(state);
  4954. Spawn* target = lua_interface->GetSpawn(state, 2);
  4955. if (!spawn) {
  4956. lua_interface->LogError("%s: LUA SetTarget command error: spawn is not valid", lua_interface->GetScriptName(state));
  4957. return 0;
  4958. }
  4959. if (!spawn) {
  4960. lua_interface->LogError("%s: LUA SetTarget command error: target is not valid", lua_interface->GetScriptName(state));
  4961. return 0;
  4962. }
  4963. spawn->SetTarget(target);
  4964. return 0;
  4965. }
  4966. int EQ2Emu_lua_SetInCombat(lua_State* state) {
  4967. if (!lua_interface)
  4968. return 0;
  4969. Spawn* spawn = lua_interface->GetSpawn(state);
  4970. bool val = lua_interface->GetBooleanValue(state, 2);
  4971. if (!spawn) {
  4972. lua_interface->LogError("%s: LUA SetInCombat command error: spawn is not valid", lua_interface->GetScriptName(state));
  4973. return 0;
  4974. }
  4975. if (!spawn->IsEntity()) {
  4976. lua_interface->LogError("%s: LUA SetInCombat command error: spawn is not an entity", lua_interface->GetScriptName(state));
  4977. return 0;
  4978. }
  4979. ((Entity*)spawn)->InCombat(val);
  4980. if (val) {
  4981. spawn->ClearRunningLocations();
  4982. spawn->CalculateRunningLocation(true);
  4983. }
  4984. return 0;
  4985. }
  4986. int EQ2Emu_lua_CompareSpawns(lua_State* state) {
  4987. if (!lua_interface)
  4988. return 0;
  4989. Spawn* spawn1 = lua_interface->GetSpawn(state);
  4990. Spawn* spawn2 = lua_interface->GetSpawn(state, 2);
  4991. if (!spawn1) {
  4992. lua_interface->LogError("%s: LUA CompareSpawns command error: first spawn is not valid", lua_interface->GetScriptName(state));
  4993. return 0;
  4994. }
  4995. if (!spawn2) {
  4996. lua_interface->LogError("%s: LUA CompareSpawns command error: second spawn is not valid", lua_interface->GetScriptName(state));
  4997. return 0;
  4998. }
  4999. lua_interface->SetBooleanValue(state, (spawn1 == spawn2));
  5000. return 1;
  5001. }
  5002. int EQ2Emu_lua_Runback(lua_State* state) {
  5003. if (!lua_interface)
  5004. return 0;
  5005. Spawn* spawn = lua_interface->GetSpawn(state);
  5006. if (!spawn) {
  5007. lua_interface->LogError("%s: LUA Runback command error: spawn is not valid", lua_interface->GetScriptName(state));
  5008. return 0;
  5009. }
  5010. if (!spawn->IsNPC()) {
  5011. lua_interface->LogError("%s: LUA Runback command error: spawn is not an NPC", lua_interface->GetScriptName(state));
  5012. return 0;
  5013. }
  5014. ((NPC*)spawn)->Runback();
  5015. return 0;
  5016. }
  5017. int EQ2Emu_lua_GetRunbackDistance(lua_State* state) {
  5018. if (!lua_interface)
  5019. return 0;
  5020. Spawn* spawn = lua_interface->GetSpawn(state);
  5021. if (!spawn) {
  5022. lua_interface->LogError("%s: LUA GetRunbackDistance command error: spawn is not valid", lua_interface->GetScriptName(state));
  5023. return 0;
  5024. }
  5025. if (!spawn->IsNPC()) {
  5026. lua_interface->LogError("%s: LUA GetRunbackDistance command error: spawn is not an NPC", lua_interface->GetScriptName(state));
  5027. return 0;
  5028. }
  5029. lua_interface->SetFloatValue(state, ((NPC*)spawn)->GetRunbackDistance());
  5030. return 1;
  5031. }
  5032. int EQ2Emu_lua_IsCasting(lua_State* state) {
  5033. if (!lua_interface)
  5034. return 0;
  5035. Spawn* spawn = lua_interface->GetSpawn(state);
  5036. if (!spawn) {
  5037. lua_interface->LogError("%s: LUA IsCasting command error: spawn is not valid", lua_interface->GetScriptName(state));
  5038. return 0;
  5039. }
  5040. if (!spawn->IsEntity()) {
  5041. lua_interface->LogError("%s: LUA IsCasting command error: spawn is not an entity", lua_interface->GetScriptName(state));
  5042. return 0;
  5043. }
  5044. lua_interface->SetBooleanValue(state, ((Entity*)spawn)->IsCasting());
  5045. return 1;
  5046. }
  5047. int EQ2Emu_lua_IsMezzed(lua_State* state) {
  5048. if (!lua_interface)
  5049. return 0;
  5050. Spawn* spawn = lua_interface->GetSpawn(state);
  5051. if (!spawn) {
  5052. lua_interface->LogError("%s: LUA IsMezzed command error: spawn is not valid", lua_interface->GetScriptName(state));
  5053. return 0;
  5054. }
  5055. if (!spawn->IsEntity()) {
  5056. lua_interface->LogError("%s: LUA IsMezzed command error: spawn is not an entity", lua_interface->GetScriptName(state));
  5057. return 0;
  5058. }
  5059. lua_interface->SetBooleanValue(state, ((Entity*)spawn)->IsMezzed());
  5060. return 1;
  5061. }
  5062. int EQ2Emu_lua_IsStunned(lua_State* state) {
  5063. if (!lua_interface)
  5064. return 0;
  5065. Spawn* spawn = lua_interface->GetSpawn(state);
  5066. if (!spawn) {
  5067. lua_interface->LogError("%s: LUA IsStunned command error: spawn is not valid", lua_interface->GetScriptName(state));
  5068. return 0;
  5069. }
  5070. if (!spawn->IsEntity()) {
  5071. lua_interface->LogError("%s: LUA IsStunned command error: spawn is not an entity", lua_interface->GetScriptName(state));
  5072. return 0;
  5073. }
  5074. lua_interface->SetBooleanValue(state, ((Entity*)spawn)->IsStunned());
  5075. return 1;
  5076. }
  5077. int EQ2Emu_lua_IsMezzedOrStunned(lua_State* state) {
  5078. if (!lua_interface)
  5079. return 0;
  5080. Spawn* spawn = lua_interface->GetSpawn(state);
  5081. if (!spawn) {
  5082. lua_interface->LogError("%s: LUA IsMezzedOrStunned command error: spawn is not valid", lua_interface->GetScriptName(state));
  5083. return 0;
  5084. }
  5085. if (!spawn->IsEntity()) {
  5086. lua_interface->LogError("%s: LUA IsMezzedOrStunned command error: spawn is not an entity", lua_interface->GetScriptName(state));
  5087. return 0;
  5088. }
  5089. lua_interface->SetBooleanValue(state, ((Entity*)spawn)->IsMezzedOrStunned());
  5090. return 1;
  5091. }
  5092. int EQ2Emu_lua_ProcessSpell(lua_State* state) {
  5093. if (!lua_interface)
  5094. return 0;
  5095. Spawn* spawn = lua_interface->GetSpawn(state);
  5096. Spawn* target = lua_interface->GetSpawn(state, 2);
  5097. float distance = lua_interface->GetFloatValue(state, 3);
  5098. if (!spawn) {
  5099. lua_interface->LogError("%s: LUA ProcessSpell command error: spawn is not valid", lua_interface->GetScriptName(state));
  5100. return 0;
  5101. }
  5102. if (!target) {
  5103. lua_interface->LogError("%s: LUA ProcessSpell command error: spawn is not an entity", lua_interface->GetScriptName(state));
  5104. return 0;
  5105. }
  5106. if (!spawn->IsNPC()) {
  5107. lua_interface->LogError("%s: LUA ProcessSpell command error: spawn is not an NPC", lua_interface->GetScriptName(state));
  5108. return 0;
  5109. }
  5110. if (!target->IsEntity()) {
  5111. lua_interface->LogError("%s: LUA ProcessSpell command error: target is not an entity", lua_interface->GetScriptName(state));
  5112. return 0;
  5113. }
  5114. lua_interface->SetBooleanValue(state, ((NPC*)spawn)->Brain()->ProcessSpell(((Entity*)target), distance));
  5115. return 1;
  5116. }
  5117. int EQ2Emu_lua_ProcessMelee(lua_State* state) {
  5118. if (!lua_interface)
  5119. return 0;
  5120. Spawn* spawn = lua_interface->GetSpawn(state);
  5121. Spawn* target = lua_interface->GetSpawn(state, 2);
  5122. float distance = lua_interface->GetFloatValue(state, 3);
  5123. if (!spawn) {
  5124. lua_interface->LogError("%s: LUA ProcessMelee command error: spawn is not valid", lua_interface->GetScriptName(state));
  5125. return 0;
  5126. }
  5127. if (!target) {
  5128. lua_interface->LogError("%s: LUA ProcessMelee command error: target is not valid", lua_interface->GetScriptName(state));
  5129. return 0;
  5130. }
  5131. if (!spawn->IsNPC()) {
  5132. lua_interface->LogError("%s: LUA ProcessMelee command error: spawn is not an NPC", lua_interface->GetScriptName(state));
  5133. return 0;
  5134. }
  5135. if (!target->IsEntity()) {
  5136. lua_interface->LogError("%s: LUA ProcessMelee command error: target is not an entity", lua_interface->GetScriptName(state));
  5137. return 0;
  5138. }
  5139. ((NPC*)spawn)->Brain()->ProcessMelee(((Entity*)target), distance);
  5140. return 0;
  5141. }
  5142. int EQ2Emu_lua_HasRecovered(lua_State* state) {
  5143. if (!lua_interface)
  5144. return 0;
  5145. Spawn* spawn = lua_interface->GetSpawn(state);
  5146. if (!spawn) {
  5147. lua_interface->LogError("%s: LUA HasRecovered command error: spawn is not valid", lua_interface->GetScriptName(state));
  5148. return 0;
  5149. }
  5150. if (!spawn->IsNPC()) {
  5151. lua_interface->LogError("%s: LUA HasRecovered command error: spawn is not an NPC", lua_interface->GetScriptName(state));
  5152. return 0;
  5153. }
  5154. lua_interface->SetBooleanValue(state, ((NPC*)spawn)->Brain()->HasRecovered());
  5155. return 1;
  5156. }
  5157. int EQ2Emu_lua_GetEncounterSize(lua_State* state) {
  5158. if (!lua_interface)
  5159. return 0;
  5160. Spawn* spawn = lua_interface->GetSpawn(state);
  5161. if (!spawn) {
  5162. lua_interface->LogError("%s: LUA GetEncounterSize command error: spawn is not valid", lua_interface->GetScriptName(state));
  5163. return 0;
  5164. }
  5165. if (!spawn->IsNPC()) {
  5166. lua_interface->LogError("%s: LUA GetEncounterSize command error: spawn is not an NPC", lua_interface->GetScriptName(state));
  5167. return 0;
  5168. }
  5169. lua_interface->SetInt32Value(state, ((NPC*)spawn)->Brain()->GetEncounterSize());
  5170. return 1;
  5171. }
  5172. int EQ2Emu_lua_GetMostHated(lua_State* state) {
  5173. if (!lua_interface)
  5174. return 0;
  5175. Spawn* spawn = lua_interface->GetSpawn(state);
  5176. if (!spawn) {
  5177. lua_interface->LogError("%s: LUA GetMostHated command error: spawn is not valid", lua_interface->GetScriptName(state));
  5178. return 0;
  5179. }
  5180. if (!spawn->IsNPC()) {
  5181. lua_interface->LogError("%s: LUA GetMostHated command error: spawn is not an NPC", lua_interface->GetScriptName(state));
  5182. return 0;
  5183. }
  5184. Entity* hated = ((NPC*)spawn)->Brain()->GetMostHated();
  5185. if (hated) {
  5186. lua_interface->SetSpawnValue(state, hated);
  5187. return 1;
  5188. }
  5189. return 0;
  5190. }
  5191. int EQ2Emu_lua_ClearHate(lua_State* state) {
  5192. if (!lua_interface)
  5193. return 0;
  5194. Spawn* spawn = lua_interface->GetSpawn(state);
  5195. Spawn* hated = lua_interface->GetSpawn(state, 2);
  5196. if (!spawn) {
  5197. lua_interface->LogError("%s: LUA ClearHate command error: spawn is not valid", lua_interface->GetScriptName(state));
  5198. return 0;
  5199. }
  5200. if (!spawn->IsNPC()) {
  5201. lua_interface->LogError("%s: LUA ClearHate command error: spawn is not NPC", lua_interface->GetScriptName(state));
  5202. return 0;
  5203. }
  5204. if (!hated) {
  5205. ((NPC*)spawn)->Brain()->ClearHate();
  5206. return 0;
  5207. }
  5208. else
  5209. {
  5210. if (!hated->IsEntity()) {
  5211. lua_interface->LogError("%s: LUA ClearHate command error: second param is not entity", lua_interface->GetScriptName(state));
  5212. return 0;
  5213. }
  5214. ((NPC*)spawn)->Brain()->ClearHate(((Entity*)hated));
  5215. return 0;
  5216. }
  5217. return 0;
  5218. }
  5219. int EQ2Emu_lua_ClearEncounter(lua_State* state) {
  5220. if (!lua_interface)
  5221. return 0;
  5222. Spawn* spawn = lua_interface->GetSpawn(state);
  5223. if (!spawn) {
  5224. lua_interface->LogError("%s: LUA ClearEncounter command error: spawn is not valid", lua_interface->GetScriptName(state));
  5225. return 0;
  5226. }
  5227. if (!spawn->IsNPC()) {
  5228. lua_interface->LogError("%s: LUA ClearEncounter command error: spawn is not an NPC", lua_interface->GetScriptName(state));
  5229. return 0;
  5230. }
  5231. ((NPC*)spawn)->Brain()->ClearEncounter();
  5232. return 0;
  5233. }
  5234. int EQ2Emu_lua_GetEncounter(lua_State* state) {
  5235. if (!lua_interface)
  5236. return 0;
  5237. Spawn* spawn = lua_interface->GetSpawn(state);
  5238. if (!spawn) {
  5239. lua_interface->LogError("%s: LUA GetEncounter command error: Spawn is not valid", lua_interface->GetScriptName(state));
  5240. return 0;
  5241. }
  5242. if (!spawn->IsNPC()) {
  5243. lua_interface->LogError("%s: LUA GetEncounter command error: spawn is not a NPC", lua_interface->GetScriptName(state));
  5244. return 0;
  5245. }
  5246. // Temp list to store hate list
  5247. vector<int32>* encounterList = ((NPC*)spawn)->Brain()->GetEncounter();
  5248. if (encounterList->size() == 0) {
  5249. safe_delete(encounterList);
  5250. return 0;
  5251. }
  5252. lua_createtable(state, encounterList->size(), 0);
  5253. int newTable = lua_gettop(state);
  5254. for (int32 i = 0; i < encounterList->size(); i++) {
  5255. Spawn* temp = spawn->GetZone()->GetSpawnByID(encounterList->at(i));
  5256. if (temp)
  5257. lua_interface->SetSpawnValue(state, temp);
  5258. lua_rawseti(state, newTable, i + 1);
  5259. }
  5260. safe_delete(encounterList);
  5261. return 1;
  5262. }
  5263. int EQ2Emu_lua_GetHateList(lua_State* state) {
  5264. if (!lua_interface)
  5265. return 0;
  5266. Spawn* spawn = lua_interface->GetSpawn(state);
  5267. if (!spawn) {
  5268. lua_interface->LogError("%s: LUA GetHateList command error: spawn is not valid", lua_interface->GetScriptName(state));
  5269. return 0;
  5270. }
  5271. if (!spawn->IsNPC()) {
  5272. lua_interface->LogError("%s: LUA GetHateList command error: spawn is not a NPC", lua_interface->GetScriptName(state));
  5273. return 0;
  5274. }
  5275. // Temp list to store hate list
  5276. vector<Entity*>* hateList = ((NPC*)spawn)->Brain()->GetHateList();
  5277. if (hateList->size() == 0) {
  5278. safe_delete(hateList);
  5279. return 0;
  5280. }
  5281. lua_createtable(state, hateList->size(), 0);
  5282. int newTable = lua_gettop(state);
  5283. for (int32 i = 0; i < hateList->size(); i++) {
  5284. lua_interface->SetSpawnValue(state, hateList->at(i));
  5285. lua_rawseti(state, newTable, i + 1);
  5286. }
  5287. safe_delete(hateList);
  5288. return 1;
  5289. }
  5290. int EQ2Emu_lua_HasGroup(lua_State* state) {
  5291. if (!lua_interface)
  5292. return 0;
  5293. Spawn* spawn = lua_interface->GetSpawn(state);
  5294. if (!spawn) {
  5295. lua_interface->LogError("%s: LUA HasGroup command error: spawn is not valid", lua_interface->GetScriptName(state));
  5296. return 0;
  5297. }
  5298. if (spawn->IsPlayer()) {
  5299. if (((Player*)spawn)->GetGroupMemberInfo() && world.GetGroupManager()->GetGroupSize(((Player*)spawn)->GetGroupMemberInfo()->group_id) > 1)
  5300. lua_interface->SetBooleanValue(state, true);
  5301. else
  5302. lua_interface->SetBooleanValue(state, false);
  5303. return 1;
  5304. }
  5305. else {
  5306. lua_interface->SetBooleanValue(state, spawn->HasSpawnGroup());
  5307. return 1;
  5308. }
  5309. }
  5310. int EQ2Emu_lua_SetCompleteFlag(lua_State* state) {
  5311. if (!lua_interface)
  5312. return 0;
  5313. Quest* quest = lua_interface->GetQuest(state);
  5314. if (!quest) {
  5315. lua_interface->LogError("%s: LUA SetCompleteFlag command error: quest is not valid", lua_interface->GetScriptName(state));
  5316. return 0;
  5317. }
  5318. quest->SetCompletedFlag(true);
  5319. return 0;
  5320. }
  5321. int EQ2Emu_lua_HasSpellEffect(lua_State* state) {
  5322. if (!lua_interface)
  5323. return 0;
  5324. Spawn* spawn = lua_interface->GetSpawn(state);
  5325. int32 spellID = lua_interface->GetInt32Value(state, 2);
  5326. int8 tier = lua_interface->GetInt8Value(state, 3);
  5327. if (!spawn) {
  5328. lua_interface->LogError("%s: LUA HasSpellEffect command error: spawn is not valid", lua_interface->GetScriptName(state));
  5329. return 0;
  5330. }
  5331. if (!spawn->IsEntity()) {
  5332. lua_interface->LogError("%s: LUA HasSpellEffect command error: spawn is not an entity", lua_interface->GetScriptName(state));
  5333. return 0;
  5334. }
  5335. if (spellID == 0) {
  5336. lua_interface->LogError("%s: LUA HasSpellEffect command error: spell id is not valid", lua_interface->GetScriptName(state));
  5337. return 0;
  5338. }
  5339. SpellEffects* effect = ((Entity*)spawn)->GetSpellEffect(spellID);
  5340. if (effect) {
  5341. if (tier > 0) {
  5342. // If a tier was passed chec to see if it is the same as the effect
  5343. if (tier == effect->tier)
  5344. lua_interface->SetBooleanValue(state, true);
  5345. else
  5346. lua_interface->SetBooleanValue(state, false);
  5347. return 1;
  5348. }
  5349. else {
  5350. // Have an effect but no tier was passed so return true
  5351. lua_interface->SetBooleanValue(state, true);
  5352. }
  5353. return 1;
  5354. }
  5355. // no effect so return false
  5356. lua_interface->SetBooleanValue(state, false);
  5357. return 1;
  5358. }
  5359. int EQ2Emu_lua_AddSpawnIDAccess(lua_State* state) {
  5360. if (!lua_interface)
  5361. return 0;
  5362. Spawn* spawn = lua_interface->GetSpawn(state);
  5363. int32 id = lua_interface->GetInt32Value(state, 2);
  5364. ZoneServer* zone = lua_interface->GetZone(state, 3);
  5365. Spawn* spawn2 = 0;
  5366. vector<Spawn*> list;
  5367. if (!spawn) {
  5368. lua_interface->LogError("%s: LUA AddSpawnIDAccess command error: spawn is not valid", lua_interface->GetScriptName(state));
  5369. return 0;
  5370. }
  5371. //If zone not provided, use spawn's zone
  5372. if (!zone)
  5373. zone = spawn->GetZone();
  5374. list = zone->GetSpawnsByID(id);
  5375. if (list.size() == 0) {
  5376. lua_interface->LogError("%s: LUA AddSpawnIDAccess command error: GetSpawnsByID returned no spawns", lua_interface->GetScriptName(state));
  5377. return 0;
  5378. }
  5379. vector<Spawn*>::iterator itr = list.begin();
  5380. for (int8 i = 0; i < list.size(); i++) {
  5381. spawn2 = itr[i];
  5382. if (spawn2)
  5383. spawn2->AddAllowAccessSpawn(spawn);
  5384. }
  5385. return 0;
  5386. }
  5387. int EQ2Emu_lua_RemoveSpawnIDAccess(lua_State* state) {
  5388. if (!lua_interface)
  5389. return 0;
  5390. Spawn* spawn = lua_interface->GetSpawn(state);
  5391. int32 id = lua_interface->GetInt32Value(state, 2);
  5392. ZoneServer* zone = lua_interface->GetZone(state, 3);
  5393. Spawn* spawn2 = 0;
  5394. if (!spawn) {
  5395. lua_interface->LogError("%s: LUA RemoveSpawnIDAccess command error: spawn is not valid", lua_interface->GetScriptName(state));
  5396. return 0;
  5397. }
  5398. //If zone not provided, use spawn's zone
  5399. if (!zone)
  5400. zone = spawn->GetZone();
  5401. vector<Spawn*> list = zone->GetSpawnsByID(id);
  5402. vector<Spawn*>::iterator itr = list.begin();
  5403. if (list.size() == 0) {
  5404. lua_interface->LogError("%s: LUA RemoveSpawnIDAccess command error: GetSpawnsByID returned no spawns", lua_interface->GetScriptName(state));
  5405. return 0;
  5406. }
  5407. for (int8 i = 0; i < list.size(); i++) {
  5408. spawn2 = itr[i];
  5409. if (spawn2)
  5410. spawn2->RemoveSpawnAccess(spawn);
  5411. }
  5412. return 0;
  5413. }
  5414. int EQ2Emu_lua_SetQuestYellow(lua_State* state) {
  5415. if (!lua_interface)
  5416. return 0;
  5417. Quest* quest = lua_interface->GetQuest(state);
  5418. if (!quest) {
  5419. lua_interface->LogError("%s: LUA SetQuestYellow command error: quest is not valid", lua_interface->GetScriptName(state));
  5420. return 0;
  5421. }
  5422. quest->SetYellowName(true);
  5423. return 0;
  5424. }
  5425. int EQ2Emu_lua_CanReceiveQuest(lua_State* state) {
  5426. if (!lua_interface)
  5427. return 0;
  5428. Spawn* spawn = lua_interface->GetSpawn(state);
  5429. int32 quest_id = lua_interface->GetInt32Value(state, 2);
  5430. if (!spawn) {
  5431. lua_interface->LogError("%s: LUA CanReceieveQuest command error: spawn is not valid", lua_interface->GetScriptName(state));
  5432. return 0;
  5433. }
  5434. if (!spawn->IsPlayer()) {
  5435. lua_interface->LogError("%s: LUA CanReceieveQuest command error: spawn is not player", lua_interface->GetScriptName(state));
  5436. return 0;
  5437. }
  5438. lua_interface->SetBooleanValue(state, ((Player*)spawn)->CanReceiveQuest(quest_id));
  5439. return 1;
  5440. }
  5441. int EQ2Emu_lua_SetSuccessTimer(lua_State* state) {
  5442. if (!lua_interface)
  5443. return 0;
  5444. Spawn* spawn = lua_interface->GetSpawn(state);
  5445. if (!spawn) {
  5446. lua_interface->LogError("%s: LUA SetSuccessTimer command error: spawn is not valid", lua_interface->GetScriptName(state));
  5447. return 0;
  5448. }
  5449. if (!spawn->IsPlayer()) {
  5450. lua_interface->LogError("%s: LUA SetSuccessTimer command error: spawn is not a player", lua_interface->GetScriptName(state));
  5451. return 0;
  5452. }
  5453. ZoneServer* zone = spawn->GetZone();
  5454. if (!zone) {
  5455. lua_interface->LogError("%s: LUA SetSuccessTimer command error: unable to get a valid zone for the given spawn", lua_interface->GetScriptName(state));
  5456. return 0;
  5457. }
  5458. Instance_Type iType = zone->GetInstanceType();
  5459. if (iType == SOLO_LOCKOUT_INSTANCE ||
  5460. iType == GROUP_LOCKOUT_INSTANCE ||
  5461. iType == RAID_LOCKOUT_INSTANCE ||
  5462. iType == SOLO_PERSIST_INSTANCE ||
  5463. iType == GROUP_PERSIST_INSTANCE ||
  5464. iType == RAID_PERSIST_INSTANCE) {
  5465. InstanceData* data = ((Player*)spawn)->GetCharacterInstances()->FindInstanceByZoneID(spawn->GetZone()->GetZoneID());
  5466. if (data) {
  5467. // Check to see if the timer has already been set, if it has return out.
  5468. if (Timer::GetUnixTimeStamp() <= data->last_success_timestamp + data->success_lockout_time)
  5469. return 0;
  5470. database.UpdateCharacterInstance(((Player*)spawn)->GetCharacterID(), string(spawn->GetZone()->GetZoneName()), spawn->GetZone()->GetInstanceID(), 1, Timer::GetUnixTimeStamp());
  5471. data->last_success_timestamp = Timer::GetUnixTimeStamp();
  5472. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  5473. if (client) {
  5474. string time_msg = "";
  5475. int32 time = data->success_lockout_time;
  5476. int16 hour;
  5477. int8 min;
  5478. int8 sec;
  5479. hour = time / 3600;
  5480. time = time % 3600;
  5481. min = time / 60;
  5482. time = time % 60;
  5483. sec = time;
  5484. if (hour > 0) {
  5485. char temp[10];
  5486. sprintf(temp, " %i", hour);
  5487. time_msg.append(temp);
  5488. time_msg.append(" hour");
  5489. time_msg.append((hour > 1) ? "s" : "");
  5490. }
  5491. if (min > 0) {
  5492. char temp[5];
  5493. sprintf(temp, " %i", min);
  5494. time_msg.append(temp);
  5495. time_msg.append(" minute");
  5496. time_msg.append((min > 1) ? "s" : "");
  5497. }
  5498. // Only add seconds if minutes and hours are 0
  5499. if (hour == 0 && min == 0 && sec > 0) {
  5500. char temp[5];
  5501. sprintf(temp, " %i", sec);
  5502. time_msg.append(temp);
  5503. time_msg.append(" second");
  5504. time_msg.append((sec > 1) ? "s" : "");
  5505. }
  5506. client->Message(CHANNEL_COLOR_YELLOW, "The success zone reuse timer for %s has been set. You can return in%s.", data->zone_name.c_str(), time_msg.c_str());
  5507. }
  5508. }
  5509. else
  5510. lua_interface->LogError("LUA SetSuccessTimer command error: unable to get instance data for instance %u for player %s", spawn->GetZone()->GetInstanceID(), spawn->GetName());
  5511. }
  5512. else
  5513. lua_interface->LogError("%s: LUA SetSuccessTimer command error: current zone for given spawn is not a lockout or persistent instance", lua_interface->GetScriptName(state));
  5514. return 0;
  5515. }
  5516. int EQ2Emu_lua_SetFailureTimer(lua_State* state) {
  5517. if (!lua_interface)
  5518. return 0;
  5519. Spawn* spawn = lua_interface->GetSpawn(state);
  5520. if (!spawn) {
  5521. lua_interface->LogError("%s: LUA SetFailureTimer command error: spawn is not valid", lua_interface->GetScriptName(state));
  5522. return 0;
  5523. }
  5524. if (!spawn->IsPlayer()) {
  5525. lua_interface->LogError("%s: LUA SetFailureTimer command error: spawn is not a player", lua_interface->GetScriptName(state));
  5526. return 0;
  5527. }
  5528. ZoneServer* zone = spawn->GetZone();
  5529. if (!zone) {
  5530. lua_interface->LogError("%s: LUA SetFailureTimer command error: unable to get a valid zone for the given spawn", lua_interface->GetScriptName(state));
  5531. return 0;
  5532. }
  5533. Instance_Type iType = zone->GetInstanceType();
  5534. if (iType == SOLO_LOCKOUT_INSTANCE ||
  5535. iType == GROUP_LOCKOUT_INSTANCE ||
  5536. iType == RAID_LOCKOUT_INSTANCE ||
  5537. iType == SOLO_PERSIST_INSTANCE ||
  5538. iType == GROUP_PERSIST_INSTANCE ||
  5539. iType == RAID_PERSIST_INSTANCE) {
  5540. InstanceData* data = ((Player*)spawn)->GetCharacterInstances()->FindInstanceByZoneID(spawn->GetZone()->GetZoneID());
  5541. if (data) {
  5542. // Check to see if the timer has already been set, if it has return out.
  5543. if (Timer::GetUnixTimeStamp() <= data->last_failure_timestamp + data->failure_lockout_time)
  5544. return 0;
  5545. database.UpdateCharacterInstance(((Player*)spawn)->GetCharacterID(), string(spawn->GetZone()->GetZoneName()), spawn->GetZone()->GetInstanceID(), 2, Timer::GetUnixTimeStamp());
  5546. data->last_failure_timestamp = Timer::GetUnixTimeStamp();
  5547. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  5548. if (client) {
  5549. string time_msg = "";
  5550. int32 time = data->failure_lockout_time;
  5551. int16 hour;
  5552. int8 min;
  5553. int8 sec;
  5554. hour = time / 3600;
  5555. time = time % 3600;
  5556. min = time / 60;
  5557. time = time % 60;
  5558. sec = time;
  5559. if (hour > 0) {
  5560. char temp[10];
  5561. sprintf(temp, " %i", hour);
  5562. time_msg.append(temp);
  5563. time_msg.append(" hour");
  5564. time_msg.append((hour > 1) ? "s" : "");
  5565. }
  5566. if (min > 0) {
  5567. char temp[5];
  5568. sprintf(temp, " %i", min);
  5569. time_msg.append(temp);
  5570. time_msg.append(" minute");
  5571. time_msg.append((min > 1) ? "s" : "");
  5572. }
  5573. // Only add seconds if minutes and hours are 0
  5574. if (hour == 0 && min == 0 && sec > 0) {
  5575. char temp[5];
  5576. sprintf(temp, " %i", sec);
  5577. time_msg.append(temp);
  5578. time_msg.append(" second");
  5579. time_msg.append((sec > 1) ? "s" : "");
  5580. }
  5581. client->Message(CHANNEL_COLOR_YELLOW, "The failure zone reuse timer for %s has been set. You can return in%s", data->zone_name.c_str(), time_msg.c_str());
  5582. }
  5583. }
  5584. else
  5585. lua_interface->LogError("LUA SetFailureTimer command error: unable to get instance data for instance %u for player %s", spawn->GetZone()->GetInstanceID(), spawn->GetName());
  5586. }
  5587. else
  5588. lua_interface->LogError("%s: LUA SetFailureTimer command error: current zone for given spawn is not a lockout or persistent instance", lua_interface->GetScriptName(state));
  5589. return 0;
  5590. }
  5591. int EQ2Emu_lua_IsGroundSpawn(lua_State* state) {
  5592. if (!lua_interface)
  5593. return 0;
  5594. Spawn* spawn = lua_interface->GetSpawn(state);
  5595. if (!spawn) {
  5596. lua_interface->LogError("%s: LUA IsGroundSpawn command error: not a valid spawn", lua_interface->GetScriptName(state));
  5597. return 0;
  5598. }
  5599. lua_interface->SetBooleanValue(state, spawn->IsGroundSpawn());
  5600. return 1;
  5601. }
  5602. int EQ2Emu_lua_CanHarvest(lua_State* state) {
  5603. if (!lua_interface)
  5604. return 0;
  5605. Spawn* player = lua_interface->GetSpawn(state);
  5606. Spawn* ground = lua_interface->GetSpawn(state, 2);
  5607. if (!player) {
  5608. lua_interface->LogError("%s: LUA CanHarvest command error: not a valid spawn", lua_interface->GetScriptName(state));
  5609. return 0;
  5610. }
  5611. if (!player->IsPlayer()) {
  5612. lua_interface->LogError("%s: LUA CanHarvest command error: spawn is not a player", lua_interface->GetScriptName(state));
  5613. return 0;
  5614. }
  5615. if (!ground) {
  5616. lua_interface->LogError("%s: LUA CanHarvest command error: not a valid spawn", lua_interface->GetScriptName(state));
  5617. return 0;
  5618. }
  5619. if (!ground->IsGroundSpawn()) {
  5620. lua_interface->LogError("%s: LUA CanHarvest command error: spawn is not a ground spawn", lua_interface->GetScriptName(state));
  5621. return 0;
  5622. }
  5623. vector<GroundSpawnEntry*>* groundspawn_entries = player->GetZone()->GetGroundSpawnEntries(((GroundSpawn*)ground)->GetGroundSpawnEntryID());
  5624. if (!groundspawn_entries) {
  5625. lua_interface->LogError("LUA CanHarvest command error: No groundspawn entries assigned to groundspawn id: %u", ((GroundSpawn*)ground)->GetGroundSpawnEntryID());
  5626. return 0;
  5627. }
  5628. Skill* skill = 0;
  5629. string collection_skill = string(((GroundSpawn*)ground)->GetCollectionSkill());
  5630. if (collection_skill == "Collecting")
  5631. skill = ((Player*)player)->GetSkillByName("Gathering");
  5632. else
  5633. skill = ((Player*)player)->GetSkillByName(collection_skill.c_str());
  5634. if (!skill) {
  5635. lua_interface->LogError("LUA CanHarvest command error: Player '%s' lacks the skill: '%s'", player->GetName(), collection_skill.c_str());
  5636. return 0;
  5637. }
  5638. vector<GroundSpawnEntry*>::iterator itr;
  5639. GroundSpawnEntry* entry = 0;
  5640. bool can_harvest = false;
  5641. sint32 min_skill = -1;
  5642. // first, iterate through groundspawn_entries, discard tables player cannot use
  5643. for (itr = groundspawn_entries->begin(); itr != groundspawn_entries->end(); itr++)
  5644. {
  5645. entry = *itr;
  5646. if (min_skill == -1 || entry->min_skill_level < min_skill)
  5647. min_skill = entry->min_skill_level;
  5648. // if player lacks skill, skip table
  5649. if (entry->min_skill_level > skill->current_val)
  5650. continue;
  5651. // if bonus, but player lacks level, skip table
  5652. if (entry->bonus_table && (player->GetLevel() < entry->min_adventure_level))
  5653. continue;
  5654. can_harvest = true;
  5655. break;
  5656. }
  5657. lua_interface->SetBooleanValue(state, can_harvest);
  5658. // If false, send the message to the client
  5659. if (!can_harvest) {
  5660. Client* client = player->GetZone()->GetClientBySpawn(player);
  5661. if (client) {
  5662. string msg = "You do not have enough skill to ";
  5663. if (collection_skill == "Gathering" || collection_skill == "Collecting")
  5664. msg.append("gather");
  5665. else if (collection_skill == "Mining")
  5666. msg.append("mine");
  5667. else if (collection_skill == "Trapping")
  5668. msg.append("trap");
  5669. else if (collection_skill == "Foresting")
  5670. msg.append("forest");
  5671. else if (collection_skill == "Fishing")
  5672. msg.append("catch");
  5673. msg.append(" the %s. It requires %i %s skill, and your skill is %i.");
  5674. client->Message(CHANNEL_HARVESTING_WARNINGS, msg.c_str(), ground->GetName(), min_skill, skill->name.data.c_str(), skill->current_val);
  5675. // You do not have enough skill to catch the band of fish. It requires 20 Fishing skill, and your skill is 12.
  5676. }
  5677. }
  5678. return 1;
  5679. }
  5680. int EQ2Emu_lua_HasRecipeBook(lua_State* state) {
  5681. if (!lua_interface)
  5682. return 0;
  5683. Spawn* player = lua_interface->GetSpawn(state);
  5684. int32 recipe_id = lua_interface->GetInt32Value(state, 2);
  5685. if (!player) {
  5686. lua_interface->LogError("%s: LUA HasRecipeBook command error, Spawn is not valid", lua_interface->GetScriptName(state));
  5687. return 0;
  5688. }
  5689. if (!player->IsPlayer()) {
  5690. lua_interface->LogError("%s: LUA HasRecipeBook command error, Spawn is not a player", lua_interface->GetScriptName(state));
  5691. return 0;
  5692. }
  5693. bool ret = ((Player*)player)->HasRecipeBook(recipe_id);
  5694. lua_interface->SetBooleanValue(state, ret);
  5695. return 1;
  5696. }
  5697. int EQ2Emu_lua_SummonDumbFirePet(lua_State* state) {
  5698. // Check to see if we have a valid lua_interface
  5699. if (!lua_interface)
  5700. return 0;
  5701. // Get the spawn that is getting the pet
  5702. Spawn* spawn = lua_interface->GetSpawn(state);
  5703. Spawn* target = lua_interface->GetSpawn(state, 2);
  5704. // Get the DB ID of the pet
  5705. int32 pet_id = lua_interface->GetInt32Value(state, 3);
  5706. float x = lua_interface->GetFloatValue(state, 4);
  5707. float y = lua_interface->GetFloatValue(state, 5);
  5708. float z = lua_interface->GetFloatValue(state, 6);
  5709. // Get the spell that this command was called from
  5710. LuaSpell* luaspell = lua_interface->GetCurrentSpell(state);
  5711. // Check to make sure the spawn pointer is valid
  5712. if (!spawn) {
  5713. lua_interface->LogError("%s: LUA SummonDumbFirePet command error: Spawn is not valid", lua_interface->GetScriptName(state));
  5714. return 0;
  5715. }
  5716. // Check to make sure the spawn is an entity
  5717. if (!spawn->IsEntity()) {
  5718. lua_interface->LogError("%s: LUA SummonDumbFirePet command error: Spawn is not an entity", lua_interface->GetScriptName(state));
  5719. return 0;
  5720. }
  5721. if (!target) {
  5722. lua_interface->LogError("%s: LUA SummonDumbFirePet command error: target is not valid", lua_interface->GetScriptName(state));
  5723. return 0;
  5724. }
  5725. if (!target->IsEntity()) {
  5726. lua_interface->LogError("%s: LUA SummonDumbFirePet command error: target is not an entity", lua_interface->GetScriptName(state));
  5727. return 0;
  5728. }
  5729. // Check to see if the DB ID for the pet is set
  5730. if (pet_id == 0) {
  5731. lua_interface->LogError("%s: LUA SummonDumbFirePet command error: pet_id can not be set to 0", lua_interface->GetScriptName(state));
  5732. return 0;
  5733. }
  5734. // Check to see if the pointer to the spell is valid
  5735. if (!luaspell) {
  5736. lua_interface->LogError("%s: LUA SummonDumbFirePet command error: valid spell not found, SummonPet can only be used in spell scripts", lua_interface->GetScriptName(state));
  5737. return 0;
  5738. }
  5739. // Get a pointer to a spawn with the given DB ID and check if the pointer is valid
  5740. Spawn* pet = spawn->GetZone()->GetSpawn(pet_id);
  5741. if (!pet) {
  5742. lua_interface->LogError("LUA SummonDumbFirePet command error: Could not find spawn with id of %u.", pet_id);
  5743. return 0;
  5744. }
  5745. // Check to make sure the pet is an npc
  5746. if (!pet->IsNPC()) {
  5747. lua_interface->LogError("LUA SummonDumbFirePet command error: id (%u) did not point to a npc", pet_id);
  5748. return 0;
  5749. }
  5750. if (x == 0)
  5751. x = spawn->GetX();
  5752. if (y == 0)
  5753. y = spawn->GetY();
  5754. if (z == 0)
  5755. z = spawn->GetZ();
  5756. // Spawn the pet at the same location as the owner
  5757. pet->SetX(x);
  5758. pet->SetY(y);
  5759. pet->SetZ(z);
  5760. pet->SetLocation(spawn->GetLocation());
  5761. pet->SetHeading(spawn->GetHeading());
  5762. spawn->GetZone()->AddSpawn(pet);
  5763. /*
  5764. const char* spawn_script = world.GetSpawnScript(pet_id);
  5765. if(spawn_script && lua_interface->GetSpawnScript(spawn_script) != 0){
  5766. spawn->SetSpawnScript(string(spawn_script));
  5767. zone->CallSpawnScript(spawn, SPAWN_SCRIPT_SPAWN);
  5768. }*/
  5769. // Get a random pet name
  5770. string random_pet_name;
  5771. int16 rand_index = MakeRandomInt(0, spawn->GetZone()->pet_names.size() - 1);
  5772. random_pet_name = spawn->GetZone()->pet_names.at(rand_index);
  5773. LogWrite(PET__DEBUG, 0, "Pets", "Randomize Pet Name: '%s' (rand: %i)", random_pet_name.c_str(), rand_index);
  5774. // Set the pets name
  5775. pet->SetName(random_pet_name.c_str());
  5776. // Set the level of the pet to the owners level
  5777. pet->SetLevel(spawn->GetLevel());
  5778. // Set the faction of the pet to the same faction as the owner
  5779. pet->SetFactionID(spawn->GetFactionID());
  5780. // Set the spawn as a pet
  5781. pet->SetPet(true);
  5782. // Give a pointer of the owner to the pet
  5783. ((NPC*)pet)->SetOwner((Entity*)spawn);
  5784. // Set the pet type
  5785. ((NPC*)pet)->SetPetType(PET_TYPE_DUMBFIRE);
  5786. // Set the spell id used to create this pet
  5787. ((NPC*)pet)->SetPetSpellID(luaspell->spell->GetSpellData()->id);
  5788. // Set the spell tier used to create this pet
  5789. ((NPC*)pet)->SetPetSpellTier(luaspell->spell->GetSpellData()->tier);
  5790. // Set the pets spawn type to 6
  5791. pet->SetSpawnType(6);
  5792. // Set the pets brain
  5793. ((NPC*)pet)->SetBrain(new DumbFirePetBrain((NPC*)pet, (Entity*)target, luaspell->spell->GetSpellDuration() * 100));
  5794. // Check to see if the pet has a subtitle
  5795. if (strlen(pet->GetSubTitle()) > 0) {
  5796. // Add the players name to the front of the sub title
  5797. string pet_subtitle;
  5798. pet_subtitle.append(spawn->GetName()).append("'s ").append(pet->GetSubTitle());
  5799. LogWrite(PET__DEBUG, 0, "Pets", "Pet Subtitle: '%s'", pet_subtitle.c_str());
  5800. // Set the pets subtitle to the new one
  5801. pet->SetSubTitle(pet_subtitle.c_str());
  5802. }
  5803. // Set the pet as the return value for this function
  5804. lua_interface->SetSpawnValue(state, pet);
  5805. return 1;
  5806. }
  5807. int EQ2Emu_lua_SpawnMove(lua_State* state) {
  5808. if (!lua_interface)
  5809. return 0;
  5810. Spawn* spawn = lua_interface->GetSpawn(state);
  5811. Spawn* player = lua_interface->GetSpawn(state, 2);
  5812. float max_distance = lua_interface->GetFloatValue(state, 3);
  5813. string type = lua_interface->GetStringValue(state, 4);
  5814. if (!spawn || (spawn && spawn->IsPlayer())) {
  5815. lua_interface->LogError("%s: LUA SpawnMove command error: first param spawn is not valid or is player", lua_interface->GetScriptName(state));
  5816. return 0;
  5817. }
  5818. if (!player || (player && !player->IsPlayer())) {
  5819. lua_interface->LogError("%s: LUA SpawnMove command error: second param is not player", lua_interface->GetScriptName(state));
  5820. return 0;
  5821. }
  5822. Client* client = 0;
  5823. if (player->GetZone())
  5824. client = player->GetZone()->GetClientBySpawn(player);
  5825. if (!client) {
  5826. lua_interface->LogError("%s: LUA SpawnMove command error: could not find client", lua_interface->GetScriptName(state));
  5827. return 0;
  5828. }
  5829. //Set max_distance to default if not set or not proper value
  5830. if (max_distance <= 0)
  5831. max_distance = 500;
  5832. PacketStruct* packet = configReader.getStruct("WS_MoveObjectMode", client->GetVersion());
  5833. if (packet) {
  5834. float unknown2_3 = 0;
  5835. int8 placement_mode = 0;
  5836. if (type == "wall") {
  5837. placement_mode = 2;
  5838. unknown2_3 = 150;
  5839. }
  5840. else if (type == "ceiling")
  5841. placement_mode = 1;
  5842. packet->setDataByName("placement_mode", placement_mode);
  5843. packet->setDataByName("spawn_id", ((Player*)player)->GetIDWithPlayerSpawn(spawn));
  5844. packet->setDataByName("model_type", spawn->GetModelType());
  5845. packet->setDataByName("unknown", 1); //size
  5846. packet->setDataByName("unknown2", 1); //size 2
  5847. packet->setDataByName("unknown2", .5, 1); //size 3
  5848. packet->setDataByName("unknown2", 3, 2);
  5849. packet->setDataByName("unknown2", unknown2_3, 3);
  5850. packet->setDataByName("max_distance", max_distance);
  5851. packet->setDataByName("CoEunknown", 0xFFFFFFFF);
  5852. client->QueuePacket(packet->serialize());
  5853. safe_delete(packet);
  5854. }
  5855. return 0;
  5856. }
  5857. int EQ2Emu_lua_GetItemType(lua_State* state) {
  5858. if (!lua_interface)
  5859. return 0;
  5860. Item* item = lua_interface->GetItem(state);
  5861. if (!item) {
  5862. lua_interface->LogError("%s: LUA GetItemType command error: item pointer is not valid", lua_interface->GetScriptName(state));
  5863. return 0;
  5864. }
  5865. lua_interface->SetInt32Value(state, item->generic_info.item_type);
  5866. return 1;
  5867. }
  5868. int EQ2Emu_lua_AddTransportSpawn(lua_State* state) {
  5869. if (!lua_interface)
  5870. return 0;
  5871. Spawn* spawn = lua_interface->GetSpawn(state);
  5872. if (!spawn) {
  5873. lua_interface->LogError("%s: LUA AddTransportSpawn command error: spawn is not valid", lua_interface->GetScriptName(state));
  5874. return 0;
  5875. }
  5876. if (spawn->GetZone())
  5877. spawn->GetZone()->AddTransportSpawn(spawn);
  5878. return 0;
  5879. }
  5880. int EQ2Emu_lua_GetSkillValue(lua_State* state) {
  5881. if (!lua_interface)
  5882. return 0;
  5883. Skill* skill = lua_interface->GetSkill(state);
  5884. if (!skill) {
  5885. lua_interface->LogError("%s: LUA GetSkillValue command error: skill is not valid", lua_interface->GetScriptName(state));
  5886. return 0;
  5887. }
  5888. lua_interface->SetInt32Value(state, skill->current_val);
  5889. return 1;
  5890. }
  5891. int EQ2Emu_lua_GetSkillMaxValue(lua_State* state) {
  5892. if (!lua_interface)
  5893. return 0;
  5894. Skill* skill = lua_interface->GetSkill(state);
  5895. if (!skill) {
  5896. lua_interface->LogError("%s: LUA GetSkillMaxValue command error: skill is not valid", lua_interface->GetScriptName(state));
  5897. return 0;
  5898. }
  5899. lua_interface->SetInt32Value(state, skill->max_val);
  5900. return 1;
  5901. }
  5902. int EQ2Emu_lua_GetSkillName(lua_State* state) {
  5903. if (!lua_interface)
  5904. return 0;
  5905. Skill* skill = lua_interface->GetSkill(state);
  5906. if (!skill) {
  5907. lua_interface->LogError("%s: LUA GetSkillName command error: skill is not valid", lua_interface->GetScriptName(state));
  5908. return 0;
  5909. }
  5910. lua_interface->SetStringValue(state, skill->name.data.c_str());
  5911. return 1;
  5912. }
  5913. int EQ2Emu_lua_SetSkillMaxValue(lua_State* state) {
  5914. if (!lua_interface)
  5915. return 0;
  5916. Skill* skill = lua_interface->GetSkill(state);
  5917. int16 value = lua_interface->GetInt16Value(state, 2);
  5918. if (!skill) {
  5919. lua_interface->LogError("%s: LUA SetSkillMaxValue command error: skill is not valid", lua_interface->GetScriptName(state));
  5920. return 0;
  5921. }
  5922. skill->max_val = value;
  5923. if (skill->max_val < skill->current_val)
  5924. skill->current_val = skill->max_val;
  5925. return 0;
  5926. }
  5927. int EQ2Emu_lua_SetSkillValue(lua_State* state) {
  5928. if (!lua_interface)
  5929. return 0;
  5930. Skill* skill = lua_interface->GetSkill(state);
  5931. int16 value = lua_interface->GetInt16Value(state, 2);
  5932. if (!skill) {
  5933. lua_interface->LogError("%s: LUA SetSkillValue command error: skill is not valid", lua_interface->GetScriptName(state));
  5934. return 0;
  5935. }
  5936. if (value > skill->max_val)
  5937. skill->current_val = skill->max_val;
  5938. else
  5939. skill->current_val = value;
  5940. return 0;
  5941. }
  5942. int EQ2Emu_lua_GetSkill(lua_State* state) {
  5943. if (!lua_interface)
  5944. return 0;
  5945. Spawn* spawn = lua_interface->GetSpawn(state);
  5946. string name = lua_interface->GetStringValue(state, 2);
  5947. if (!spawn) {
  5948. lua_interface->LogError("%s: LUA GetSkill command error: spawn is not valid", lua_interface->GetScriptName(state));
  5949. return 0;
  5950. }
  5951. if (!spawn->IsEntity()) {
  5952. lua_interface->LogError("%s: LUA GetSkill command error: spawn is not a valid entity", lua_interface->GetScriptName(state));
  5953. return 0;
  5954. }
  5955. Skill* skill = ((Entity*)spawn)->GetSkillByName(name.c_str());
  5956. if (skill) {
  5957. lua_interface->SetSkillValue(state, skill);
  5958. return 1;
  5959. }
  5960. return 0;
  5961. }
  5962. int EQ2Emu_lua_AddProc(lua_State* state) {
  5963. if (!lua_interface)
  5964. return 0;
  5965. Spawn* spawn = lua_interface->GetSpawn(state);
  5966. int8 type = lua_interface->GetInt8Value(state, 2);
  5967. float chance = lua_interface->GetFloatValue(state, 3);
  5968. Item* item = lua_interface->GetItem(state, 4);
  5969. bool use_all_spelltargets = (lua_interface->GetInt8Value(state, 5) == 1);
  5970. LuaSpell* spell = 0;
  5971. if (!spawn && (!spell || !use_all_spelltargets)) {
  5972. lua_interface->LogError("%s: LUA AddProc command error: spawn is not valid", lua_interface->GetScriptName(state));
  5973. return 0;
  5974. }
  5975. if ((!spell || use_all_spelltargets) && spawn && !spawn->IsEntity()) {
  5976. lua_interface->LogError("%s: LUA AddProc command error: spawn is not a valid entity", lua_interface->GetScriptName(state));
  5977. return 0;
  5978. }
  5979. if (!item)
  5980. spell = lua_interface->GetCurrentSpell(state);
  5981. if (!item && !spell) {
  5982. lua_interface->LogError("%s: LUA AddProc command error: can only use with an item provided or inside a spell script", lua_interface->GetScriptName(state));
  5983. return 0;
  5984. }
  5985. if (spell && use_all_spelltargets) {
  5986. Spawn* target;
  5987. spell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  5988. for (int8 i = 0; i < spell->targets.size(); i++) {
  5989. target = spell->caster->GetZone()->GetSpawnByID(spell->targets.at(i));
  5990. if (!target || !target->IsEntity())
  5991. continue;
  5992. ((Entity*)target)->AddProc(type, chance, item, spell);
  5993. }
  5994. spell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  5995. }
  5996. else
  5997. ((Entity*)spawn)->AddProc(type, chance, item, spell);
  5998. return 0;
  5999. }
  6000. int EQ2Emu_lua_RemoveProc(lua_State* state) {
  6001. if (!lua_interface)
  6002. return 0;
  6003. Spawn* spawn = lua_interface->GetSpawn(state);
  6004. Item* item = lua_interface->GetItem(state, 2);
  6005. LuaSpell* spell = 0;
  6006. if (!spawn) {
  6007. lua_interface->LogError("%s: LUA RemoveProc command error: spawn is not valid", lua_interface->GetScriptName(state));
  6008. return 0;
  6009. }
  6010. if (!spawn->IsEntity()) {
  6011. lua_interface->LogError("%s: LUA RemoveProc command error: spawn is not a valid entity", lua_interface->GetScriptName(state));
  6012. return 0;
  6013. }
  6014. if (!item)
  6015. spell = lua_interface->GetCurrentSpell(state);
  6016. if (!item && !spell) {
  6017. lua_interface->LogError("%s: LUA RemoveProc command error: can only use with an item provided or inside a spell script", lua_interface->GetScriptName(state));
  6018. return 0;
  6019. }
  6020. if (spell) {
  6021. Spawn* target;
  6022. spell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  6023. for (int8 i = 0; i < spell->targets.size(); i++) {
  6024. target = spell->caster->GetZone()->GetSpawnByID(spell->targets.at(i));
  6025. if (!target || !target->IsEntity())
  6026. continue;
  6027. ((Entity*)target)->RemoveProc(item, spell);
  6028. }
  6029. spell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  6030. spell->caster->RemoveProc(item, spell);
  6031. }
  6032. else
  6033. ((Entity*)spawn)->RemoveProc(item, spell);
  6034. return 0;
  6035. }
  6036. int EQ2Emu_lua_Knockback(lua_State* state) {
  6037. if (!lua_interface)
  6038. return 0;
  6039. Spawn* target_spawn = lua_interface->GetSpawn(state);
  6040. Spawn* spawn = lua_interface->GetSpawn(state, 2);
  6041. int32 duration = lua_interface->GetInt32Value(state, 3);
  6042. float vertical = lua_interface->GetFloatValue(state, 4);
  6043. float horizontal = lua_interface->GetFloatValue(state, 5);
  6044. bool use_heading = lua_interface->GetInt8Value(state, 6) == 1 ? true : false;
  6045. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  6046. if (!target_spawn) {
  6047. lua_interface->LogError("%s: LUA Knockback command error: target_spawn is not valid", lua_interface->GetScriptName(state));
  6048. return 0;
  6049. }
  6050. if (!spawn) {
  6051. lua_interface->LogError("%s: LUA Knockback command error: spawn is not valid", lua_interface->GetScriptName(state));
  6052. return 0;
  6053. }
  6054. if (spawn->IsPlayer() && (vertical != 0 || horizontal != 0)) {
  6055. Client* client = spawn->GetZone()->GetClientBySpawn(spawn);
  6056. PacketStruct* packet = configReader.getStruct("WS_PlayerKnockback", client->GetVersion());
  6057. if (packet) {
  6058. packet->setDataByName("target_x", target_spawn->GetX());
  6059. packet->setDataByName("target_y", target_spawn->GetY());
  6060. packet->setDataByName("target_z", target_spawn->GetZ());
  6061. packet->setDataByName("vertical_movement", vertical);
  6062. packet->setDataByName("horizontal_movement", horizontal);
  6063. if (use_heading)
  6064. packet->setDataByName("use_player_heading", 1);
  6065. client->QueuePacket(packet->serialize());
  6066. }
  6067. safe_delete(packet);
  6068. }
  6069. return 0;
  6070. }
  6071. int EQ2Emu_lua_IsEpic(lua_State* state) {
  6072. if (!lua_interface)
  6073. return 0;
  6074. Spawn* spawn = lua_interface->GetSpawn(state);
  6075. if (!spawn) {
  6076. lua_interface->LogError("%s: LUA IsEpic command error: spawn is not valid", lua_interface->GetScriptName(state));
  6077. return 0;
  6078. }
  6079. lua_interface->SetBooleanValue(state, (spawn->GetHeroic() >= 2));
  6080. return 1;
  6081. }
  6082. int EQ2Emu_lua_ProcDamage(lua_State* state) {
  6083. if (!lua_interface)
  6084. return 0;
  6085. Spawn* caster = lua_interface->GetSpawn(state);
  6086. Spawn* target = lua_interface->GetSpawn(state, 2);
  6087. string name = lua_interface->GetStringValue(state, 3);
  6088. int8 dmg_type = lua_interface->GetInt8Value(state, 4);
  6089. int32 low_damage = lua_interface->GetInt32Value(state, 5);
  6090. int32 high_damage = lua_interface->GetInt32Value(state, 6);
  6091. string success_msg = lua_interface->GetStringValue(state, 7);
  6092. string effect_msg = lua_interface->GetStringValue(state, 8);
  6093. if (!caster) {
  6094. lua_interface->LogError("%s: LUA ProcDamage command error: caster is not a valid spawn", lua_interface->GetScriptName(state));
  6095. return 0;
  6096. }
  6097. if (!caster->IsEntity()) {
  6098. lua_interface->LogError("%s: LUA ProcDamage command error: caster is not an entity", lua_interface->GetScriptName(state));
  6099. return 0;
  6100. }
  6101. if (!target) {
  6102. lua_interface->LogError("%s: LUA ProcDamage command error: target is not a valid spawn", lua_interface->GetScriptName(state));
  6103. return 0;
  6104. }
  6105. if (!target->IsEntity()) {
  6106. lua_interface->LogError("%s: LUA ProcDamage command error: target is not an entity", lua_interface->GetScriptName(state));
  6107. return 0;
  6108. }
  6109. if (name.length() == 0) {
  6110. lua_interface->LogError("%s: LUA ProcDamage command error: name is empty", lua_interface->GetScriptName(state));
  6111. return 0;
  6112. }
  6113. ((Entity*)caster)->ProcAttack(target, dmg_type, low_damage, high_damage, name, success_msg, effect_msg);
  6114. return 0;
  6115. }
  6116. int EQ2Emu_lua_GetSkillIDByName(lua_State* state) {
  6117. if (!lua_interface)
  6118. return 0;
  6119. string name = lua_interface->GetStringValue(state);
  6120. if (name.length() == 0) {
  6121. lua_interface->LogError("%s: LUA GetSkillIDByName command error: name param was not set", lua_interface->GetScriptName(state));
  6122. return 0;
  6123. }
  6124. Skill* skill = master_skill_list.GetSkillByName(name.c_str());
  6125. if (!skill) {
  6126. lua_interface->LogError("LUA GetSkillIDByName command error: skill with name of %s not found", name.c_str());
  6127. return 0;
  6128. }
  6129. lua_interface->SetInt32Value(state, skill->skill_id);
  6130. return 1;
  6131. }
  6132. int EQ2Emu_lua_IsHeroic(lua_State* state) {
  6133. if (!lua_interface)
  6134. return 0;
  6135. Spawn* spawn = lua_interface->GetSpawn(state);
  6136. if (!spawn) {
  6137. lua_interface->LogError("%s: LUA IsHeroic command error: spawn is not valid", lua_interface->GetScriptName(state));
  6138. return 0;
  6139. }
  6140. lua_interface->SetBooleanValue(state, spawn->GetHeroic() == 1);
  6141. return 1;
  6142. }
  6143. int EQ2Emu_lua_LastSpellAttackHit(lua_State* state) {
  6144. if (!lua_interface)
  6145. return 0;
  6146. LuaSpell* luaspell = lua_interface->GetCurrentSpell(state);
  6147. if (!luaspell) {
  6148. lua_interface->LogError("%s: LUA LastSpellAttackHit command error: this must be called from a spellscript", lua_interface->GetScriptName(state));
  6149. return 0;
  6150. }
  6151. lua_interface->SetBooleanValue(state, luaspell->last_spellattack_hit);
  6152. return 1;
  6153. }
  6154. int EQ2Emu_lua_IsBehind(lua_State* state) {
  6155. if (!lua_interface)
  6156. return 0;
  6157. Spawn* spawn = lua_interface->GetSpawn(state);
  6158. Spawn* target = lua_interface->GetSpawn(state, 2);
  6159. if (!spawn) {
  6160. lua_interface->LogError("%s: LUA IsBehind command error: spawn is not valid", lua_interface->GetScriptName(state));
  6161. return 0;
  6162. }
  6163. if (!spawn->IsEntity()) {
  6164. lua_interface->LogError("%s: LUA IsBehind command error: spawn is not an entity", lua_interface->GetScriptName(state));
  6165. return 0;
  6166. }
  6167. if (!target) {
  6168. lua_interface->LogError("%s: LUA IsBehind command error: target is not valid", lua_interface->GetScriptName(state));
  6169. return 0;
  6170. }
  6171. lua_interface->SetBooleanValue(state, ((Entity*)spawn)->BehindTarget(target));
  6172. return 1;
  6173. }
  6174. int EQ2Emu_lua_IsFlanking(lua_State* state) {
  6175. if (!lua_interface)
  6176. return 0;
  6177. Spawn* spawn = lua_interface->GetSpawn(state);
  6178. Spawn* target = lua_interface->GetSpawn(state, 2);
  6179. if (!spawn) {
  6180. lua_interface->LogError("%s: LUA IsFlanking command error: spawn is not valid", lua_interface->GetScriptName(state));
  6181. return 0;
  6182. }
  6183. if (!spawn->IsEntity()) {
  6184. lua_interface->LogError("%s: LUA IsFlanking command error: spawn is not an entity", lua_interface->GetScriptName(state));
  6185. return 0;
  6186. }
  6187. if (!target) {
  6188. lua_interface->LogError("%s: LUA IsFlanking command error: target is not valid", lua_interface->GetScriptName(state));
  6189. return 0;
  6190. }
  6191. lua_interface->SetBooleanValue(state, ((Entity*)spawn)->FlankingTarget(target));
  6192. return 1;
  6193. }
  6194. int EQ2Emu_lua_GetItemCount(lua_State* state) {
  6195. if (!lua_interface)
  6196. return 0;
  6197. Item* item = lua_interface->GetItem(state);
  6198. if (!item) {
  6199. lua_interface->LogError("%s: LUA GetItemCount command error: item not valid", lua_interface->GetScriptName(state));
  6200. return 0;
  6201. }
  6202. lua_interface->SetInt32Value(state, item->details.count);
  6203. return 1;
  6204. }
  6205. int EQ2Emu_lua_SetItemCount(lua_State* state) {
  6206. if (!lua_interface)
  6207. return 0;
  6208. Item* item = lua_interface->GetItem(state);
  6209. Spawn* owner = lua_interface->GetSpawn(state, 2);
  6210. int16 new_count = lua_interface->GetInt32Value(state, 3);
  6211. if (!item) {
  6212. lua_interface->LogError("%s: LUA SetItemCount command error: item not valid", lua_interface->GetScriptName(state));
  6213. return 0;
  6214. }
  6215. if (!owner) {
  6216. lua_interface->LogError("%s: LUA SetItemCount command error: spawn not valid", lua_interface->GetScriptName(state));
  6217. return 0;
  6218. }
  6219. if (!owner->IsPlayer()) {
  6220. lua_interface->LogError("%s: LUA SetItemCount command error: spawn is not a player", lua_interface->GetScriptName(state));
  6221. return 0;
  6222. }
  6223. if (item->stack_count < new_count) {
  6224. lua_interface->LogError("%s: LUA SetItemCount command error: new item count cannot be more than max stack count", lua_interface->GetScriptName(state));
  6225. return 0;
  6226. }
  6227. if (new_count > 0) {
  6228. item->details.count = new_count;
  6229. item->save_needed = true;
  6230. }
  6231. else if (((Player*)owner)->GetEquipmentList()->GetItem(item->details.slot_id) == item)
  6232. ((Player*)owner)->GetEquipmentList()->RemoveItem(item->details.slot_id, true);
  6233. else if (((Player*)owner)->GetPlayerItemList()->GetItemFromUniqueID(item->details.unique_id) == item)
  6234. ((Player*)owner)->GetPlayerItemList()->RemoveItem(item, true);
  6235. else
  6236. {
  6237. lua_interface->LogError("%s: LUA SetItemCount command error: could not remove item from player", lua_interface->GetScriptName(state));
  6238. return 0;
  6239. }
  6240. Client* client = owner->GetZone()->GetClientBySpawn(owner);
  6241. if (!client)
  6242. return 0;
  6243. ((Player*)owner)->SendInventoryUpdate(client->GetVersion());
  6244. EQ2Packet* app = ((Player*)owner)->GetEquipmentList()->serialize(client->GetVersion());
  6245. if (app)
  6246. client->QueuePacket(app);
  6247. return 0;
  6248. }
  6249. int EQ2Emu_lua_AddSpellTimer(lua_State* state) {
  6250. if (!lua_interface)
  6251. return 0;
  6252. int32 time = lua_interface->GetInt32Value(state);
  6253. string function = lua_interface->GetStringValue(state, 2);
  6254. Spawn* caster = lua_interface->GetSpawn(state, 3);
  6255. Spawn* target = lua_interface->GetSpawn(state, 4);
  6256. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  6257. if (time == 0) {
  6258. lua_interface->LogError("%s: LUA AddSpellTimer command error: time must be set", lua_interface->GetScriptName(state));
  6259. return 0;
  6260. }
  6261. if (function.length() == 0) {
  6262. lua_interface->LogError("%s: LUA AddSpellTimer command error: function name must be set", lua_interface->GetScriptName(state));
  6263. return 0;
  6264. }
  6265. if (!spell) {
  6266. lua_interface->LogError("%s: LUA AddSpellTimer command error: spell not found, AddSpellTimer must be used in a spell script", lua_interface->GetScriptName(state));
  6267. return 0;
  6268. }
  6269. SpellScriptTimer* timer = new SpellScriptTimer;
  6270. /* //Google tells me memsetting a string is bad, manually setting just in case - Foof
  6271. #ifdef WIN32
  6272. ZeroMemory(timer, sizeof(SpellScriptTimer));
  6273. #else
  6274. bzero(timer, sizeof(SpellScriptTimer));
  6275. #endif*/
  6276. timer->caster = 0;
  6277. timer->deleteWhenDone = false;
  6278. timer->target = 0;
  6279. timer->time = Timer::GetCurrentTime2() + time;
  6280. timer->customFunction = function;
  6281. timer->spell = spell;
  6282. if (caster)
  6283. timer->caster = caster->GetID();
  6284. if (target)
  6285. timer->target = target->GetID();
  6286. spell->caster->GetZone()->GetSpellProcess()->AddSpellScriptTimer(timer);
  6287. return 0;
  6288. }
  6289. int EQ2Emu_lua_Resurrect(lua_State* state) {
  6290. if (!lua_interface)
  6291. return 0;
  6292. float hp_perc = lua_interface->GetFloatValue(state);
  6293. float power_perc = lua_interface->GetFloatValue(state, 2);
  6294. bool send_window = lua_interface->GetInt32Value(state, 3) == 1;
  6295. Spawn* target = lua_interface->GetSpawn(state, 4);
  6296. string heal_name = lua_interface->GetStringValue(state, 5);
  6297. int8 crit_mod = lua_interface->GetInt32Value(state, 6);
  6298. bool no_calcs = lua_interface->GetInt32Value(state, 7) == 1;
  6299. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  6300. if (!spell) {
  6301. lua_interface->LogError("%s: LUA command error: this function must be used in a spellscript", lua_interface->GetScriptName(state));
  6302. return 0;
  6303. }
  6304. Entity* caster = spell->caster;
  6305. if (!caster) {
  6306. lua_interface->LogError("%s: LUA command error: could not find caster", lua_interface->GetScriptName(state));
  6307. return 0;
  6308. }
  6309. Client* client = 0;
  6310. PendingResurrection* rez = 0;
  6311. ZoneServer* zone = spell->caster->GetZone();
  6312. if (!target) {
  6313. spell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  6314. if (spell->targets.size() > 0) {
  6315. vector<int32> spell_targets = spell->targets;
  6316. for (int8 i = 0; i < spell_targets.size(); i++) {
  6317. target = zone->GetSpawnByID(spell_targets.at(i));
  6318. if (!target)
  6319. continue;
  6320. if (!target->IsPlayer())
  6321. continue;
  6322. client = target->GetZone()->GetClientBySpawn(target);
  6323. if (!client)
  6324. continue;
  6325. rez = client->GetCurrentRez();
  6326. if (rez->active)
  6327. continue;
  6328. client->GetResurrectMutex()->writelock(__FUNCTION__, __LINE__);
  6329. rez->active = true;
  6330. rez->caster = caster;
  6331. rez->expire_timer = new Timer;
  6332. int32 duration = spell->spell->GetSpellDuration();
  6333. rez->expire_timer->Start(duration * 100);
  6334. rez->hp_perc = hp_perc;
  6335. rez->mp_perc = power_perc;
  6336. rez->range = spell->spell->GetSpellData()->range;
  6337. rez->spell_name = spell->spell->GetName();
  6338. if (heal_name.length() > 0)
  6339. rez->heal_name = heal_name;
  6340. else
  6341. rez->heal_name = rez->spell_name;
  6342. rez->no_calcs = no_calcs;
  6343. rez->crit_mod = crit_mod;
  6344. rez->spell_visual = spell->spell->GetSpellData()->spell_visual;
  6345. if (send_window)
  6346. client->SendResurrectionWindow();
  6347. else {
  6348. target->GetZone()->ResurrectSpawn(target, client);
  6349. rez->should_delete = true;
  6350. }
  6351. client->GetResurrectMutex()->releasewritelock(__FUNCTION__, __LINE__);
  6352. }
  6353. }
  6354. spell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  6355. }
  6356. else {
  6357. client = target->GetZone()->GetClientBySpawn(target);
  6358. if (!client)
  6359. return 0;
  6360. rez = client->GetCurrentRez();
  6361. if (rez->active)
  6362. return 0;
  6363. client->GetResurrectMutex()->writelock(__FUNCTION__, __LINE__);
  6364. rez->active = true;
  6365. rez->caster = caster;
  6366. rez->expire_timer = new Timer;
  6367. int32 duration = spell->spell->GetSpellDuration();
  6368. rez->expire_timer->Start(duration * 100);
  6369. rez->hp_perc = hp_perc;
  6370. rez->mp_perc = power_perc;
  6371. rez->range = spell->spell->GetSpellData()->range;
  6372. rez->spell_name = spell->spell->GetName();
  6373. if (heal_name.length() > 0)
  6374. rez->heal_name = heal_name;
  6375. else
  6376. rez->heal_name = rez->spell_name;
  6377. rez->no_calcs = no_calcs;
  6378. rez->crit_mod = crit_mod;
  6379. rez->spell_visual = spell->spell->GetSpellData()->spell_visual;
  6380. if (send_window)
  6381. client->SendResurrectionWindow();
  6382. else {
  6383. target->GetZone()->ResurrectSpawn(target, client);
  6384. rez->should_delete = true;
  6385. }
  6386. client->GetResurrectMutex()->releasewritelock(__FUNCTION__, __LINE__);
  6387. }
  6388. return 0;
  6389. }
  6390. int EQ2Emu_lua_SetVision(lua_State* state) {
  6391. if (!lua_interface)
  6392. return 0;
  6393. Spawn* spawn = lua_interface->GetSpawn(state);
  6394. int8 vision = lua_interface->GetInt8Value(state, 2);
  6395. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  6396. if (!spawn) {
  6397. lua_interface->LogError("%s: LUA SetVision command error: spawn is not valid", lua_interface->GetScriptName(state));
  6398. return 0;
  6399. }
  6400. if (!spawn->IsEntity()) {
  6401. lua_interface->LogError("%s: LUA SetVision command error: spawn is not an entity", lua_interface->GetScriptName(state));
  6402. return 0;
  6403. }
  6404. if (spell && spell->targets.size() > 0) {
  6405. ZoneServer* zone = spell->caster->GetZone();
  6406. for (int8 i = 0; i < spell->targets.size(); i++) {
  6407. Spawn* target = zone->GetSpawnByID(spell->targets.at(i));
  6408. if (target->IsEntity()) {
  6409. ((Entity*)target)->GetInfoStruct()->vision = vision;
  6410. if (target->IsPlayer())
  6411. ((Player*)target)->SetCharSheetChanged(true);
  6412. }
  6413. }
  6414. }
  6415. else {
  6416. ((Entity*)spawn)->GetInfoStruct()->vision = vision;
  6417. if (spawn->IsPlayer())
  6418. ((Player*)spawn)->SetCharSheetChanged(true);
  6419. }
  6420. return 0;
  6421. }
  6422. int EQ2Emu_lua_BlurVision(lua_State* state) {
  6423. if (!lua_interface)
  6424. return 0;
  6425. Spawn* spawn = lua_interface->GetSpawn(state);
  6426. float intensity = lua_interface->GetFloatValue(state, 2);
  6427. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  6428. if (!spawn) {
  6429. lua_interface->LogError("%s: LUA BlurVision command error: spawn is not valid", lua_interface->GetScriptName(state));
  6430. return 0;
  6431. }
  6432. if (!spawn->IsEntity()) {
  6433. lua_interface->LogError("%s: LUA BlurVision command error: spawn is not an entity", lua_interface->GetScriptName(state));
  6434. return 0;
  6435. }
  6436. if (spell && spell->targets.size() > 0) {
  6437. ZoneServer* zone = spell->caster->GetZone();
  6438. for (int8 i = 0; i < spell->targets.size(); i++) {
  6439. Spawn* target = zone->GetSpawnByID(spell->targets.at(i));
  6440. if (target && target->IsEntity()) {
  6441. ((Entity*)target)->GetInfoStruct()->drunk = intensity;
  6442. if (target->IsPlayer())
  6443. ((Player*)target)->SetCharSheetChanged(true);
  6444. }
  6445. }
  6446. }
  6447. else {
  6448. ((Entity*)spawn)->GetInfoStruct()->drunk = intensity;
  6449. if (spawn->IsPlayer())
  6450. ((Player*)spawn)->SetCharSheetChanged(true);
  6451. }
  6452. return 0;
  6453. }
  6454. int EQ2Emu_lua_BreatheUnderwater(lua_State* state) {
  6455. if (!lua_interface)
  6456. return 0;
  6457. Spawn* spawn = lua_interface->GetSpawn(state);
  6458. bool breatheUnderwater = lua_interface->GetBooleanValue(state, 2);
  6459. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  6460. if (!spawn) {
  6461. lua_interface->LogError("%s: LUA BreathUnderwater command error: spawn is not valid", lua_interface->GetScriptName(state));
  6462. return 0;
  6463. }
  6464. if (!spawn->IsEntity()) {
  6465. lua_interface->LogError("%s: LUA BreathUnderwater command error: spawn is not en entity", lua_interface->GetScriptName(state));
  6466. return 0;
  6467. }
  6468. if (spell && spell->targets.size() > 0) {
  6469. ZoneServer* zone = spell->caster->GetZone();
  6470. for (int8 i = 0; i < spell->targets.size(); i++) {
  6471. Spawn* target = zone->GetSpawnByID(spell->targets.at(i));
  6472. if (target->IsEntity()) {
  6473. ((Entity*)target)->GetInfoStruct()->breathe_underwater = breatheUnderwater;
  6474. if (target->IsPlayer())
  6475. ((Player*)target)->SetCharSheetChanged(true);
  6476. }
  6477. }
  6478. }
  6479. else {
  6480. ((Entity*)spawn)->GetInfoStruct()->breathe_underwater = breatheUnderwater;
  6481. if (spawn->IsPlayer())
  6482. ((Player*)spawn)->SetCharSheetChanged(true);
  6483. }
  6484. return 0;
  6485. }
  6486. int EQ2Emu_lua_GetItemSkillReq(lua_State* state) {
  6487. if (!lua_interface)
  6488. return 0;
  6489. Item* item = lua_interface->GetItem(state);
  6490. int8 type = lua_interface->GetInt32Value(state, 2);
  6491. if (!item) {
  6492. lua_interface->LogError("%s: LUA GetItemSkillReq command error: item not valid", lua_interface->GetScriptName(state));
  6493. return 0;
  6494. }
  6495. if (type == 1)
  6496. lua_interface->SetInt32Value(state, item->generic_info.skill_req1);
  6497. else if (type == 2)
  6498. lua_interface->SetInt32Value(state, item->generic_info.skill_req2);
  6499. return 1;
  6500. }
  6501. int EQ2Emu_lua_SetSpeedMultiplier(lua_State* state) {
  6502. if (!lua_interface)
  6503. return 0;
  6504. Spawn* target = lua_interface->GetSpawn(state);
  6505. float val = lua_interface->GetFloatValue(state, 2);
  6506. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  6507. // Added from Gangrenous post
  6508. if (spell && spell->resisted)
  6509. return 0;
  6510. // if its a percentage of 100 its a slow, we want to go at a fraction of the speed
  6511. if (val > 1.0f)
  6512. val = 1.0f - (val / 100.0f);
  6513. if (spell && spell->spell && spell->targets.size() > 0) {
  6514. ZoneServer* zone = spell->caster->GetZone();
  6515. for (int32 i = 0; i != spell->targets.size(); i++) {
  6516. Spawn* spawn = zone->GetSpawnByID(spell->targets.at(i));
  6517. if (spawn && spawn->IsEntity()) {
  6518. ((Entity*)spawn)->SetSpeedMultiplier(val);
  6519. if (spawn->IsPlayer())
  6520. ((Player*)spawn)->SetCharSheetChanged(true);
  6521. }
  6522. }
  6523. }
  6524. else {
  6525. if (target && target->IsEntity()) {
  6526. ((Entity*)target)->SetSpeedMultiplier(val);
  6527. if (target->IsPlayer())
  6528. ((Player*)target)->SetCharSheetChanged(true);
  6529. }
  6530. }
  6531. return 0;
  6532. }
  6533. int EQ2Emu_lua_SetIllusion(lua_State* state) {
  6534. if (!lua_interface)
  6535. return 0;
  6536. Spawn* spawn = lua_interface->GetSpawn(state);
  6537. int16 model = lua_interface->GetInt16Value(state, 2);
  6538. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  6539. if (spell && spell->spell && spell->targets.size() > 0) {
  6540. ZoneServer* zone = spell->caster->GetZone();
  6541. for (int32 i = 0; i < spell->targets.size(); i++) {
  6542. Spawn* target = zone->GetSpawnByID(spell->targets.at(i));
  6543. if (target)
  6544. target->SetIllusionModel(model);
  6545. }
  6546. }
  6547. else {
  6548. if (!spawn) {
  6549. lua_interface->LogError("%s: LUA SetIllusion command error: spawn is not valid", lua_interface->GetScriptName(state));
  6550. return 0;
  6551. }
  6552. spawn->SetIllusionModel(model);
  6553. }
  6554. return 0;
  6555. }
  6556. int EQ2Emu_lua_ResetIllusion(lua_State* state) {
  6557. if (!lua_interface)
  6558. return 0;
  6559. Spawn* spawn = lua_interface->GetSpawn(state);
  6560. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  6561. if (spell && spell->spell && spell->targets.size() > 0) {
  6562. ZoneServer* zone = spell->caster->GetZone();
  6563. for (int32 i = 0; i < spell->targets.size(); i++) {
  6564. Spawn* target = zone->GetSpawnByID(spell->targets.at(i));
  6565. if (target)
  6566. target->SetIllusionModel(0);
  6567. }
  6568. }
  6569. else {
  6570. if (!spawn) {
  6571. lua_interface->LogError("%s: LUA ResetIllusion command error: spawn is not valid", lua_interface->GetScriptName(state));
  6572. return 0;
  6573. }
  6574. spawn->SetIllusionModel(0);
  6575. }
  6576. return 0;
  6577. }
  6578. int EQ2Emu_lua_AddThreatTransfer(lua_State* state) {
  6579. if (!lua_interface)
  6580. return 0;
  6581. Spawn* caster = lua_interface->GetSpawn(state);
  6582. Spawn* target = lua_interface->GetSpawn(state, 2);
  6583. float chance = lua_interface->GetFloatValue(state, 3);
  6584. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  6585. if (!caster) {
  6586. lua_interface->LogError("%s: LUA AddThreatTransfer command error: caster is not a valid spawn", lua_interface->GetScriptName(state));
  6587. return 0;
  6588. }
  6589. if (!caster->IsEntity()) {
  6590. lua_interface->LogError("%s: LUA AddThreatTransfer command error: caster is not an entity", lua_interface->GetScriptName(state));
  6591. return 0;
  6592. }
  6593. if (!target) {
  6594. lua_interface->LogError("%s: LUA AddThreatTransfer command error: target is not a valid spawn", lua_interface->GetScriptName(state));
  6595. return 0;
  6596. }
  6597. if (!target->IsEntity()) {
  6598. lua_interface->LogError("%s: LUA AddThreatTransfer command error: target is not an entity", lua_interface->GetScriptName(state));
  6599. return 0;
  6600. }
  6601. if (chance <= 0) {
  6602. lua_interface->LogError("%s: LUA AddThreatTransfer command error: chance must be greater then 0%", lua_interface->GetScriptName(state));
  6603. return 0;
  6604. }
  6605. if (!spell) {
  6606. lua_interface->LogError("%s: LUA AddThreatTransfer command error: can only be used in a spell script", lua_interface->GetScriptName(state));
  6607. return 0;
  6608. }
  6609. if (((Entity*)caster)->GetThreatTransfer()) {
  6610. return 0;
  6611. }
  6612. ThreatTransfer* transfer = new ThreatTransfer;
  6613. transfer->Target = target->GetID();
  6614. transfer->Amount = chance;
  6615. transfer->Spell = spell;
  6616. ((Entity*)caster)->SetThreatTransfer(transfer);
  6617. return 0;
  6618. }
  6619. int EQ2Emu_lua_RemoveThreatTransfer(lua_State* state) {
  6620. if (!lua_interface)
  6621. return 0;
  6622. Spawn* spawn = lua_interface->GetSpawn(state);
  6623. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  6624. if (!spawn) {
  6625. lua_interface->LogError("%s: LUA RemoveThreatTransfer command error: spawn is not valid", lua_interface->GetScriptName(state));
  6626. return 0;
  6627. }
  6628. if (!spell) {
  6629. lua_interface->LogError("%s: LUA RemoveThreatTransfer command error: can only be used in a spell script", lua_interface->GetScriptName(state));
  6630. return 0;
  6631. }
  6632. if (((Entity*)spawn)->GetThreatTransfer() && ((Entity*)spawn)->GetThreatTransfer()->Spell == spell) {
  6633. ThreatTransfer* transfer = ((Entity*)spawn)->GetThreatTransfer();
  6634. safe_delete(transfer);
  6635. ((Entity*)spawn)->SetThreatTransfer(0);
  6636. }
  6637. return 0;
  6638. }
  6639. int EQ2Emu_lua_CureByType(lua_State* state) {
  6640. if (!lua_interface)
  6641. return 0;
  6642. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  6643. if (!spell) {
  6644. lua_interface->LogError("%s: LUA CureByType command error: can only be used in a spell script", lua_interface->GetScriptName(state));
  6645. return 0;
  6646. }
  6647. int8 cure_count = lua_interface->GetInt8Value(state);
  6648. int8 cure_type = lua_interface->GetInt8Value(state, 2);
  6649. string cure_name = lua_interface->GetStringValue(state, 3);
  6650. int8 cure_level = lua_interface->GetInt8Value(state, 4);
  6651. Spawn* target = lua_interface->GetSpawn(state, 5);
  6652. if (target) {
  6653. if (!target->IsEntity()) {
  6654. lua_interface->LogError("%s: LUA CureByType command error: spawn override must be entity if used", lua_interface->GetScriptName(state));
  6655. return 0;
  6656. }
  6657. if (((Entity*)target)->GetDetTypeCount(cure_type) > 0)
  6658. ((Entity*)target)->CureDetrimentByType(cure_count, cure_type, cure_name.length() > 0 ? cure_name : (string)spell->spell->GetName(), spell->caster, cure_level);
  6659. }
  6660. else {
  6661. ZoneServer* zone = spell->caster->GetZone();
  6662. vector<int32> targets = spell->targets;
  6663. spell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  6664. for (int8 i = 0; i < targets.size(); i++) {
  6665. target = zone->GetSpawnByID(targets.at(i));
  6666. if (!target || !target->IsEntity())
  6667. continue;
  6668. if (((Entity*)target)->GetDetTypeCount(cure_type) > 0)
  6669. ((Entity*)target)->CureDetrimentByType(cure_count, cure_type, cure_name.length() > 0 ? cure_name : (string)spell->spell->GetName(), spell->caster, cure_level);
  6670. }
  6671. spell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  6672. }
  6673. return 0;
  6674. }
  6675. int EQ2Emu_lua_CureByControlEffect(lua_State* state) {
  6676. if (!lua_interface)
  6677. return 0;
  6678. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  6679. if (!spell) {
  6680. lua_interface->LogError("%s: LUA CureByControlEffect command error: can only be used in a spell script", lua_interface->GetScriptName(state));
  6681. return 0;
  6682. }
  6683. int8 cure_count = lua_interface->GetInt8Value(state);
  6684. int8 cure_type = lua_interface->GetInt8Value(state, 2);
  6685. string cure_name = lua_interface->GetStringValue(state, 3);
  6686. int8 cure_level = lua_interface->GetInt8Value(state, 4);
  6687. Spawn* target = lua_interface->GetSpawn(state, 5);
  6688. if (target) {
  6689. if (!target->IsEntity()) {
  6690. lua_interface->LogError("%s: LUA CureByControlEffect command error: spawn override must be entity if used", lua_interface->GetScriptName(state));
  6691. return 0;
  6692. }
  6693. if (((Entity*)target)->GetDetCount() > 0)
  6694. ((Entity*)target)->CureDetrimentByControlEffect(cure_count, cure_type, cure_name.length() > 0 ? cure_name : (string)spell->spell->GetName(), spell->caster, cure_level);
  6695. }
  6696. else {
  6697. ZoneServer* zone = spell->caster->GetZone();
  6698. vector<int32> targets = spell->targets;
  6699. spell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  6700. for (int8 i = 0; i < targets.size(); i++) {
  6701. target = zone->GetSpawnByID(targets.at(i));
  6702. if (!target || !target->IsEntity())
  6703. continue;
  6704. if (((Entity*)target)->GetDetCount() > 0)
  6705. ((Entity*)target)->CureDetrimentByControlEffect(cure_count, cure_type, cure_name.length() > 0 ? cure_name : (string)spell->spell->GetName(), spell->caster, cure_level);
  6706. }
  6707. spell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  6708. }
  6709. return 0;
  6710. }
  6711. int EQ2Emu_lua_CancelSpell(lua_State* state) {
  6712. if (!lua_interface)
  6713. return 0;
  6714. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  6715. if (!spell) {
  6716. lua_interface->LogError("%s: LUA CancelSpell command error: can only be use in a spell script", lua_interface->GetScriptName(state));
  6717. return 0;
  6718. }
  6719. if (!spell->caster) {
  6720. lua_interface->LogError("%s: LUA CancelSpell command error: unable to get the caster of the spell", lua_interface->GetScriptName(state));
  6721. return 0;
  6722. }
  6723. if (!spell->caster->GetZone()) {
  6724. lua_interface->LogError("%s: LUA CancelSpell command error: unable to get the zone of the caster", lua_interface->GetScriptName(state));
  6725. return 0;
  6726. }
  6727. spell->caster->GetZone()->GetSpellProcess()->AddSpellCancel(spell);
  6728. return 0;
  6729. }
  6730. int EQ2Emu_lua_RemoveStealth(lua_State* state) {
  6731. if (!lua_interface)
  6732. return 0;
  6733. Spawn* spawn = lua_interface->GetSpawn(state);
  6734. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  6735. if (!spell) {
  6736. lua_interface->LogError("%s: LUA RemoveStealth command error: must be used from spell script", lua_interface->GetScriptName(state));
  6737. return 0;
  6738. }
  6739. if (spawn && spawn->IsEntity())
  6740. ((Entity*)spawn)->RemoveStealthSpell(spell);
  6741. else {
  6742. ZoneServer* zone = spell->caster->GetZone();
  6743. spell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  6744. for (int32 i = 0; i < spell->targets.size(); i++) {
  6745. spawn = zone->GetSpawnByID(spell->targets.at(i));
  6746. if (!spawn || !spawn->IsEntity())
  6747. continue;
  6748. ((Entity*)spawn)->RemoveStealthSpell(spell);
  6749. }
  6750. spell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  6751. }
  6752. return 0;
  6753. }
  6754. int EQ2Emu_lua_RemoveInvis(lua_State* state) {
  6755. if (!lua_interface)
  6756. return 0;
  6757. Spawn* spawn = lua_interface->GetSpawn(state);
  6758. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  6759. if (!spell) {
  6760. lua_interface->LogError("%s: LUA RemoveInvis command error: must be used from spell script", lua_interface->GetScriptName(state));
  6761. return 0;
  6762. }
  6763. if (spawn && spawn->IsEntity())
  6764. ((Entity*)spawn)->RemoveInvisSpell(spell);
  6765. else {
  6766. ZoneServer* zone = spell->caster->GetZone();
  6767. spell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  6768. for (int32 i = 0; i < spell->targets.size(); i++) {
  6769. spawn = zone->GetSpawnByID(spell->targets.at(i));
  6770. if (!spawn || !spawn->IsEntity())
  6771. continue;
  6772. ((Entity*)spawn)->RemoveInvisSpell(spell);
  6773. }
  6774. spell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  6775. }
  6776. return 0;
  6777. }
  6778. int EQ2Emu_lua_StartHeroicOpportunity(lua_State* state) {
  6779. if (!lua_interface)
  6780. return 0;
  6781. Spawn* caster = lua_interface->GetSpawn(state);
  6782. int8 class_id = lua_interface->GetInt8Value(state, 2);
  6783. if (!caster) {
  6784. lua_interface->LogError("%s: LUA StartHeroicOpportunity command error: caster is not valid", lua_interface->GetScriptName(state));
  6785. return 0;
  6786. }
  6787. if (!caster->IsPlayer()) {
  6788. lua_interface->LogError("%s: LUA StartHeroicOpportunity command error: caster must be a player", lua_interface->GetScriptName(state));
  6789. return 0;
  6790. }
  6791. Spawn* target = caster->GetTarget();
  6792. if (!target) {
  6793. lua_interface->LogError("%s: LUA StartHeroicOpportunity command error: target is not valid", lua_interface->GetScriptName(state));
  6794. return 0;
  6795. }
  6796. Client* client = caster->GetZone()->GetClientBySpawn(caster);
  6797. if (!client) {
  6798. lua_interface->LogError("%s: LUA StartHeroicOpportunity command error: unable to get a client for the given caster", lua_interface->GetScriptName(state));
  6799. return 0;
  6800. }
  6801. HeroicOP* ho = master_ho_list.GetHeroicOP(class_id);
  6802. if (ho) {
  6803. ho->SetTarget(target->GetID());
  6804. LogWrite(SPELL__ERROR, 0, "HO", "caster: %u", caster->GetID());
  6805. LogWrite(SPELL__ERROR, 0, "HO", "target: %u", target->GetID());
  6806. if (((Entity*)caster)->GetGroupMemberInfo()) {
  6807. if (caster->GetZone()->GetSpellProcess()->AddHO(client, ho)) {
  6808. world.GetGroupManager()->GroupLock(__FUNCTION__, __LINE__);
  6809. deque<GroupMemberInfo*>::iterator itr;
  6810. deque<GroupMemberInfo*>* members = world.GetGroupManager()->GetGroupMembers(((Entity*)caster)->GetGroupMemberInfo()->group_id);
  6811. for (itr = members->begin(); itr != members->end(); itr++) {
  6812. if ((*itr)->client)
  6813. ClientPacketFunctions::SendHeroicOPUpdate((*itr)->client, ho);
  6814. }
  6815. world.GetGroupManager()->ReleaseGroupLock(__FUNCTION__, __LINE__);
  6816. }
  6817. else
  6818. safe_delete(ho);
  6819. }
  6820. else {
  6821. if (caster->GetZone()->GetSpellProcess()->AddHO(client, ho)) {
  6822. ClientPacketFunctions::SendHeroicOPUpdate(client, ho);
  6823. }
  6824. else
  6825. safe_delete(ho);
  6826. }
  6827. }
  6828. return 0;
  6829. }
  6830. int EQ2Emu_lua_SetSpellTriggerCount(lua_State* state) {
  6831. if (!lua_interface)
  6832. return 0;
  6833. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  6834. if (!spell) {
  6835. lua_interface->LogError("%s: LUA SetSpellTriggerCount command error: you must use this function in a spellscript!", lua_interface->GetScriptName(state));
  6836. return 0;
  6837. }
  6838. int16 triggerCount = lua_interface->GetInt16Value(state);
  6839. bool cancel_after_triggers = (lua_interface->GetInt8Value(state, 2) == 1);
  6840. if (!triggerCount) {
  6841. lua_interface->LogError("%s: LUA SetSpellTriggerCount command error: used trigger value equals zero!", lua_interface->GetScriptName(state));
  6842. return 0;
  6843. }
  6844. spell->num_triggers = triggerCount;
  6845. spell->had_triggers = true;
  6846. spell->cancel_after_all_triggers = cancel_after_triggers;
  6847. return 0;
  6848. }
  6849. int EQ2Emu_lua_GetSpellTriggerCount(lua_State* state) {
  6850. if (!lua_interface)
  6851. return 0;
  6852. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  6853. if (!spell) {
  6854. lua_interface->LogError("%s: LUA GetSpellTriggerCount command error: you must use this function in a spellscript!", lua_interface->GetScriptName(state));
  6855. return 0;
  6856. }
  6857. lua_interface->SetInt32Value(state, spell->num_triggers);
  6858. return 1;
  6859. }
  6860. int EQ2Emu_lua_RemoveTriggerFromSpell(lua_State* state) {
  6861. if (!lua_interface)
  6862. return 0;
  6863. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  6864. if (!spell) {
  6865. lua_interface->LogError("%s: LUA RemoveTriggerFromSpell command error: you must use this function in a spellscript!", lua_interface->GetScriptName(state));
  6866. return 0;
  6867. }
  6868. int16 remove_count = lua_interface->GetInt16Value(state);
  6869. if (!remove_count)
  6870. remove_count = 1;
  6871. if (remove_count >= spell->num_triggers) {
  6872. spell->num_triggers = 0;
  6873. if (spell->cancel_after_all_triggers)
  6874. spell->caster->GetZone()->GetSpellProcess()->AddSpellCancel(spell);
  6875. }
  6876. else {
  6877. spell->num_triggers -= remove_count;
  6878. ClientPacketFunctions::SendMaintainedExamineUpdate(spell->caster->GetZone()->GetClientBySpawn(spell->caster), spell->slot_pos, spell->num_triggers, 0);
  6879. }
  6880. return 0;
  6881. }
  6882. int EQ2Emu_lua_CopySpawnAppearance(lua_State* state) {
  6883. if (!lua_interface)
  6884. return 0;
  6885. Spawn* spawn = lua_interface->GetSpawn(state);
  6886. Spawn* copy_spawn = lua_interface->GetSpawn(state, 2);
  6887. if (!spawn) {
  6888. lua_interface->LogError("%s: LUA CopySpawnAppearance command error: the first spawn used was not valid!", lua_interface->GetScriptName(state));
  6889. return 0;
  6890. }
  6891. if (!copy_spawn) {
  6892. lua_interface->LogError("%s: LUA CopySpawnAppearance command error: the second spawn used was not valid!", lua_interface->GetScriptName(state));
  6893. return 0;
  6894. }
  6895. spawn->CopySpawnAppearance(copy_spawn);
  6896. return 0;
  6897. }
  6898. int EQ2Emu_lua_AddImmunitySpell(lua_State* state) {
  6899. if (!lua_interface)
  6900. return 0;
  6901. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  6902. int8 type = lua_interface->GetInt8Value(state);
  6903. Spawn* spawn = lua_interface->GetSpawn(state, 2);
  6904. if (!spell) {
  6905. lua_interface->LogError("%s: LUA AddImmunitySpell command error: This must be used in a spellscript", lua_interface->GetScriptName(state));
  6906. return 0;
  6907. }
  6908. if (spawn) {
  6909. if (!spawn->IsEntity()) {
  6910. lua_interface->LogError("%s: LUA AddImmunitySpell command error: The spawn provided is not an entity", lua_interface->GetScriptName(state));
  6911. return 0;
  6912. }
  6913. Entity* entity = ((Entity*)spawn);
  6914. switch (type) {
  6915. case IMMUNITY_TYPE_AOE:
  6916. entity->AddAOEImmunity(spell);
  6917. if (!(spell->effect_bitmask & EFFECT_FLAG_AOE_IMMUNE))
  6918. spell->effect_bitmask += EFFECT_FLAG_AOE_IMMUNE;
  6919. break;
  6920. case IMMUNITY_TYPE_STUN:
  6921. entity->AddStunImmunity(spell);
  6922. if (!(spell->effect_bitmask & EFFECT_FLAG_STUN_IMMUNE))
  6923. spell->effect_bitmask += EFFECT_FLAG_STUN_IMMUNE;
  6924. break;
  6925. case IMMUNITY_TYPE_ROOT:
  6926. entity->AddRootImmunity(spell);
  6927. if (!(spell->effect_bitmask & EFFECT_FLAG_ROOT_IMMUNE))
  6928. spell->effect_bitmask += EFFECT_FLAG_ROOT_IMMUNE;
  6929. break;
  6930. case IMMUNITY_TYPE_DAZE:
  6931. entity->AddDazeImmunity(spell);
  6932. if (!(spell->effect_bitmask & EFFECT_FLAG_DAZE_IMMUNE))
  6933. spell->effect_bitmask += EFFECT_FLAG_DAZE_IMMUNE;
  6934. break;
  6935. case IMMUNITY_TYPE_FEAR:
  6936. entity->AddFearImmunity(spell);
  6937. if (!(spell->effect_bitmask & EFFECT_FLAG_FEAR_IMMUNE))
  6938. spell->effect_bitmask += EFFECT_FLAG_FEAR_IMMUNE;
  6939. break;
  6940. case IMMUNITY_TYPE_MEZ:
  6941. entity->AddMezImmunity(spell);
  6942. if (!(spell->effect_bitmask & EFFECT_FLAG_MEZ_IMMUNE))
  6943. spell->effect_bitmask += EFFECT_FLAG_MEZ_IMMUNE;
  6944. break;
  6945. case IMMUNITY_TYPE_STIFLE:
  6946. entity->AddStifleImmunity(spell);
  6947. if (!(spell->effect_bitmask & EFFECT_FLAG_STIFLE_IMMUNE))
  6948. spell->effect_bitmask += EFFECT_FLAG_STIFLE_IMMUNE;
  6949. break;
  6950. default:
  6951. lua_interface->LogError("%s: LUA AddImmunitySpell command error: invalid immunity type", lua_interface->GetScriptName(state));
  6952. }
  6953. }
  6954. else {
  6955. bool should_break = false;
  6956. spell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  6957. for (int8 i = 0; i < spell->targets.size(); i++) {
  6958. spawn = spell->caster->GetZone()->GetSpawnByID(spell->targets.at(i));
  6959. if (!spawn || !spawn->IsEntity())
  6960. continue;
  6961. Entity* entity = ((Entity*)spawn);
  6962. switch (type) {
  6963. case IMMUNITY_TYPE_AOE:
  6964. entity->AddAOEImmunity(spell);
  6965. if (!(spell->effect_bitmask & EFFECT_FLAG_AOE_IMMUNE))
  6966. spell->effect_bitmask += EFFECT_FLAG_AOE_IMMUNE;
  6967. break;
  6968. case IMMUNITY_TYPE_STUN:
  6969. entity->AddStunImmunity(spell);
  6970. if (!(spell->effect_bitmask & EFFECT_FLAG_STUN_IMMUNE))
  6971. spell->effect_bitmask += EFFECT_FLAG_STUN_IMMUNE;
  6972. break;
  6973. case IMMUNITY_TYPE_ROOT:
  6974. entity->AddRootImmunity(spell);
  6975. if (!(spell->effect_bitmask & EFFECT_FLAG_ROOT_IMMUNE))
  6976. spell->effect_bitmask += EFFECT_FLAG_ROOT_IMMUNE;
  6977. break;
  6978. case IMMUNITY_TYPE_DAZE:
  6979. entity->AddDazeImmunity(spell);
  6980. if (!(spell->effect_bitmask & EFFECT_FLAG_DAZE_IMMUNE))
  6981. spell->effect_bitmask += EFFECT_FLAG_DAZE_IMMUNE;
  6982. break;
  6983. case IMMUNITY_TYPE_FEAR:
  6984. entity->AddFearImmunity(spell);
  6985. if (!(spell->effect_bitmask & EFFECT_FLAG_FEAR_IMMUNE))
  6986. spell->effect_bitmask += EFFECT_FLAG_FEAR_IMMUNE;
  6987. break;
  6988. case IMMUNITY_TYPE_MEZ:
  6989. entity->AddMezImmunity(spell);
  6990. if (!(spell->effect_bitmask & EFFECT_FLAG_MEZ_IMMUNE))
  6991. spell->effect_bitmask += EFFECT_FLAG_MEZ_IMMUNE;
  6992. break;
  6993. case IMMUNITY_TYPE_STIFLE:
  6994. entity->AddStifleImmunity(spell);
  6995. if (!(spell->effect_bitmask & EFFECT_FLAG_STIFLE_IMMUNE))
  6996. spell->effect_bitmask += EFFECT_FLAG_STIFLE_IMMUNE;
  6997. break;
  6998. default:
  6999. lua_interface->LogError("%s: LUA AddImmunitySpell command error: invalid immunity type", lua_interface->GetScriptName(state));
  7000. should_break = true;
  7001. }
  7002. if (should_break)
  7003. break;
  7004. }
  7005. spell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  7006. }
  7007. return 0;
  7008. }
  7009. int EQ2Emu_lua_RemoveImmunitySpell(lua_State* state) {
  7010. if (!lua_interface)
  7011. return 0;
  7012. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  7013. int8 type = lua_interface->GetInt8Value(state);
  7014. Spawn* spawn = lua_interface->GetSpawn(state, 2);
  7015. if (!spell) {
  7016. lua_interface->LogError("%s: LUA RemoveImmunitySpell command error: This must be used in a spellscript", lua_interface->GetScriptName(state));
  7017. return 0;
  7018. }
  7019. if (spawn) {
  7020. if (!spawn->IsEntity()) {
  7021. lua_interface->LogError("%s: LUA RemoveImmunitySpell command error: The spawn provided is not an entity", lua_interface->GetScriptName(state));
  7022. return 0;
  7023. }
  7024. Entity* entity = ((Entity*)spawn);
  7025. switch (type) {
  7026. case IMMUNITY_TYPE_AOE:
  7027. entity->RemoveAOEImmunity(spell);
  7028. break;
  7029. case IMMUNITY_TYPE_STUN:
  7030. entity->RemoveStunImmunity(spell);
  7031. break;
  7032. case IMMUNITY_TYPE_ROOT:
  7033. entity->RemoveRootImmunity(spell);
  7034. break;
  7035. case IMMUNITY_TYPE_DAZE:
  7036. entity->RemoveDazeImmunity(spell);
  7037. break;
  7038. case IMMUNITY_TYPE_FEAR:
  7039. entity->RemoveFearImmunity(spell);
  7040. break;
  7041. case IMMUNITY_TYPE_MEZ:
  7042. entity->RemoveMezImmunity(spell);
  7043. break;
  7044. case IMMUNITY_TYPE_STIFLE:
  7045. entity->RemoveStifleImmunity(spell);
  7046. break;
  7047. default:
  7048. lua_interface->LogError("%s: LUA RemoveImmunitySpell command error: invalid immunity type", lua_interface->GetScriptName(state));
  7049. }
  7050. }
  7051. else {
  7052. bool should_break = false;
  7053. spell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  7054. for (int8 i = 0; i < spell->targets.size(); i++) {
  7055. spawn = spell->caster->GetZone()->GetSpawnByID(spell->targets.at(i));
  7056. if (!spawn || !spawn->IsEntity())
  7057. continue;
  7058. Entity* entity = ((Entity*)spawn);
  7059. switch (type) {
  7060. case IMMUNITY_TYPE_AOE:
  7061. entity->RemoveAOEImmunity(spell);
  7062. break;
  7063. case IMMUNITY_TYPE_STUN:
  7064. entity->RemoveStunImmunity(spell);
  7065. break;
  7066. case IMMUNITY_TYPE_ROOT:
  7067. entity->RemoveRootImmunity(spell);
  7068. break;
  7069. case IMMUNITY_TYPE_DAZE:
  7070. entity->RemoveDazeImmunity(spell);
  7071. break;
  7072. case IMMUNITY_TYPE_FEAR:
  7073. entity->RemoveFearImmunity(spell);
  7074. break;
  7075. case IMMUNITY_TYPE_MEZ:
  7076. entity->RemoveMezImmunity(spell);
  7077. break;
  7078. case IMMUNITY_TYPE_STIFLE:
  7079. entity->RemoveStifleImmunity(spell);
  7080. break;
  7081. default:
  7082. lua_interface->LogError("%s: LUA RemoveImmunitySpell command error: invalid immunity type", lua_interface->GetScriptName(state));
  7083. should_break = true;
  7084. }
  7085. if (should_break)
  7086. break;
  7087. }
  7088. spell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  7089. }
  7090. return 0;
  7091. }
  7092. int EQ2Emu_lua_SetSpellSnareValue(lua_State* state) {
  7093. if (!lua_interface)
  7094. return 0;
  7095. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  7096. if (!spell) {
  7097. lua_interface->LogError("%s: LUA SetSpellSnareValue command error: This can only be used in a spell script!", lua_interface->GetScriptName(state));
  7098. return 0;
  7099. }
  7100. float snare = lua_interface->GetFloatValue(state);
  7101. Spawn* spawn = lua_interface->GetSpawn(state, 2);
  7102. // convert the val to the speed multipler value (100 - val)
  7103. float val = 100.0 - snare;
  7104. val /= 100.0;
  7105. if (spawn) {
  7106. if (!spawn->IsEntity()) {
  7107. lua_interface->LogError("%s: LUA SetSpellSnareValue command error: spawn must be an entity.", lua_interface->GetScriptName(state));
  7108. return 0;
  7109. }
  7110. ((Entity*)spawn)->SetSnareValue(spell, val);
  7111. }
  7112. else {
  7113. spell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  7114. for (int8 i = 0; i < spell->targets.size(); i++) {
  7115. spawn = spell->caster->GetZone()->GetSpawnByID(spell->targets.at(i));
  7116. if (!spawn || !spawn->IsEntity())
  7117. continue;
  7118. ((Entity*)spawn)->SetSnareValue(spell, val);
  7119. }
  7120. spell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  7121. }
  7122. return 0;
  7123. }
  7124. int EQ2Emu_lua_CheckRaceType(lua_State* state) {
  7125. if (!lua_interface)
  7126. return 0;
  7127. Spawn* spawn = lua_interface->GetSpawn(state);
  7128. int16 race_id = lua_interface->GetInt16Value(state, 2);
  7129. if (!spawn) {
  7130. lua_interface->LogError("%s: LUA CheckRaceType command error: spawn is not valid", lua_interface->GetScriptName(state));
  7131. return 0;
  7132. }
  7133. if (race_id == 0) {
  7134. lua_interface->LogError("%s: LUA CheckRaceType command error: race id must be set", lua_interface->GetScriptName(state));
  7135. return 0;
  7136. }
  7137. lua_interface->SetBooleanValue(state, (race_id == race_types_list.GetRaceType(spawn->GetModelType()) || race_id == race_types_list.GetRaceBaseType(spawn->GetModelType())));
  7138. return 1;
  7139. }
  7140. int EQ2Emu_lua_GetRaceType(lua_State* state) {
  7141. if (!lua_interface)
  7142. return 0;
  7143. Spawn* spawn = lua_interface->GetSpawn(state);
  7144. if (!spawn) {
  7145. lua_interface->LogError("%s: LUA GetRaceType command error: spawn is not valid", lua_interface->GetScriptName(state));
  7146. return 0;
  7147. }
  7148. lua_interface->SetInt32Value(state, race_types_list.GetRaceType(spawn->GetModelType()));
  7149. return 1;
  7150. }
  7151. int EQ2Emu_lua_GetRaceBaseType(lua_State* state) {
  7152. if (!lua_interface)
  7153. return 0;
  7154. Spawn* spawn = lua_interface->GetSpawn(state);
  7155. if (!spawn) {
  7156. lua_interface->LogError("%s: LUA GetRaceBaseType command error: spawn is not valid", lua_interface->GetScriptName(state));
  7157. return 0;
  7158. }
  7159. lua_interface->SetInt32Value(state, race_types_list.GetRaceBaseType(spawn->GetModelType()));
  7160. return 1;
  7161. }
  7162. int EQ2Emu_lua_GetSpellName(lua_State* state) {
  7163. if (!lua_interface)
  7164. return 0;
  7165. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  7166. if (!spell) {
  7167. lua_interface->LogError("%s: LUA GetSpellName command error: this function must be used from a spell script!", lua_interface->GetScriptName(state));
  7168. return 0;
  7169. }
  7170. lua_interface->SetStringValue(state, spell->spell->GetName());
  7171. return 1;
  7172. }
  7173. int EQ2Emu_lua_GetQuestFlags(lua_State* state) {
  7174. if (!lua_interface)
  7175. return 0;
  7176. Quest* quest = lua_interface->GetQuest(state);
  7177. if (!quest) {
  7178. lua_interface->LogError("%s: LUA GetQuestFlags command error: quest is not valid.", lua_interface->GetScriptName(state));
  7179. return 0;
  7180. }
  7181. lua_interface->SetInt32Value(state, quest->GetQuestFlags());
  7182. return 1;
  7183. }
  7184. int EQ2Emu_lua_SetQuestFlags(lua_State* state) {
  7185. if (!lua_interface)
  7186. return 0;
  7187. Quest* quest = lua_interface->GetQuest(state);
  7188. int32 flags = lua_interface->GetInt32Value(state, 2);
  7189. if (!quest) {
  7190. lua_interface->LogError("%s: LUA SetQuestFlags command error: quest is not valid.", lua_interface->GetScriptName(state));
  7191. return 0;
  7192. }
  7193. quest->SetQuestFlags(flags);
  7194. return 0;
  7195. }
  7196. int EQ2Emu_lua_SetQuestTimer(lua_State* state) {
  7197. if (!lua_interface)
  7198. return 0;
  7199. Quest* quest = lua_interface->GetQuest(state);
  7200. Spawn* player = lua_interface->GetSpawn(state, 2);
  7201. int32 step = lua_interface->GetInt32Value(state, 3);
  7202. int32 duration = lua_interface->GetInt32Value(state, 4);
  7203. string action = lua_interface->GetStringValue(state, 5);
  7204. if (!quest) {
  7205. lua_interface->LogError("%s: LUA SetQuestTimer command error: quest is not valid.", lua_interface->GetScriptName(state));
  7206. return 0;
  7207. }
  7208. if (!player) {
  7209. lua_interface->LogError("%s: LUA SetQuestTimer command error: player is not a valid spawn.", lua_interface->GetScriptName(state));
  7210. return 0;
  7211. }
  7212. if (!player->IsPlayer()) {
  7213. lua_interface->LogError("%s: LUA SetQuestTimer command error: player is not a valid player.", lua_interface->GetScriptName(state));
  7214. return 0;
  7215. }
  7216. if (step == 0) {
  7217. lua_interface->LogError("%s: LUA SetQuestTimer command error: step must be set.", lua_interface->GetScriptName(state));
  7218. return 0;
  7219. }
  7220. if (duration == 0) {
  7221. lua_interface->LogError("%s: LUA SetQuestTimer command error: duration must be set.", lua_interface->GetScriptName(state));
  7222. return 0;
  7223. }
  7224. if (action.length() == 0) {
  7225. lua_interface->LogError("%s: LUA SetQuestTimer command error: failed action must be set.", lua_interface->GetScriptName(state));
  7226. return 0;
  7227. }
  7228. Client* client = player->GetZone()->GetClientBySpawn(player);
  7229. if (!client) {
  7230. lua_interface->LogError("%s: LUA SetQuestTimer command error: failed to get a valid client pointer for the given player", lua_interface->GetScriptName(state));
  7231. return 0;
  7232. }
  7233. quest->SetTimerStep(step);
  7234. quest->AddFailedAction(step, action);
  7235. quest->SetStepTimer(duration);
  7236. client->AddQuestTimer(quest->GetQuestID());
  7237. return 0;
  7238. }
  7239. int EQ2Emu_lua_SetQuestTimerComplete(lua_State* state) {
  7240. if (!lua_interface)
  7241. return 0;
  7242. Quest* quest = lua_interface->GetQuest(state);
  7243. Spawn* player = lua_interface->GetSpawn(state, 2);
  7244. if (!quest) {
  7245. lua_interface->LogError("%s: LUA SetQuestTimerComplete command error: quest is not valid.", lua_interface->GetScriptName(state));
  7246. return 0;
  7247. }
  7248. if (!player) {
  7249. lua_interface->LogError("%s: LUA SetQuestTimerComplete command error: player is not a valid spawn.", lua_interface->GetScriptName(state));
  7250. return 0;
  7251. }
  7252. if (!player->IsPlayer()) {
  7253. lua_interface->LogError("%s: LUA SetQuestTimerComplete command error: player is not a valid player.", lua_interface->GetScriptName(state));
  7254. return 0;
  7255. }
  7256. Client* client = player->GetZone()->GetClientBySpawn(player);
  7257. if (!client) {
  7258. lua_interface->LogError("%s: LUA SetQuestTimerComplete command error: failed to get a valid client pointer for the given player", lua_interface->GetScriptName(state));
  7259. return 0;
  7260. }
  7261. quest->SetTimerStep(0);
  7262. quest->SetStepTimer(0);
  7263. client->RemoveQuestTimer(quest->GetQuestID());
  7264. return 0;
  7265. }
  7266. int EQ2Emu_lua_RemoveQuestStep(lua_State* state) {
  7267. if (!lua_interface)
  7268. return 0;
  7269. Spawn* player = lua_interface->GetSpawn(state);
  7270. Quest* quest = lua_interface->GetQuest(state, 2);
  7271. int32 step = lua_interface->GetInt32Value(state, 3);
  7272. if (!player) {
  7273. lua_interface->LogError("%s: LUA RemoveQuestStep command error: player is not a valid spawn.", lua_interface->GetScriptName(state));
  7274. return 0;
  7275. }
  7276. if (!player->IsPlayer()) {
  7277. lua_interface->LogError("%s: LUA RemoveQuestStep command error: player is not a valid player.", lua_interface->GetScriptName(state));
  7278. return 0;
  7279. }
  7280. if (!quest) {
  7281. lua_interface->LogError("%s: LUA RemoveQuestStep command error: quest is not valid.", lua_interface->GetScriptName(state));
  7282. return 0;
  7283. }
  7284. if (step == 0) {
  7285. lua_interface->LogError("%s: LUA RemoveQuestStep command error: step must be set.", lua_interface->GetScriptName(state));
  7286. return 0;
  7287. }
  7288. Client* client = player->GetZone()->GetClientBySpawn(player);
  7289. if (!client) {
  7290. lua_interface->LogError("%s: LUA RemoveQuestStep command error: unable to get a valid client pointer from the given player.", lua_interface->GetScriptName(state));
  7291. return 0;
  7292. }
  7293. if (quest->RemoveQuestStep(step, client)) {
  7294. client->QueuePacket(quest->QuestJournalReply(client->GetVersion(), client->GetNameCRC(), (Player*)player, 0, 0, 0, true));
  7295. client->GetCurrentZone()->SendQuestUpdates(client);
  7296. }
  7297. else
  7298. lua_interface->LogError("LUA RemoveQuestStep command error: unable to remove the step (%u) from the quest (%s).", step, quest->GetName());
  7299. return 0;
  7300. }
  7301. int EQ2Emu_lua_ResetQuestStep(lua_State* state) {
  7302. if (!lua_interface)
  7303. return 0;
  7304. Quest* quest = lua_interface->GetQuest(state, 1);
  7305. int32 step = lua_interface->GetInt32Value(state, 2);
  7306. string desc = lua_interface->GetStringValue(state, 3);
  7307. string task_group = lua_interface->GetStringValue(state, 4);
  7308. if (!quest) {
  7309. lua_interface->LogError("%s: LUA ResetQuestStep command error: quest is not valid.", lua_interface->GetScriptName(state));
  7310. return 0;
  7311. }
  7312. if (step == 0) {
  7313. lua_interface->LogError("%s: LUA ResetQuestStep command error: step must be set.", lua_interface->GetScriptName(state));
  7314. return 0;
  7315. }
  7316. QuestStep* quest_step = quest->GetQuestStep(step);
  7317. if (!quest_step) {
  7318. lua_interface->LogError("%s: LUA ResetQuestStep command error: unable to get a valid quest step.", lua_interface->GetScriptName(state));
  7319. return 0;
  7320. }
  7321. quest_step->SetStepProgress(0);
  7322. quest_step->SetTaskGroup(task_group);
  7323. quest_step->SetDescription(desc);
  7324. return 0;
  7325. }
  7326. int EQ2Emu_lua_AddQuestStepFailureAction(lua_State* state) {
  7327. if (!lua_interface)
  7328. return 0;
  7329. Quest* quest = lua_interface->GetQuest(state);
  7330. int32 step = lua_interface->GetInt32Value(state, 2);
  7331. string action = lua_interface->GetStringValue(state, 3);
  7332. if (!quest) {
  7333. lua_interface->LogError("%s: LUA AddQuestStepFailureAction command error: quest is not valid.", lua_interface->GetScriptName(state));
  7334. return 0;
  7335. }
  7336. if (step == 0) {
  7337. lua_interface->LogError("%s: LUA AddQuestStepFailureAction command error: step must be set.", lua_interface->GetScriptName(state));
  7338. return 0;
  7339. }
  7340. if (action.length() == 0) {
  7341. lua_interface->LogError("%s: LUA AddQuestStepFailureAction command error: action must be set.", lua_interface->GetScriptName(state));
  7342. return 0;
  7343. }
  7344. quest->AddFailedAction(step, action);
  7345. return 0;
  7346. }
  7347. int EQ2Emu_lua_SetStepFailed(lua_State* state) {
  7348. if (!lua_interface)
  7349. return 0;
  7350. Spawn* player = lua_interface->GetSpawn(state);
  7351. int32 quest_id = lua_interface->GetInt32Value(state, 2);
  7352. int32 step = lua_interface->GetInt32Value(state, 3);
  7353. if (!player) {
  7354. lua_interface->LogError("%s: LUA SetStepFailed command error: player is not a valid spawn.", lua_interface->GetScriptName(state));
  7355. return 0;
  7356. }
  7357. if (!player->IsPlayer()) {
  7358. lua_interface->LogError("%s: LUA SetStepFailed command error: player is not a valid player.", lua_interface->GetScriptName(state));
  7359. return 0;
  7360. }
  7361. if (quest_id == 0) {
  7362. lua_interface->LogError("%s: LUA SetStepFailed command error: quest_id must be set.", lua_interface->GetScriptName(state));
  7363. return 0;
  7364. }
  7365. if (step == 0) {
  7366. lua_interface->LogError("%s: LUA SetStepFailed command error: step must be set.", lua_interface->GetScriptName(state));
  7367. return 0;
  7368. }
  7369. Quest* quest = ((Player*)player)->GetQuest(quest_id);
  7370. if (!quest) {
  7371. lua_interface->LogError("LUA SetStepFailed command error: unable to get a valid quest from the given id (%u).", quest_id);
  7372. return 0;
  7373. }
  7374. quest->StepFailed(step);
  7375. return 0;
  7376. }
  7377. int EQ2Emu_lua_GetQuestCompleteCount(lua_State* state) {
  7378. if (!lua_interface)
  7379. return 0;
  7380. Spawn* player = lua_interface->GetSpawn(state);
  7381. int32 quest_id = lua_interface->GetInt32Value(state, 2);
  7382. if (!player) {
  7383. lua_interface->LogError("%s: LUA GetQuestCompleteCount command error: player is not a valid spawn", lua_interface->GetScriptName(state));
  7384. return 0;
  7385. }
  7386. if (!player->IsPlayer()) {
  7387. lua_interface->LogError("%s: LUA GetQuestCompleteCount command error: player is not a valid player", lua_interface->GetScriptName(state));
  7388. return 0;
  7389. }
  7390. if (quest_id == 0) {
  7391. lua_interface->LogError("%s: LUA GetQuestCompleteCount command error: quest id is not valid", lua_interface->GetScriptName(state));
  7392. return 0;
  7393. }
  7394. Quest* quest = ((Player*)player)->GetCompletedQuest(quest_id);
  7395. if (!quest) {
  7396. lua_interface->SetInt32Value(state, 0);
  7397. return 1;
  7398. }
  7399. lua_interface->SetInt32Value(state, quest->GetCompleteCount());
  7400. return 1;
  7401. }
  7402. int EQ2Emu_lua_SetServerVariable(lua_State* state) {
  7403. if (!lua_interface)
  7404. return 0;
  7405. string name = lua_interface->GetStringValue(state);
  7406. string value = lua_interface->GetStringValue(state, 2);
  7407. string comment = lua_interface->GetStringValue(state, 3);
  7408. if (name.length() == 0) {
  7409. lua_interface->LogError("%s: LUA SetServerVariable command error: name is not valid", lua_interface->GetScriptName(state));
  7410. return 0;
  7411. }
  7412. if (value.length() == 0) {
  7413. lua_interface->LogError("%s: LUA SetServerVariable command error: value is not valid", lua_interface->GetScriptName(state));
  7414. return 0;
  7415. }
  7416. string varname = string("lua_").append(name);
  7417. Variable* var = variables.FindVariable(varname);
  7418. if (var)
  7419. var->SetValue(value.c_str());
  7420. else {
  7421. var = new Variable(varname.c_str(), value.c_str(), comment.c_str());
  7422. variables.AddVariable(var);
  7423. }
  7424. database.SaveVariable(var->GetName(), var->GetValue(), var->GetComment());
  7425. return 0;
  7426. }
  7427. int EQ2Emu_lua_GetServerVariable(lua_State* state) {
  7428. if (!lua_interface)
  7429. return 0;
  7430. string name = lua_interface->GetStringValue(state);
  7431. if (name.length() == 0) {
  7432. lua_interface->LogError("%s: LUA GetServerVariable command error: name is not valid", lua_interface->GetScriptName(state));
  7433. return 0;
  7434. }
  7435. string varname = string("lua_").append(name);
  7436. Variable* var = variables.FindVariable(varname);
  7437. if (var)
  7438. lua_interface->SetStringValue(state, var->GetValue());
  7439. else
  7440. lua_interface->SetStringValue(state, "NULL");
  7441. return 1;
  7442. }
  7443. int EQ2Emu_lua_HasLanguage(lua_State* state) {
  7444. if (!lua_interface)
  7445. return 0;
  7446. Spawn* player = lua_interface->GetSpawn(state);
  7447. int32 language_id = lua_interface->GetInt32Value(state, 2);
  7448. if (!player) {
  7449. lua_interface->LogError("%s: LUA HasLanguage command error: player is not valid", lua_interface->GetScriptName(state));
  7450. return 0;
  7451. }
  7452. if (!player->IsPlayer()) {
  7453. lua_interface->LogError("%s: LUA HasLanguage command error: player is not a valid player", lua_interface->GetScriptName(state));
  7454. return 0;
  7455. }
  7456. lua_interface->SetBooleanValue(state, ((Player*)player)->HasLanguage(language_id));
  7457. return 1;
  7458. }
  7459. int EQ2Emu_lua_AddLanguage(lua_State* state) {
  7460. if (!lua_interface)
  7461. return 0;
  7462. Spawn* player = lua_interface->GetSpawn(state);
  7463. int32 language_id = lua_interface->GetInt32Value(state, 2);
  7464. if (!player) {
  7465. lua_interface->LogError("%s: LUA AddLanguage command error: player is not valid", lua_interface->GetScriptName(state));
  7466. return 0;
  7467. }
  7468. if (!player->IsPlayer()) {
  7469. lua_interface->LogError("%s: LUA AddLanguage command error: player is not a valid player", lua_interface->GetScriptName(state));
  7470. return 0;
  7471. }
  7472. Language* language = master_languages_list.GetLanguage(language_id);
  7473. if (language)
  7474. ((Player*)player)->AddLanguage(language->GetID(), language->GetName(), true);
  7475. return 0;
  7476. }
  7477. int EQ2Emu_lua_IsNight(lua_State* state) {
  7478. if (!lua_interface)
  7479. return 0;
  7480. ZoneServer* zone = lua_interface->GetZone(state);
  7481. if (!zone) {
  7482. lua_interface->LogError("%s: LUA IsNight command error: zone is not valid", lua_interface->GetScriptName(state));
  7483. return 0;
  7484. }
  7485. lua_interface->SetBooleanValue(state, zone->IsDusk());
  7486. return 1;
  7487. }
  7488. int EQ2Emu_lua_AddMultiFloorLift(lua_State* state) {
  7489. if (!lua_interface)
  7490. return 0;
  7491. Spawn* spawn = lua_interface->GetSpawn(state);
  7492. if (!spawn) {
  7493. lua_interface->LogError("%s: LUA AddMultiFloorLift command error: spawn is not valid", lua_interface->GetScriptName(state));
  7494. return 0;
  7495. }
  7496. if (!spawn->IsWidget()) {
  7497. lua_interface->LogError("%s: LUA AddMultiFloorLift command error: spawn is not a widget", lua_interface->GetScriptName(state));
  7498. return 0;
  7499. }
  7500. ((Widget*)spawn)->SetMultiFloorLift(true);
  7501. if (spawn->GetZone())
  7502. spawn->GetZone()->AddTransportSpawn(spawn);
  7503. return 0;
  7504. }
  7505. int EQ2Emu_lua_StartAutoMount(lua_State* state) {
  7506. if (!lua_interface)
  7507. return 0;
  7508. Spawn* player = lua_interface->GetSpawn(state);
  7509. int32 path = lua_interface->GetInt32Value(state, 2);
  7510. if (!player) {
  7511. lua_interface->LogError("%s: LUA StartAutoMount command error: spawn is not valid", lua_interface->GetScriptName(state));
  7512. return 0;
  7513. }
  7514. if (!player->IsPlayer()) {
  7515. lua_interface->LogError("%s: LUA StartAutoMount command error: spawn is not a player", lua_interface->GetScriptName(state));
  7516. return 0;
  7517. }
  7518. if (path == 0) {
  7519. lua_interface->LogError("%s: LUA StartAutoMount command error: path must be greater then zero", lua_interface->GetScriptName(state));
  7520. return 0;
  7521. }
  7522. Client* client = player->GetZone()->GetClientBySpawn(player);
  7523. if (!client) {
  7524. lua_interface->LogError("%s: LUA StartAutoMount command error: unable to get a client from the given player", lua_interface->GetScriptName(state));
  7525. return 0;
  7526. }
  7527. client->SendFlightAutoMount(path);
  7528. return 0;
  7529. }
  7530. int EQ2Emu_lua_EndAutoMount(lua_State* state) {
  7531. if (!lua_interface)
  7532. return 0;
  7533. Spawn* player = lua_interface->GetSpawn(state);
  7534. if (!player) {
  7535. lua_interface->LogError("%s: LUA EndAutoMount command error: spawn is not valid", lua_interface->GetScriptName(state));
  7536. return 0;
  7537. }
  7538. if (!player->IsPlayer()) {
  7539. lua_interface->LogError("%s: LUA EndAutoMount command error: spawn is not a player", lua_interface->GetScriptName(state));
  7540. return 0;
  7541. }
  7542. Client* client = player->GetZone()->GetClientBySpawn(player);
  7543. if (!client) {
  7544. lua_interface->LogError("%s: LUA EndAutoMount command error: unable to get a client from the given player", lua_interface->GetScriptName(state));
  7545. return 0;
  7546. }
  7547. client->EndAutoMount();
  7548. return 0;
  7549. }
  7550. int EQ2Emu_lua_IsOnAutoMount(lua_State* state) {
  7551. if (!lua_interface)
  7552. return 0;
  7553. Spawn* player = lua_interface->GetSpawn(state);
  7554. if (!player) {
  7555. lua_interface->LogError("%s: LUA IsOnAutoMount command error: spawn in not valid", lua_interface->GetScriptName(state));
  7556. return 0;
  7557. }
  7558. if (!player->IsPlayer()) {
  7559. lua_interface->LogError("%s: LUA IsOnAutoMount command error: spawn is not a player", lua_interface->GetScriptName(state));
  7560. return 0;
  7561. }
  7562. Client* client = player->GetZone()->GetClientBySpawn(player);
  7563. if (!client) {
  7564. lua_interface->LogError("%s: LUA IsOnAutoMount command error: unable to get a client from the given player", lua_interface->GetScriptName(state));
  7565. return 0;
  7566. }
  7567. lua_interface->SetBooleanValue(state, client->GetOnAutoMount());
  7568. return 1;
  7569. }
  7570. int EQ2Emu_lua_SetPlayerHistory(lua_State* state) {
  7571. if (!lua_interface)
  7572. return 0;
  7573. Spawn* player = lua_interface->GetSpawn(state);
  7574. int32 event_id = lua_interface->GetInt32Value(state, 2);
  7575. int32 value = lua_interface->GetInt32Value(state, 3);
  7576. int32 value2 = lua_interface->GetInt32Value(state, 4);
  7577. if (!player) {
  7578. lua_interface->LogError("%s: LUA SetPlayerHistory command error: spawn is not valid", lua_interface->GetScriptName(state));
  7579. return 0;
  7580. }
  7581. if (!player->IsPlayer()) {
  7582. lua_interface->LogError("%s: LUA SetPlayerHistory command error: spawn is not a player", lua_interface->GetScriptName(state));
  7583. return 0;
  7584. }
  7585. ((Player*)player)->UpdateLUAHistory(event_id, value, value2);
  7586. return 0;
  7587. }
  7588. int EQ2Emu_lua_GetPlayerHistory(lua_State* state) {
  7589. if (!lua_interface)
  7590. return 0;
  7591. Spawn* player = lua_interface->GetSpawn(state);
  7592. int32 event_id = lua_interface->GetInt32Value(state, 2);
  7593. if (!player) {
  7594. lua_interface->LogError("%s: LUA GetPlayerHistory command error: spawn is not valid", lua_interface->GetScriptName(state));
  7595. return 0;
  7596. }
  7597. if (!player->IsPlayer()) {
  7598. lua_interface->LogError("%s: LUA GetPlayerHistory command error: spawn is not a player", lua_interface->GetScriptName(state));
  7599. return 0;
  7600. }
  7601. LUAHistory* hd = ((Player*)player)->GetLUAHistory(event_id);
  7602. if (!hd)
  7603. return 0;
  7604. lua_interface->SetInt32Value(state, hd->Value);
  7605. lua_interface->SetInt32Value(state, hd->Value2);
  7606. return 2;
  7607. }
  7608. int EQ2Emu_lua_SetGridID(lua_State* state) {
  7609. if (!lua_interface)
  7610. return 0;
  7611. Spawn* spawn = lua_interface->GetSpawn(state);
  7612. int32 grid = lua_interface->GetInt32Value(state, 2);
  7613. if (!spawn) {
  7614. lua_interface->LogError("%s: LUA SetGridID command error: spawn is not valid", lua_interface->GetScriptName(state));
  7615. return 0;
  7616. }
  7617. if (grid == 0) {
  7618. lua_interface->LogError("%s: LUA SetGridID command error: grid is not valid", lua_interface->GetScriptName(state));
  7619. return 0;
  7620. }
  7621. spawn->SetPos(&(spawn->appearance.pos.grid_id), grid);
  7622. return 0;
  7623. }
  7624. int EQ2Emu_lua_SetRequiredHistory(lua_State* state) {
  7625. if (!lua_interface)
  7626. return 0;
  7627. Spawn* spawn = lua_interface->GetSpawn(state);
  7628. int32 event_id = lua_interface->GetInt32Value(state, 2);
  7629. int32 value1 = lua_interface->GetInt32Value(state, 3);
  7630. int32 value2 = lua_interface->GetInt32Value(state, 4);
  7631. bool private_spawn = (lua_interface->GetInt8Value(state, 5) == 1);
  7632. int16 flag_override = lua_interface->GetInt16Value(state, 6);
  7633. if (!spawn) {
  7634. lua_interface->LogError("%s: LUA SetRequiredHistory command error: spawn is not valid", lua_interface->GetScriptName(state));
  7635. return 0;
  7636. }
  7637. //Add this quest to the list of required quests for this spawn
  7638. spawn->SetRequiredHistory(event_id, value1, value2);
  7639. //If private spawn value set
  7640. if (private_spawn) {
  7641. //Set the spawn to be private when not granted access via history
  7642. spawn->AddAllowAccessSpawn(spawn);
  7643. spawn->SetPrivateQuestSpawn(true);
  7644. }
  7645. //This value will override vis_flags in the vis packet
  7646. if (flag_override > 0)
  7647. spawn->SetQuestsRequiredOverride(flag_override);
  7648. return 0;
  7649. }
  7650. int EQ2Emu_lua_GetQuestStepProgress(lua_State* state) {
  7651. if (!lua_interface)
  7652. return 0;
  7653. Spawn* player = lua_interface->GetSpawn(state);
  7654. int32 quest_id = lua_interface->GetInt32Value(state, 2);
  7655. int32 step_id = lua_interface->GetInt32Value(state, 3);
  7656. if (!player) {
  7657. lua_interface->LogError("%s: LUA GetQuestStepProgress command error: spawn is not valid", lua_interface->GetScriptName(state));
  7658. return 0;
  7659. }
  7660. if (!player->IsPlayer()) {
  7661. lua_interface->LogError("%s: LUA GetQuestStepProgress command error: spawn is not a player", lua_interface->GetScriptName(state));
  7662. return 0;
  7663. }
  7664. lua_interface->SetInt32Value(state, ((Player*)player)->GetStepProgress(quest_id, step_id));
  7665. return 1;
  7666. }
  7667. int EQ2Emu_lua_SetPlayerLevel(lua_State* state) {
  7668. if (!lua_interface)
  7669. return 0;
  7670. Spawn* player = lua_interface->GetSpawn(state);
  7671. int8 level = lua_interface->GetInt8Value(state, 2);
  7672. if (!player) {
  7673. lua_interface->LogError("%s: LUA SetPlayerLevel command error: spawn is not valid", lua_interface->GetScriptName(state));
  7674. return 0;
  7675. }
  7676. if (!player->IsPlayer()) {
  7677. lua_interface->LogError("%s: LUA SetPlayerLevel command error: spawn is not a player", lua_interface->GetScriptName(state));
  7678. return 0;
  7679. }
  7680. if (level == 0) {
  7681. lua_interface->LogError("%s: LUA SetPlayerLevel command error: new level can't be 0", lua_interface->GetScriptName(state));
  7682. return 0;
  7683. }
  7684. Client* client = player->GetZone()->GetClientBySpawn(player);
  7685. if (!client) {
  7686. lua_interface->LogError("%s: LUA SetPlayerLevel command error: unable to get a client from the given spawn", lua_interface->GetScriptName(state));
  7687. return 0;
  7688. }
  7689. client->ChangeLevel(client->GetPlayer()->GetLevel(), level);
  7690. client->GetPlayer()->SetXP(1);
  7691. client->GetPlayer()->SetNeededXP();
  7692. return 0;
  7693. }
  7694. int EQ2Emu_lua_AddCoin(lua_State* state) {
  7695. if (!lua_interface)
  7696. return 0;
  7697. Spawn* player = lua_interface->GetSpawn(state);
  7698. int32 amount = lua_interface->GetInt32Value(state, 2);
  7699. if (!player) {
  7700. lua_interface->LogError("%s: LUA AddCoin command error: spawn is not valid", lua_interface->GetScriptName(state));
  7701. return 0;
  7702. }
  7703. if (!player->IsPlayer()) {
  7704. lua_interface->LogError("%s: LUA AddCoin command error: spawn is not a player", lua_interface->GetScriptName(state));
  7705. return 0;
  7706. }
  7707. if (amount == 0) {
  7708. lua_interface->LogError("%s: LUA AddCoin command error: amount must be greater then 0", lua_interface->GetScriptName(state));
  7709. return 0;
  7710. }
  7711. ((Player*)player)->AddCoins(amount);
  7712. return 0;
  7713. }
  7714. int EQ2Emu_lua_RemoveCoin(lua_State* state) {
  7715. if (!lua_interface)
  7716. return 0;
  7717. Spawn* player = lua_interface->GetSpawn(state);
  7718. int32 amount = lua_interface->GetInt32Value(state, 2);
  7719. if (!player) {
  7720. lua_interface->LogError("%s: LUA RemoveCoin command error: spawn is not valid", lua_interface->GetScriptName(state));
  7721. return 0;
  7722. }
  7723. if (!player->IsPlayer()) {
  7724. lua_interface->LogError("%s: LUA RemoveCoin command error: spawn is not a player", lua_interface->GetScriptName(state));
  7725. return 0;
  7726. }
  7727. if (amount == 0) {
  7728. lua_interface->LogError("%s: LUA RemoveCoin command error: amount must be greater then 0", lua_interface->GetScriptName(state));
  7729. return 0;
  7730. }
  7731. lua_interface->SetBooleanValue(state, ((Player*)player)->RemoveCoins(amount));
  7732. return 1;
  7733. }
  7734. int EQ2Emu_lua_GetPlayersInZone(lua_State* state) {
  7735. if (!lua_interface)
  7736. return 0;
  7737. ZoneServer* zone = lua_interface->GetZone(state);
  7738. if (!zone) {
  7739. lua_interface->LogError("%s: LUA GetPlayersInZone command error: zone is not valid", lua_interface->GetScriptName(state));
  7740. return 0;
  7741. }
  7742. vector<Entity*> players = zone->GetPlayers();
  7743. if (players.size() == 0)
  7744. return 0;
  7745. lua_createtable(state, players.size(), 0);
  7746. int newTable = lua_gettop(state);
  7747. for (int32 i = 0; i < players.size(); i++) {
  7748. lua_interface->SetSpawnValue(state, players.at(i));
  7749. lua_rawseti(state, newTable, i + 1);
  7750. }
  7751. return 1;
  7752. }
  7753. int EQ2Emu_lua_SpawnGroupByID(lua_State* state) {
  7754. if (!lua_interface)
  7755. return 0;
  7756. ZoneServer* zone = lua_interface->GetZone(state, 1);
  7757. if (!zone) {
  7758. lua_interface->LogError("%s: LUA GetPlayersInZone command error: zone is not valid", lua_interface->GetScriptName(state));
  7759. return 0;
  7760. }
  7761. int32 group_id = lua_interface->GetInt32Value(state, 2);
  7762. //Map of <placement_id, location_id>
  7763. map<int32, int32>* locs = zone->GetSpawnLocationsByGroup(group_id);
  7764. map<int32, int32>::iterator itr;
  7765. vector<Spawn*> group;
  7766. for (itr = locs->begin(); itr != locs->end(); itr++) {
  7767. SpawnLocation* location = zone->GetSpawnLocation(itr->second);
  7768. if (!location) {
  7769. lua_interface->LogError("LUA SpawnByLocationID command error: no location found for the given ID (%u)", itr->second);
  7770. return 0;
  7771. }
  7772. Spawn* spawn = 0;
  7773. if (location->entities[0]) {
  7774. if (location->entities[0]->spawn_type == SPAWN_ENTRY_TYPE_NPC)
  7775. spawn = zone->AddNPCSpawn(location, location->entities[0]);
  7776. else if (location->entities[0]->spawn_type == SPAWN_ENTRY_TYPE_GROUNDSPAWN)
  7777. spawn = zone->AddGroundSpawn(location, location->entities[0]);
  7778. else if (location->entities[0]->spawn_type == SPAWN_ENTRY_TYPE_OBJECT)
  7779. spawn = zone->AddObjectSpawn(location, location->entities[0]);
  7780. else if (location->entities[0]->spawn_type == SPAWN_ENTRY_TYPE_WIDGET)
  7781. spawn = zone->AddWidgetSpawn(location, location->entities[0]);
  7782. else if (location->entities[0]->spawn_type == SPAWN_ENTRY_TYPE_SIGN)
  7783. spawn = zone->AddSignSpawn(location, location->entities[0]);
  7784. if (spawn) {
  7785. const char* script = 0;
  7786. for (int x = 0; x < 3; x++) {
  7787. switch (x) {
  7788. case 0:
  7789. script = world.GetSpawnEntryScript(location->entities[0]->spawn_entry_id);
  7790. break;
  7791. case 1:
  7792. script = world.GetSpawnLocationScript(location->entities[0]->spawn_location_id);
  7793. break;
  7794. case 2:
  7795. script = world.GetSpawnScript(location->entities[0]->spawn_id);
  7796. break;
  7797. }
  7798. if (script && lua_interface->GetSpawnScript(script) != 0) {
  7799. spawn->SetSpawnScript(string(script));
  7800. break;
  7801. }
  7802. }
  7803. zone->CallSpawnScript(spawn, SPAWN_SCRIPT_SPAWN);
  7804. lua_interface->SetSpawnValue(state, spawn);
  7805. group.push_back(spawn);
  7806. }
  7807. else {
  7808. LogWrite(ZONE__ERROR, 0, "Zone", "Error adding spawn to zone");
  7809. safe_delete(spawn);
  7810. }
  7811. }
  7812. }
  7813. if (!group.empty()) {
  7814. lua_createtable(state, group.size(), 0);
  7815. int newTable = lua_gettop(state);
  7816. for (int32 i = 0; i < group.size(); i++) {
  7817. lua_interface->SetSpawnValue(state, group[i]);
  7818. lua_rawseti(state, newTable, i + 1);
  7819. }
  7820. }
  7821. else
  7822. lua_pushnil(state);
  7823. return 1;
  7824. }
  7825. int EQ2Emu_lua_SetSpawnAnimation(lua_State* state) {
  7826. if (!lua_interface)
  7827. return 0;
  7828. Spawn* spawn = lua_interface->GetSpawn(state, 1);
  7829. int32 anim_id = lua_interface->GetInt32Value(state, 2);
  7830. int16 leeway = lua_interface->GetInt16Value(state, 3);
  7831. if (!spawn) {
  7832. lua_interface->LogError("%s: LUA SetSpawnAnimation command error: spawn is not valid", lua_interface->GetScriptName(state));
  7833. return 0;
  7834. }
  7835. if (anim_id == 0) {
  7836. lua_interface->LogError("%s: LUA SetSpawnAnimation command error: anim_id is not valid", lua_interface->GetScriptName(state));
  7837. return 0;
  7838. }
  7839. if (leeway == 0)
  7840. leeway = 5000;
  7841. spawn->SetSpawnAnim(anim_id);
  7842. spawn->SetSpawnAnimLeeway(leeway);
  7843. return 0;
  7844. }
  7845. int EQ2Emu_lua_GetClientVersion(lua_State* state) {
  7846. if (!lua_interface)
  7847. return 0;
  7848. Spawn* player = lua_interface->GetSpawn(state);
  7849. if (!player) {
  7850. return 0;
  7851. }
  7852. Client* client = player->GetZone()->GetClientBySpawn(player);
  7853. if (!client) {
  7854. return 0;
  7855. }
  7856. lua_interface->SetInt32Value(state, client->GetVersion());
  7857. return 1;
  7858. }
  7859. int EQ2Emu_lua_GetItemID(lua_State* state) {
  7860. if (!lua_interface)
  7861. return 0;
  7862. Item* item = lua_interface->GetItem(state);
  7863. if (!item) {
  7864. lua_interface->LogError("%s: LUA GetItemID command error: item is not valid", lua_interface->GetScriptName(state));
  7865. return 0;
  7866. }
  7867. lua_interface->SetInt32Value(state, item->details.item_id);
  7868. return 1;
  7869. }
  7870. int EQ2Emu_lua_IsEntity(lua_State* state) {
  7871. if (!lua_interface)
  7872. return 0;
  7873. Spawn* spawn = lua_interface->GetSpawn(state);
  7874. if (!spawn) {
  7875. lua_interface->LogError("%s: LUA IsEntity command error: spawn is not valid", lua_interface->GetScriptName(state));
  7876. return 0;
  7877. }
  7878. lua_interface->SetBooleanValue(state, spawn->IsEntity());
  7879. return 1;
  7880. }
  7881. int EQ2Emu_lua_GetOrigX(lua_State* state) {
  7882. if (!lua_interface)
  7883. return 0;
  7884. Spawn* spawn = lua_interface->GetSpawn(state);
  7885. if (!spawn) {
  7886. lua_interface->LogError("%s: LUA GetOrigX command error: spawn is not valid", lua_interface->GetScriptName(state));
  7887. return 0;
  7888. }
  7889. lua_interface->SetFloatValue(state, spawn->GetSpawnOrigX());
  7890. return 1;
  7891. }
  7892. int EQ2Emu_lua_GetOrigY(lua_State* state) {
  7893. if (!lua_interface)
  7894. return 0;
  7895. Spawn* spawn = lua_interface->GetSpawn(state);
  7896. if (!spawn) {
  7897. lua_interface->LogError("%s: LUA GetOrigY command error: spawn is not valid", lua_interface->GetScriptName(state));
  7898. return 0;
  7899. }
  7900. lua_interface->SetFloatValue(state, spawn->GetSpawnOrigY());
  7901. return 1;
  7902. }
  7903. int EQ2Emu_lua_GetOrigZ(lua_State* state) {
  7904. if (!lua_interface)
  7905. return 0;
  7906. Spawn* spawn = lua_interface->GetSpawn(state);
  7907. if (!spawn) {
  7908. lua_interface->LogError("%s: LUA GetOrigZ command error: spawn is not valid", lua_interface->GetScriptName(state));
  7909. return 0;
  7910. }
  7911. lua_interface->SetFloatValue(state, spawn->GetSpawnOrigZ());
  7912. return 1;
  7913. }
  7914. int EQ2Emu_lua_GetPCTOfHP(lua_State* state) {
  7915. if (!lua_interface)
  7916. return 0;
  7917. Spawn* spawn = lua_interface->GetSpawn(state);
  7918. float pct = lua_interface->GetFloatValue(state, 2);
  7919. if (!spawn) {
  7920. lua_interface->LogError("%s: LUA GetPCTOfHP command error: spawn is not valid", lua_interface->GetScriptName(state));
  7921. return 0;
  7922. }
  7923. if (pct == 0) {
  7924. lua_interface->LogError("%s: LUA GetPCTOfHP command error: pct is not valid", lua_interface->GetScriptName(state));
  7925. return 0;
  7926. }
  7927. int32 amount = std::round(spawn->GetTotalHP() * (pct / 100));
  7928. lua_interface->SetInt32Value(state, amount);
  7929. return 1;
  7930. }
  7931. int EQ2Emu_lua_GetPCTOfPower(lua_State* state) {
  7932. if (!lua_interface)
  7933. return 0;
  7934. Spawn* spawn = lua_interface->GetSpawn(state);
  7935. float pct = lua_interface->GetFloatValue(state, 2);
  7936. if (!spawn) {
  7937. lua_interface->LogError("%s: LUA GetPCTOfPower command error: spawn is not valid", lua_interface->GetScriptName(state));
  7938. return 0;
  7939. }
  7940. if (pct == 0) {
  7941. lua_interface->LogError("%s: LUA GetPCTOfPower command error: pct is not valid", lua_interface->GetScriptName(state));
  7942. return 0;
  7943. }
  7944. int32 amount = std::round(spawn->GetTotalPower() * (pct / 100));
  7945. lua_interface->SetInt32Value(state, amount);
  7946. return 1;
  7947. }
  7948. int EQ2Emu_lua_GetBoundZoneID(lua_State* state) {
  7949. if (!lua_interface)
  7950. return 0;
  7951. Spawn* spawn = lua_interface->GetSpawn(state);
  7952. if (!spawn) {
  7953. lua_interface->LogError("%s: LUA GetBoundZoneID command error: spawn is not valid", lua_interface->GetScriptName(state));
  7954. return 0;
  7955. }
  7956. if (!spawn->IsPlayer()) {
  7957. lua_interface->LogError("%s: LUA GetBoundZoneID command error: spawn is not a player", lua_interface->GetScriptName(state));
  7958. return 0;
  7959. }
  7960. lua_interface->SetInt32Value(state, ((Player*)spawn)->GetPlayerInfo()->GetBindZoneID());
  7961. return 1;
  7962. }
  7963. int EQ2Emu_lua_Evac(lua_State* state) {
  7964. if (!lua_interface)
  7965. return 0;
  7966. Spawn* target = lua_interface->GetSpawn(state);
  7967. if (target) {
  7968. float x = target->GetZone()->GetSafeX();
  7969. float y = target->GetZone()->GetSafeY();
  7970. float z = target->GetZone()->GetSafeZ();
  7971. float h = target->GetZone()->GetSafeHeading();
  7972. target->SetX(x);
  7973. target->SetY(y);
  7974. target->SetZ(z);
  7975. target->SetHeading(h);
  7976. target->SetSpawnOrigX(target->GetX());
  7977. target->SetSpawnOrigY(target->GetY());
  7978. target->SetSpawnOrigZ(target->GetZ());
  7979. target->SetSpawnOrigHeading(target->GetHeading());
  7980. if (target->IsPlayer()) {
  7981. Client* client = target->GetZone()->GetClientBySpawn(target);
  7982. if (client) {
  7983. PacketStruct* packet = configReader.getStruct("WS_TeleportWithinZone", client->GetVersion());
  7984. if (packet)
  7985. {
  7986. packet->setDataByName("x", x);
  7987. packet->setDataByName("y", y);
  7988. packet->setDataByName("z", z);
  7989. client->QueuePacket(packet->serialize());
  7990. safe_delete(packet);
  7991. }
  7992. }
  7993. }
  7994. }
  7995. else {
  7996. LuaSpell* spell = lua_interface->GetCurrentSpell(state);
  7997. ZoneServer* zone = spell->caster->GetZone();
  7998. float x = spell->caster->GetZone()->GetSafeX();
  7999. float y = spell->caster->GetZone()->GetSafeY();
  8000. float z = spell->caster->GetZone()->GetSafeZ();
  8001. float h = spell->caster->GetZone()->GetSafeHeading();
  8002. spell->MSpellTargets.readlock(__FUNCTION__, __LINE__);
  8003. for (int32 i = 0; i < spell->targets.size(); i++) {
  8004. Spawn* target2 = zone->GetSpawnByID(spell->targets.at(i));
  8005. if (!target2)
  8006. continue;
  8007. target2->SetX(x);
  8008. target2->SetY(y);
  8009. target2->SetZ(z);
  8010. target2->SetHeading(h);
  8011. target2->SetSpawnOrigX(target2->GetX());
  8012. target2->SetSpawnOrigY(target2->GetY());
  8013. target2->SetSpawnOrigZ(target2->GetZ());
  8014. target2->SetSpawnOrigHeading(target2->GetHeading());
  8015. if (target2->IsPlayer()) {
  8016. Client* client = target2->GetZone()->GetClientBySpawn(target2);
  8017. if (client) {
  8018. PacketStruct* packet = configReader.getStruct("WS_TeleportWithinZone", client->GetVersion());
  8019. if (packet)
  8020. {
  8021. packet->setDataByName("x", x);
  8022. packet->setDataByName("y", y);
  8023. packet->setDataByName("z", z);
  8024. client->QueuePacket(packet->serialize());
  8025. safe_delete(packet);
  8026. }
  8027. }
  8028. }
  8029. }
  8030. spell->MSpellTargets.releasereadlock(__FUNCTION__, __LINE__);
  8031. }
  8032. return 0;
  8033. }
  8034. int EQ2Emu_lua_GetSpellTier(lua_State* state) {
  8035. if (!lua_interface)
  8036. return 0;
  8037. LuaSpell* luaspell = lua_interface->GetCurrentSpell(state);
  8038. if (!luaspell) {
  8039. lua_interface->LogError("%s: LUA GetSpellTier command error: must be used in a spell script", lua_interface->GetScriptName(state));
  8040. return 0;
  8041. }
  8042. int8 tier = luaspell->spell->GetSpellTier();
  8043. lua_interface->SetInt32Value(state, tier);
  8044. return 1;
  8045. }
  8046. int EQ2Emu_lua_GetSpellID(lua_State* state) {
  8047. if (!lua_interface)
  8048. return 0;
  8049. LuaSpell* luaspell = lua_interface->GetCurrentSpell(state);
  8050. if (!luaspell) {
  8051. lua_interface->LogError("%s: LUA GetSpellID command error: must be used in a spell script", lua_interface->GetScriptName(state));
  8052. return 0;
  8053. }
  8054. int32 spell_id = luaspell->spell->GetSpellID();
  8055. lua_interface->SetInt32Value(state, spell_id);
  8056. return 1;
  8057. }
  8058. int EQ2Emu_lua_StartTransmute(lua_State* state) {
  8059. if (!lua_interface)
  8060. return 0;
  8061. Spawn* spawn = lua_interface->GetSpawn(state, 1);
  8062. if (!spawn) {
  8063. lua_interface->LogError("%s: Lua StartTransmute command error: no spawn", lua_interface->GetScriptName(state));
  8064. return 0;
  8065. }
  8066. if (!spawn->IsPlayer()) {
  8067. lua_interface->LogError("%s: Lua StartTransmute command error: spawn is not a player", lua_interface->GetScriptName(state));
  8068. return 0;
  8069. }
  8070. ZoneServer* zone = spawn->GetZone();
  8071. if (!zone) {
  8072. return 0;
  8073. }
  8074. Client* client = zone->GetClientBySpawn(spawn);
  8075. if (!client) {
  8076. return 0;
  8077. }
  8078. Transmute::CreateItemRequest(client, static_cast<Player*>(spawn));
  8079. return 0;
  8080. }
  8081. int EQ2Emu_lua_CompleteTransmute(lua_State* state) {
  8082. if (!lua_interface)
  8083. return 0;
  8084. Spawn* spawn = lua_interface->GetSpawn(state, 1);
  8085. if (!spawn) {
  8086. lua_interface->LogError("%s: Lua CompleteTransmute command error: no spawn", lua_interface->GetScriptName(state));
  8087. return 0;
  8088. }
  8089. if (!spawn->IsPlayer()) {
  8090. lua_interface->LogError("%s: Lua CompleteTransmute command error: spawn is not a player", lua_interface->GetScriptName(state));
  8091. return 0;
  8092. }
  8093. ZoneServer* zone = spawn->GetZone();
  8094. if (!zone) {
  8095. return 0;
  8096. }
  8097. Client* client = zone->GetClientBySpawn(spawn);
  8098. if (!client) {
  8099. return 0;
  8100. }
  8101. Transmute::CompleteTransmutation(client, static_cast<Player*>(spawn));
  8102. return 0;
  8103. }
  8104. int EQ2Emu_lua_ProcHate(lua_State* state) {
  8105. if (!lua_interface)
  8106. return 0;
  8107. Spawn* caster = lua_interface->GetSpawn(state);
  8108. Spawn* target = lua_interface->GetSpawn(state, 2);
  8109. int32 threat_amt = lua_interface->GetInt32Value(state, 3);
  8110. string spell_name = lua_interface->GetStringValue(state, 4);
  8111. if (!caster) {
  8112. lua_interface->LogError("%s: LUA ProcHate command error: caster is not a valid spawn", lua_interface->GetScriptName(state));
  8113. return 0;
  8114. }
  8115. if (!caster->IsEntity()) {
  8116. lua_interface->LogError("%s: LUA ProcHate command error: caster is not an entity", lua_interface->GetScriptName(state));
  8117. return 0;
  8118. }
  8119. if (!target) {
  8120. lua_interface->LogError("%s: LUA ProcHate command error: target is not a valid spawn", lua_interface->GetScriptName(state));
  8121. return 0;
  8122. }
  8123. if (!target->IsEntity()) {
  8124. lua_interface->LogError("%s: LUA ProcHate command error: target is not an entity", lua_interface->GetScriptName(state));
  8125. return 0;
  8126. }
  8127. static_cast<Entity*>(target)->AddHate(static_cast<Entity*>(caster), threat_amt);
  8128. caster->GetZone()->SendThreatPacket(static_cast<Entity*>(caster), target, threat_amt, spell_name.c_str());
  8129. return 0;
  8130. }
  8131. int EQ2Emu_lua_AddLootToObject(lua_State* state) {
  8132. if (!lua_interface)
  8133. return 0;
  8134. Spawn* object = lua_interface->GetSpawn(state);
  8135. Spawn* player = lua_interface->GetSpawn(state, 2);
  8136. if (object && player && player->IsPlayer()) {
  8137. int32 coins = lua_interface->GetInt32Value(state, 3);
  8138. vector<Item*>* items = 0;
  8139. int i = 0;
  8140. int32 item_id = 0;
  8141. while ((item_id = lua_interface->GetInt32Value(state, 4 + i))) {
  8142. if (items == 0)
  8143. items = new vector<Item*>;
  8144. if (master_item_list.GetItem(item_id))
  8145. items->push_back(master_item_list.GetItem(item_id));
  8146. i++;
  8147. }
  8148. Client* client = 0;
  8149. client = object->GetZone()->GetClientBySpawn(player);
  8150. if (client) {
  8151. ((Player*)player)->AddPendingLootItems(object->GetID(), items);
  8152. }
  8153. safe_delete(items);
  8154. }
  8155. return 0;
  8156. }
  8157. int EQ2Emu_lua_DisplayText(lua_State* state) {
  8158. if (!lua_interface)
  8159. return 0;
  8160. Spawn* player = lua_interface->GetSpawn(state);
  8161. int8 type = lua_interface->GetInt8Value(state, 2);
  8162. string text = lua_interface->GetStringValue(state, 3);
  8163. Client* client = 0;
  8164. if (player && player->IsPlayer())
  8165. client = player->GetZone()->GetClientBySpawn(player);
  8166. if (!client || text.length() == 0) {
  8167. lua_interface->LogError("%s: LUA DisplayText required parameters not given", lua_interface->GetScriptName(state));
  8168. return 0;
  8169. }
  8170. client->SimpleMessage(type, text.c_str());
  8171. return 0;
  8172. }
  8173. int EQ2Emu_lua_ShowLootWindow(lua_State* state) {
  8174. if (!lua_interface)
  8175. return 0;
  8176. Spawn* player = lua_interface->GetSpawn(state);
  8177. Spawn* spawn = lua_interface->GetSpawn(state, 2);
  8178. Client* client = 0;
  8179. if (player && player->IsPlayer())
  8180. client = player->GetZone()->GetClientBySpawn(player);
  8181. if (!client || !spawn) {
  8182. lua_interface->LogError("%s: LUA ShowLootWindow required parameters not given", lua_interface->GetScriptName(state));
  8183. return 0;
  8184. }
  8185. vector<Item*>* items = ((Player*)player)->GetPendingLootItems(spawn->GetID());
  8186. if (!items) {
  8187. lua_interface->LogError("%s: LUA ShowLootWindow has no items", lua_interface->GetScriptName(state));
  8188. return 0;
  8189. }
  8190. client->Loot(0, items, spawn);
  8191. /*PacketStruct* packet2 = configReader.getStruct("WS_UpdateLoot", client->GetVersion());
  8192. if (packet2) {
  8193. packet2->setArrayLengthByName("loot_count", items->size());
  8194. for(int i=0;i< items->size();i++){
  8195. Item* item = (*items)[0];
  8196. packet2->setArrayDataByName("name", item->name.c_str(), i);
  8197. packet2->setArrayDataByName("item_id", item->details.item_id, i);
  8198. packet2->setArrayDataByName("count", item->details.count, i);
  8199. packet2->setArrayDataByName("icon", item->details.icon, i);
  8200. if(item->generic_info.skill_req1 > 0 && item->generic_info.skill_req1 < 0xFFFFFFFF)
  8201. packet2->setArrayDataByName("ability_id", item->generic_info.skill_req1, i);
  8202. else if (item->generic_info.skill_req2 > 0 && item->generic_info.skill_req2 < 0xFFFFFFFF)
  8203. packet2->setArrayDataByName("ability_id", item->generic_info.skill_req2, i);
  8204. else
  8205. packet2->setArrayDataByName("ability_id", 0xFFFFFFFF, i);
  8206. }
  8207. packet2->setDataByName("object_id", spawn->GetID());
  8208. packet2->setDataByName("unknown3", 1);
  8209. packet2->setDataByName("unknown4", 1);
  8210. packet2->setDataByName("unknown5", 60);
  8211. EQ2Packet* app = packet2->serialize();
  8212. DumpPacket(app);
  8213. client->QueuePacket(app);
  8214. safe_delete(packet2);
  8215. }*/
  8216. return 0;
  8217. }
  8218. int EQ2Emu_lua_GetRandomSpawnByID(lua_State* state) {
  8219. if (!lua_interface)
  8220. return 0;
  8221. Spawn* spawnref = lua_interface->GetSpawn(state);
  8222. int32 spawn_id = lua_interface->GetInt32Value(state, 2);
  8223. if (spawn_id > 0 && spawnref) {
  8224. vector<Spawn*> spawns = spawnref->GetZone()->GetSpawnsByID(spawn_id);
  8225. if (spawns.size() == 0) {
  8226. lua_interface->LogError("%s: LUA EQ2Emu_lua_GetRandomSpawnByID command error: GetSpawnsByID returned no spawns", lua_interface->GetScriptName(state));
  8227. return 0;
  8228. }
  8229. Spawn* spawn = 0;
  8230. int16 index = MakeRandomInt(0, spawns.size());
  8231. if (index >= spawns.size() || index < 0)
  8232. index = 0;
  8233. spawn = spawns[index];
  8234. lua_interface->SetSpawnValue(state, spawn);
  8235. return 1;
  8236. }
  8237. else {
  8238. lua_interface->LogError("%s: LUA GetRandomSpawnByID required parameters not given", lua_interface->GetScriptName(state));
  8239. }
  8240. return 0;
  8241. }
  8242. int EQ2Emu_lua_AddPrimaryEntityCommandAllSpawns(lua_State* state) {
  8243. Spawn* player = lua_interface->GetSpawn(state);
  8244. int32 spawn_id = lua_interface->GetInt32Value(state, 2);
  8245. string name = lua_interface->GetStringValue(state, 3);
  8246. float distance = lua_interface->GetFloatValue(state, 4);
  8247. string command = lua_interface->GetStringValue(state, 5);
  8248. string error_text = lua_interface->GetStringValue(state, 6);
  8249. int16 cast_time = lua_interface->GetInt16Value(state, 7);
  8250. int32 spell_visual = lua_interface->GetInt32Value(state, 8);
  8251. if (spawn_id && player && player->IsPlayer() && name.length() > 0) {
  8252. if (distance == 0)
  8253. distance = 10.0f;
  8254. if (command.length() == 0)
  8255. command = name;
  8256. vector<Spawn*> spawns = player->GetZone()->GetSpawnsByID(spawn_id);
  8257. if (spawns.size() == 0) {
  8258. lua_interface->LogError("%s: LUA AddPrimaryEntityCommandAllSpawns command error: GetSpawnsByID returned no spawns", lua_interface->GetScriptName(state));
  8259. return 0;
  8260. }
  8261. Spawn* spawn = 0;
  8262. for (vector<Spawn*>::iterator itr = spawns.begin(); itr != spawns.end(); itr++) {
  8263. spawn = *itr;
  8264. if (spawn) {
  8265. spawn->AddPrimaryEntityCommand(name.c_str(), distance, command.c_str(), error_text.c_str(), cast_time, spell_visual);
  8266. player->GetZone()->SendUpdateDefaultCommand(spawn, command.c_str(), distance);
  8267. }
  8268. }
  8269. }
  8270. return 0;
  8271. }
  8272. int EQ2Emu_lua_InstructionWindow(lua_State* state) {
  8273. if (!lua_interface)
  8274. return 0;
  8275. Client* client = 0;
  8276. Spawn* player = lua_interface->GetSpawn(state);
  8277. float duration = lua_interface->GetFloatValue(state, 2);
  8278. string text = lua_interface->GetStringValue(state, 3);
  8279. string voice = lua_interface->GetStringValue(state, 4);
  8280. int32 voice_key1 = lua_interface->GetInt32Value(state, 5);
  8281. int32 voice_key2 = lua_interface->GetInt32Value(state, 6);
  8282. string signal = lua_interface->GetStringValue(state, 7);
  8283. string goal1 = lua_interface->GetStringValue(state, 8);
  8284. string task1 = lua_interface->GetStringValue(state, 9);
  8285. string goal2 = lua_interface->GetStringValue(state, 10);
  8286. string task2 = lua_interface->GetStringValue(state, 11);
  8287. string goal3 = lua_interface->GetStringValue(state, 12);
  8288. string task3 = lua_interface->GetStringValue(state, 13);
  8289. string goal4 = lua_interface->GetStringValue(state, 14);
  8290. string task4 = lua_interface->GetStringValue(state, 15);
  8291. if (!player) {
  8292. lua_interface->LogError("LUA InstructionWindow command error: spawn is not valid");
  8293. return 0;
  8294. }
  8295. if (!player->IsPlayer()) {
  8296. lua_interface->LogError("LUA InstructionWindow command error: spawn is not a player");
  8297. return 0;
  8298. }
  8299. if (player->GetZone())
  8300. client = player->GetZone()->GetClientBySpawn(player);
  8301. if (!client) {
  8302. lua_interface->LogError("LUA InstructionWindow command error: could not find client");
  8303. return 0;
  8304. }
  8305. if (text.length() == 0 || task1.length() == 0 || signal.length() == 0) {
  8306. lua_interface->LogError("LUA InstructionWindow required parameters not given");
  8307. return 0;
  8308. }
  8309. if (duration >= 0 && duration < 2)
  8310. duration = 2;
  8311. PacketStruct* packet = configReader.getStruct("WS_InstructionWindow", client->GetVersion());
  8312. if (packet) {
  8313. packet->setDataByName("open_seconds_max", duration);
  8314. packet->setDataByName("text", text.c_str());
  8315. packet->setDataByName("voice", voice.c_str());
  8316. int8 num_goals = 1;
  8317. if (task2.length() > 0)
  8318. num_goals++;
  8319. if (task3.length() > 0)
  8320. num_goals++;
  8321. if (task4.length() > 0)
  8322. num_goals++;
  8323. packet->setArrayLengthByName("num_goals", num_goals);
  8324. for (int8 i = 0; i < num_goals; i++) {
  8325. packet->setSubArrayLengthByName("num_tasks", 1, i);
  8326. }
  8327. if (goal1.length() > 0)
  8328. packet->setArrayDataByName("goal_text", goal1.c_str());
  8329. if (goal2.length() > 0)
  8330. packet->setArrayDataByName("goal_text", goal2.c_str(), 1);
  8331. if (goal3.length() > 0)
  8332. packet->setArrayDataByName("goal_text", goal3.c_str(), 2);
  8333. if (goal4.length() > 0)
  8334. packet->setArrayDataByName("goal_text", goal4.c_str(), 3);
  8335. packet->setSubArrayDataByName("task_text", task1.c_str());
  8336. if (task2.length() > 0)
  8337. packet->setSubArrayDataByName("task_text", task2.c_str(), 1);
  8338. if (task3.length() > 0)
  8339. packet->setSubArrayDataByName("task_text", task3.c_str(), 2);
  8340. if (task4.length() > 0)
  8341. packet->setSubArrayDataByName("task_text", task4.c_str(), 3);
  8342. packet->setDataByName("complete_sound", "click");
  8343. packet->setDataByName("signal", signal.c_str());
  8344. packet->setDataByName("voice_key1", voice_key1);
  8345. packet->setDataByName("voice_key2", voice_key2);
  8346. client->QueuePacket(packet->serialize());
  8347. safe_delete(packet);
  8348. }
  8349. return 0;
  8350. }
  8351. int EQ2Emu_lua_ShowWindow(lua_State* state) {
  8352. if (!lua_interface)
  8353. return 0;
  8354. Client* client = 0;
  8355. Spawn* player = lua_interface->GetSpawn(state);
  8356. string window = lua_interface->GetStringValue(state, 2);
  8357. int8 show = lua_interface->GetInt8Value(state, 3);
  8358. if (!player) {
  8359. lua_interface->LogError("LUA ShowWindow command error: spawn is not valid");
  8360. return 0;
  8361. }
  8362. if (!player->IsPlayer()) {
  8363. lua_interface->LogError("LUA ShowWindow command error: spawn is not a player");
  8364. return 0;
  8365. }
  8366. if (player->GetZone())
  8367. client = player->GetZone()->GetClientBySpawn(player);
  8368. if (!client) {
  8369. lua_interface->LogError("LUA ShowWindow command error: could not find client");
  8370. return 0;
  8371. }
  8372. if (window.length() == 0) {
  8373. lua_interface->LogError("LUA ShowWindow required parameters not given");
  8374. return 0;
  8375. }
  8376. PacketStruct* packet = configReader.getStruct("WS_ShowWindow", client->GetVersion());
  8377. if (packet) {
  8378. packet->setDataByName("window", window.c_str());
  8379. packet->setDataByName("show", show);
  8380. client->QueuePacket(packet->serialize());
  8381. safe_delete(packet);
  8382. }
  8383. return 0;
  8384. }
  8385. int EQ2Emu_lua_EnableGameEvent(lua_State* state) {
  8386. //See GameEvents.txt for options that can be used for this function
  8387. if (!lua_interface)
  8388. return 0;
  8389. Client* client = 0;
  8390. Spawn* player = lua_interface->GetSpawn(state);
  8391. string event_name = lua_interface->GetStringValue(state, 2);
  8392. int8 enabled = lua_interface->GetInt8Value(state, 3);
  8393. if (!player || !player->IsPlayer()) {
  8394. lua_interface->LogError("LUA EnableGameEvent error: player is not valid");
  8395. return 0;
  8396. }
  8397. if (player->GetZone())
  8398. client = player->GetZone()->GetClientBySpawn(player);
  8399. if (!client) {
  8400. lua_interface->LogError("LUA EnableGameEvent error: could not find client");
  8401. return 0;
  8402. }
  8403. PacketStruct* packet = configReader.getStruct("WS_EnableGameEvent", client->GetVersion());
  8404. if (packet) {
  8405. packet->setDataByName("event_name", event_name.c_str());
  8406. packet->setDataByName("enabled", enabled);
  8407. client->QueuePacket(packet->serialize());
  8408. safe_delete(packet);
  8409. }
  8410. return 0;
  8411. }
  8412. int EQ2Emu_lua_FlashWindow(lua_State* state) {
  8413. if (!lua_interface)
  8414. return 0;
  8415. Client* client = 0;
  8416. Spawn* player = lua_interface->GetSpawn(state);
  8417. string window = lua_interface->GetStringValue(state, 2);
  8418. float flash_seconds = lua_interface->GetFloatValue(state, 3);
  8419. if (!player) {
  8420. lua_interface->LogError("LUA FlashWindow command error: spawn is not valid");
  8421. return 0;
  8422. }
  8423. if (!player->IsPlayer()) {
  8424. lua_interface->LogError("LUA FlashWindow command error: spawn is not a player");
  8425. return 0;
  8426. }
  8427. if (player->GetZone())
  8428. client = player->GetZone()->GetClientBySpawn(player);
  8429. if (!client) {
  8430. lua_interface->LogError("LUA FlashWindow command error: could not find client");
  8431. return 0;
  8432. }
  8433. if (window.length() == 0) {
  8434. lua_interface->LogError("LUA FlashWindow required parameters not given");
  8435. return 0;
  8436. }
  8437. PacketStruct* packet = configReader.getStruct("WS_FlashWindow", client->GetVersion());
  8438. if (packet) {
  8439. packet->setDataByName("window", window.c_str());
  8440. packet->setDataByName("flash_seconds", flash_seconds);
  8441. client->QueuePacket(packet->serialize());
  8442. safe_delete(packet);
  8443. }
  8444. return 0;
  8445. }
  8446. int EQ2Emu_lua_CheckLOS(lua_State* state) {
  8447. if (!lua_interface)
  8448. return 0;
  8449. Spawn* spawn = lua_interface->GetSpawn(state);
  8450. Spawn* target = lua_interface->GetSpawn(state, 2);
  8451. if (spawn && target)
  8452. return spawn->CheckLoS(target);
  8453. return 0;
  8454. }
  8455. int EQ2Emu_lua_CheckLOSByCoordinates(lua_State* state) {
  8456. if (!lua_interface)
  8457. return 0;
  8458. Spawn* spawn = lua_interface->GetSpawn(state);
  8459. float x = lua_interface->GetFloatValue(state, 2);
  8460. float y = lua_interface->GetFloatValue(state, 3);
  8461. float z = lua_interface->GetFloatValue(state, 4);
  8462. if (spawn)
  8463. return spawn->CheckLoS(glm::vec3(spawn->GetX(), spawn->GetZ(), spawn->GetY() + 1.0f), glm::vec3(x, z, y+1.0f));
  8464. return 0;
  8465. }
  8466. int EQ2Emu_lua_SetZoneExpansionFlag(lua_State* state) {
  8467. if (!lua_interface)
  8468. return 0;
  8469. ZoneServer* zone = lua_interface->GetZone(state);
  8470. int32 xpackFlag = lua_interface->GetInt32Value(state, 2);
  8471. if (zone)
  8472. zone->SetExpansionFlag(xpackFlag);
  8473. return 0;
  8474. }
  8475. int EQ2Emu_lua_GetZoneExpansionFlag(lua_State* state) {
  8476. if (!lua_interface)
  8477. return 0;
  8478. ZoneServer* zone = lua_interface->GetZone(state);
  8479. if (zone) {
  8480. lua_interface->SetInt32Value(state, zone->GetExpansionFlag());
  8481. return 1;
  8482. }
  8483. return 0;
  8484. }
  8485. int EQ2Emu_lua_SetZoneHolidayFlag(lua_State* state) {
  8486. if (!lua_interface)
  8487. return 0;
  8488. ZoneServer* zone = lua_interface->GetZone(state);
  8489. int32 holidayFlag = lua_interface->GetInt32Value(state, 2);
  8490. if (zone)
  8491. zone->SetHolidayFlag(holidayFlag);
  8492. return 0;
  8493. }
  8494. int EQ2Emu_lua_GetZoneHolidayFlag(lua_State* state) {
  8495. if (!lua_interface)
  8496. return 0;
  8497. ZoneServer* zone = lua_interface->GetZone(state);
  8498. if (zone) {
  8499. lua_interface->SetInt32Value(state, zone->GetHolidayFlag());
  8500. return 1;
  8501. }
  8502. return 0;
  8503. }
  8504. int EQ2Emu_lua_AddSpawnProximity(lua_State* state) {
  8505. if (!lua_interface)
  8506. return 0;
  8507. Spawn* spawn = lua_interface->GetSpawn(state);
  8508. int32 spawn_value = lua_interface->GetInt32Value(state, 2);
  8509. int8 spawn_type = lua_interface->GetInt8Value(state, 3);
  8510. float distance = lua_interface->GetFloatValue(state, 4);
  8511. string in_range_function = lua_interface->GetStringValue(state, 5);
  8512. string leaving_range_function = lua_interface->GetStringValue(state, 6);
  8513. if (spawn && distance > 0 && in_range_function.length() > 0)
  8514. spawn->AddLUASpawnProximity(spawn_value, (Spawn::SpawnProximityType)spawn_type, distance, in_range_function, leaving_range_function);
  8515. return 0;
  8516. }
  8517. int EQ2Emu_lua_CanSeeInvis(lua_State* state) {
  8518. if (!lua_interface)
  8519. return 0;
  8520. Spawn* spawn = lua_interface->GetSpawn(state);
  8521. Spawn* target = lua_interface->GetSpawn(state, 2);
  8522. if (spawn && target)
  8523. {
  8524. if (spawn->IsPlayer() && target->IsEntity())
  8525. {
  8526. lua_interface->SetBooleanValue(state, ((Player*)spawn)->CanSeeInvis((Entity*)target));
  8527. return 1;
  8528. }
  8529. else if (spawn->IsEntity() && target->IsEntity())
  8530. {
  8531. lua_interface->SetBooleanValue(state, ((Entity*)spawn)->CanSeeInvis((Entity*)target));
  8532. return 1;
  8533. }
  8534. }
  8535. return 0;
  8536. }
  8537. int EQ2Emu_lua_SetSeeInvis(lua_State* state) {
  8538. if (!lua_interface)
  8539. return 0;
  8540. Spawn* spawn = lua_interface->GetSpawn(state);
  8541. bool val = (lua_interface->GetInt8Value(state, 2) == 1);
  8542. if (spawn && spawn->IsEntity())
  8543. {
  8544. ((Entity*)spawn)->SetSeeInvisSpell(val);
  8545. if (spawn->IsPlayer())
  8546. {
  8547. Client* client = spawn->GetZone()->GetClientBySpawn((Player*)spawn);
  8548. if (client)
  8549. ((Player*)spawn)->GetZone()->SendAllSpawnsForSeeInvisChange(client);
  8550. }
  8551. }
  8552. return 0;
  8553. }
  8554. int EQ2Emu_lua_SetSeeHide(lua_State* state) {
  8555. if (!lua_interface)
  8556. return 0;
  8557. Spawn* spawn = lua_interface->GetSpawn(state);
  8558. bool val = (lua_interface->GetInt8Value(state, 2) == 1);
  8559. if (spawn && spawn->IsEntity())
  8560. {
  8561. ((Entity*)spawn)->SetSeeHideSpell(val);
  8562. if (spawn->IsPlayer())
  8563. {
  8564. Client* client = spawn->GetZone()->GetClientBySpawn((Player*)spawn);
  8565. if (client)
  8566. ((Player*)spawn)->GetZone()->SendAllSpawnsForVisChange(client);
  8567. }
  8568. }
  8569. return 0;
  8570. }
  8571. int EQ2Emu_lua_SetAccessToEntityCommand(lua_State* state)
  8572. {
  8573. if (!lua_interface)
  8574. return 0;
  8575. Spawn* player = lua_interface->GetSpawn(state);
  8576. Spawn* spawn = lua_interface->GetSpawn(state, 2);
  8577. string command = lua_interface->GetStringValue(state, 3);
  8578. bool val = (lua_interface->GetInt8Value(state, 4) == 1);
  8579. if (spawn && player && player->IsPlayer())
  8580. {
  8581. EntityCommand* cmd = spawn->FindEntityCommand(string(command), true);
  8582. bool res = false;
  8583. if (cmd)
  8584. res = spawn->SetPermissionToEntityCommand(cmd, (Player*)player, val);
  8585. lua_interface->SetBooleanValue(state, res);
  8586. return 1;
  8587. }
  8588. return 0;
  8589. }
  8590. int EQ2Emu_lua_RemovePrimaryEntityCommand(lua_State* state)
  8591. {
  8592. if (!lua_interface)
  8593. return 0;
  8594. Spawn* spawn = lua_interface->GetSpawn(state);
  8595. string command = lua_interface->GetStringValue(state, 2);
  8596. if (spawn && command.length() > 0)
  8597. spawn->RemovePrimaryEntityCommand(command.c_str());
  8598. return 0;
  8599. }
  8600. int EQ2Emu_lua_SendUpdateDefaultCommand(lua_State* state) {
  8601. if (!lua_interface)
  8602. return 0;
  8603. Spawn* spawn = lua_interface->GetSpawn(state);
  8604. float distance = lua_interface->GetFloatValue(state, 2);
  8605. string command = lua_interface->GetStringValue(state, 3);
  8606. Spawn* player = lua_interface->GetSpawn(state, 4);
  8607. if (spawn) {
  8608. spawn->GetZone()->SendUpdateDefaultCommand(spawn, command.c_str(), distance, player);
  8609. }
  8610. return 0;
  8611. }
  8612. int EQ2Emu_lua_SendTransporters(lua_State* state) {
  8613. if (!lua_interface)
  8614. return 0;
  8615. Spawn* spawn = lua_interface->GetSpawn(state);
  8616. Spawn* player = lua_interface->GetSpawn(state, 2);
  8617. int32 transport_id = lua_interface->GetInt32Value(state, 3);
  8618. if (spawn && player && transport_id && player->IsPlayer()) {
  8619. Client* client = 0;
  8620. if (player && player->IsPlayer())
  8621. client = player->GetZone()->GetClientBySpawn(player);
  8622. if (!client)
  8623. return 0;
  8624. vector<TransportDestination*> destinations;
  8625. player->GetZone()->GetTransporters(&destinations, client, transport_id);
  8626. if (destinations.size())
  8627. {
  8628. client->SetTemporaryTransportID(transport_id);
  8629. client->ProcessTeleport(spawn, &destinations, transport_id);
  8630. }
  8631. else
  8632. client->Message(CHANNEL_COLOR_RED, "There are no transporters available (ID: %u)", transport_id);
  8633. }
  8634. return 0;
  8635. }
  8636. int EQ2Emu_lua_SetTemporaryTransportID(lua_State* state) {
  8637. if (!lua_interface)
  8638. return 0;
  8639. Spawn* player = lua_interface->GetSpawn(state);
  8640. int32 transport_id = lua_interface->GetInt32Value(state, 2);
  8641. if (player && player->IsPlayer()) {
  8642. Client* client = 0;
  8643. if (player && player->IsPlayer())
  8644. client = player->GetZone()->GetClientBySpawn(player);
  8645. if (!client)
  8646. return 0;
  8647. client->SetTemporaryTransportID(transport_id);
  8648. }
  8649. return 0;
  8650. }
  8651. int EQ2Emu_lua_GetTemporaryTransportID(lua_State* state) {
  8652. if (!lua_interface)
  8653. return 0;
  8654. Spawn* player = lua_interface->GetSpawn(state);
  8655. if (player && player->IsPlayer()) {
  8656. Client* client = 0;
  8657. if (player && player->IsPlayer())
  8658. client = player->GetZone()->GetClientBySpawn(player);
  8659. if (!client)
  8660. return 0;
  8661. lua_interface->SetInt32Value(state, client->GetTemporaryTransportID());
  8662. return 1;
  8663. }
  8664. return 0;
  8665. }