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!

auto GM buff when re-entering the channel

Newbie Spellweaver
Joined
Apr 16, 2014
Messages
58
Reaction score
5
как сделать авто ГМ Бафф при переключении на канал, который уже не нашли
 
Junior Spellweaver
Joined
Jan 24, 2013
Messages
183
Reaction score
80
  • Go to Server01->Programmability->Stored Procedure. Right Mouse Click on [dbo].[get_cabal_character] -> Modify

  • CTRL + F search for this line
Code:
(@USERNUM, 0, 0, @[I][B][URL="http://forum.ragezone.com/members/2000206772.html"]World[/URL][/B][/I]AuthKey)
  • Add This code below END
Code:
    IF @CH_LEV < 150
        BEGIN
            SET @GMBuff = 0xCE010000010000000DE43600CD653100
        END
Like in this screenshot
stavrov1 - auto GM buff when re-entering the channel - RaGEZONE Forums
  • Click Execute to save stored procedure.

IF you want to give bless to all characters w/o Level restriction



  • CTRL + F Search for
Code:
@GMBuff = GMBuff,


  • Change it to
Code:
@GMBuff = 0xCE010000010000000DE43600CD653100,
 
Upvote 0
Skilled Illusionist
Joined
Apr 17, 2010
Messages
323
Reaction score
23
  • Go to Server01->Programmability->Stored Procedure. Right Mouse Click on [dbo].[get_cabal_character] -> Modify

  • CTRL + F search for this line
Code:
(@USERNUM, 0, 0, @[I][B][URL="http://forum.ragezone.com/members/2000206772.html"]World[/URL][/B][/I]AuthKey)
  • Add This code below END
Code:
    IF @CH_LEV < 150
        BEGIN
            SET @GMBuff = 0xCE010000010000000DE43600CD653100
        END
Like in this screenshot
stavrov1 - auto GM buff when re-entering the channel - RaGEZONE Forums
  • Click Execute to save stored procedure.

IF you want to give bless to all characters w/o Level restriction



  • CTRL + F Search for
Code:
@GMBuff = GMBuff,


  • Change it to
Code:
@GMBuff = 0xCE010000010000000DE43600CD653100,

what is this kind of gm buff? gm blessing lvl3, guardian buff or god strength?

thanks in advance!
 
Upvote 0
Junior Spellweaver
Joined
Aug 9, 2016
Messages
136
Reaction score
15
There's a script last time i wrote.. when char enter in world. it gives auto buff, (all buff in the class what he used)
 
Upvote 0
Experienced Elementalist
Joined
Feb 17, 2015
Messages
263
Reaction score
119
How can I get the code for other buffs? or potions?
 
Upvote 0
Back
Top