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!

Procedure For +3 Scroll [_AddTimedJob]

Initiate Mage
Joined
Aug 27, 2014
Messages
3
Reaction score
0
Hey every one !
2day i'll Release new scroll for RZ

this procedure created for give extra +3 to the item in slot '1' at char inventory, but this scroll not work if your item +8 or more.

i mean it will give the extra +3 to any D11 EGY A or B +1 ~ +7 in Slot 1 in your inventory.

you can change the values as u want !
Slot, Extra plus, Items ID's and which item plus to work

Notice: This ID's is D11 EGY A + EGY B ID's you can change it to the target Items ID's

PHP:
IF(@JobID = 'Write Here Scroll Skill ID') -- Plus Scroll (+3) coded by [iLegend] Dont copy under your Name!
 Begin
  Declare @OptLvl int
  Declare   [USER=571372]newo[/USER]ptLvl int
  Select @OptLvl = OptLevel From dbo._Items Where ID64 = ( Select ItemID From _Inventory Where CharID =   [USER=551894]Char[/USER]ID and Slot = '13' and ItemID > 0 ) 
  Set   [USER=571372]newo[/USER]ptLvl = (@OptLvl + '3') --# To Change Extra Plus Value
  Update dbo._Items Set OptLevel =   [USER=571372]newo[/USER]ptLvl Where ID64 = ( Select ItemID From _Inventory Where CharID =   [USER=551894]Char[/USER]ID and Slot = '13' and ItemID > 0 ) and OptLevel <= '7' --# To Change Which Item Plus to Work
  and ((RefItemID between '25611' and '25668') Or (RefItemID between '25727' and '25762') Or (RefItemID between '25669' and '25726') Or (RefItemID between '25763' and '25798')) --# To Change Item ID's
 End

 
Last edited:
Master Summoner
Joined
Nov 9, 2009
Messages
579
Reaction score
238
why not simply use adv elix +3 or +4 or +5 or +50 or whatever value you want?
as long as the effect this scroll has doesnt also reset automatically after a certain amount of time its useless .. also did you think about what would happen if the player uses the scroll to get extra +3 and then does alchemy with it without teleporting/relogging before doing so?
 
Experienced Elementalist
Joined
Sep 11, 2012
Messages
241
Reaction score
35
why not simply use adv elix +3 or +4 or +5 or +50 or whatever value you want?
as long as the effect this scroll has doesnt also reset automatically after a certain amount of time its useless .. also did you think about what would happen if the player uses the scroll to get extra +3 and then does alchemy with it without teleporting/relogging before doing so?

I think because it's not adv elixir .. it's upgrade +3 and the item still able to use adv !!
 
Back
Top