Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

How to remove gm buff (blessing)?

Newbie Spellweaver
Joined
Aug 22, 2021
Messages
23
Reaction score
1
Hi Guys,

How can I remove GM Buff (Blessing)? I've been trying to remove this code but the buff is still in there every time I log in. Can some please teach me? I don't want any gm blessing whenever you log or relog in.

Thank you very much. Much appreciated.

IF @CH_LEV < 200 BEGIN SET

@GMBuff = 0xCE010000010000000DE43600CD653100

END EXEC Cabal_sp_GuardianSystem Characteridx, @CH_STYLE, @TitleData, @TitleData OUTPUT
 
Junior Spellweaver
Joined
Jul 15, 2020
Messages
100
Reaction score
15
or if u dont want to lose the hex code in the future,

just simply break the statement

"IF @CH_LEV > 200 BEGIN SET"

considering your max lvl is 200.
 
Upvote 0
Junior Spellweaver
Joined
Dec 19, 2013
Messages
183
Reaction score
37
or if u dont want to lose the hex code in the future,

just simply break the statement

"IF @CH_LEV > 200 BEGIN SET"

considering your max lvl is 200.

Terrible idea.. comment stuff out if its not used, don't put "IF"s to everything just to accomplish that..
I really don't want to know how procedures of your's would look like after making several adjustments to them, if thats how you work with them.. although I would be very much interested in seeing how many resources you're wasting because of it..
 
Upvote 0
Back
Top