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!

Please help me about the Auto Reborn System.

Initiate Mage
Joined
May 17, 2021
Messages
3
Reaction score
0
I want the number of reborn to be no more than 50. and don't spend money and the maximum stat limit is 32767. Please help me. How do I create a script? Thx U
 
Newbie Spellweaver
Joined
Jan 21, 2020
Messages
53
Reaction score
7
Hi, Im also newbie here in Ragezone, I think we have to first understand how AUTO-REBORN scripts works.

like for example:
< (less than)
> (more than)
= (equal)

as i have explored Auto_reborn scripts, it goes into this methods.
Trigger the code once requirements are met. (update the database)

for example:
[dbo.ChaReborn] + 1 <--- this means reborn number will move 1 point up(from 1 to 2)

if requirements met:

ChaLevel = 300 (character must reach exact level 300 not 299 nor 301) coz we use (=) term.
ChaMoney >= 1,000,000 (this means char must have more than or equal to this amount 1,000,000)
do not forget to update ChaMoney = (ChaMoney - 1,000,000) to trigger the deduction of what is required amount.

i think you have to explore more inside your auto-reborn script.
I hope this can help you a little hint on how to manage your server in the future.
 
Upvote 0
Back
Top