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!

Is It possible

Newbie Spellweaver
Joined
Jan 29, 2018
Messages
55
Reaction score
3
Is it possible or impossible After dungeon finish 30 Runs will have Reward via Mail or Special Inventory? Via script/Query on DB thank you sorry for my bad english
 
RaGEZONE VIP
[VIP] Member
Joined
Oct 10, 2019
Messages
198
Reaction score
457
Is it possible or impossible After dungeon finish 30 Runs will have Reward via Mail or Special Inventory? Via script/Query on DB thank you sorry for my bad english
For example, create a table with columns CharId, DungeonId, Count.
Edit the stored procedures cabal_sp_DungeonRanking_Single_Clear_Set and cabal_sp_DungeonRanking_Party_Clear_Set so that the counter in your table increases after you complete the dungeon. Next, check the value of your counter for this dungeon. If he is equal 30 - send the reward by mail (it is easy to find the stored procedure for sending a GM mail) or to the cache inventory. Then reset the counter.

In fact, this is done very simply and quickly. All it takes is the ability to use your brain and use Google - all the answers are there.
 
Upvote 0
Junior Spellweaver
Joined
Apr 24, 2014
Messages
117
Reaction score
7
For example, create a table with columns CharId, DungeonId, Count.
Edit the stored procedures cabal_sp_DungeonRanking_Single_Clear_Set and cabal_sp_DungeonRanking_Party_Clear_Set so that the counter in your table increases after you complete the dungeon. Next, check the value of your counter for this dungeon. If he is equal 30 - send the reward by mail (it is easy to find the stored procedure for sending a GM mail) or to the cache inventory. Then reset the counter.

In fact, this is done very simply and quickly. All it takes is the ability to use your brain and use Google - all the answers are there.

no sample ?
 
Upvote 0
Back
Top