[Question] Rebirth / Reborn system

Results 1 to 11 of 11
  1. #1
    Account Upgraded | Title Enabled! SupremeSRO is offline
    MemberRank
    Apr 2012 Join Date
    326Posts

    [Question] Rebirth / Reborn system

    Hello everyone , as the tittle said ..
    Im wondering why i cant find a thread where we can discuss about it ?
    Or im late and this is already released? or so hard to make it ? well i was out of scene and maybe that is old
    .. thats my question..



    Thanks in adv 4 all answers

    For who dont know , Rebirth / Reborn system is like this :

    after you reach max level your character can reset to level 0 again. Each rebirth gives you extra stat points, and you will be more stronger
    Last edited by SupremeSRO; 31-10-13 at 01:54 AM.


  2. #2
    Valued Member DrugDealers is offline
    MemberRank
    Jan 2013 Join Date
    125Posts

    Re: [Question] Rebirth / Reborn system

    nah it's not released before
    and about it's hard or easy

    for sql coders it's too easy ofc

    but for editos only it's too hard ^_^

    done i do it xD

  3. #3
    Proficient Member pr0xy1337 is offline
    MemberRank
    Aug 2012 Join Date
    182Posts

    Re: [Question] Rebirth / Reborn system

    Never tried to do it, since I never really needed it but on an other thread I mentioned (+ phoenix1337 as well) that it could be made ingame only with item. It's not hard at all =)

  4. #4
    Valued Member DrugDealers is offline
    MemberRank
    Jan 2013 Join Date
    125Posts

    Re: [Question] Rebirth / Reborn system

    Quote Originally Posted by pr0xy1337 View Post
    Never tried to do it, since I never really needed it but on an other thread I mentioned (+ phoenix1337 as well) that it could be made ingame only with item. It's not hard at all =)
    phoenix1337 isn't db edit and isn't sql coder :)

  5. #5
    Proficient Member pr0xy1337 is offline
    MemberRank
    Aug 2012 Join Date
    182Posts

    Re: [Question] Rebirth / Reborn system

    Quote Originally Posted by DrugDealers View Post
    phoenix1337 isn't db edit and isn't sql coder :)
    I can't call myself one either.. but I am able to code one simple scroll that works as a auto rebirth =)
    Don't wanna show full code since I don't want to make it so easy for newbies to make it but >>



    It took me like 5 minutes, based on puritysro's rebirth system (looong looong time ago idea..)
    Last edited by pr0xy1337; 31-10-13 at 05:33 PM.

  6. #6
    Account Upgraded | Title Enabled! SupremeSRO is offline
    MemberRank
    Apr 2012 Join Date
    326Posts

    Re: [Question] Rebirth / Reborn system

    So , any1 is up to helpme out with this ?

    Note : i can pay some bucks

    skype : SupremeSRO


  7. #7
    Enthusiast frkn is offline
    MemberRank
    Jan 2012 Join Date
    36Posts

    Re: [Question] Rebirth / Reborn system

    i done it with ingame :P

  8. #8
    Proficient Member Royalblade is offline
    MemberRank
    Jan 2013 Join Date
    167Posts

    Re: [Question] Rebirth / Reborn system

    so your telling me u got a problem with adding a scroll which checks if curlevel = urservers max level and does STR - (max amount of str you have have -20) and the same for int.Set expoffset to 0 and add return-3 behind it at _tiemdjob?

    Do it yourself.. google these:
    DECLARE,
    INT,
    VARCHAR()
    IF
    UPDATE
    SET
    WHERE
    RETURN.

    That's all you need...

  9. #9
    Novice deinvater57 is offline
    MemberRank
    Oct 2013 Join Date
    2Posts

    Re: [Question] Rebirth / Reborn system

    if(@JobID=xxxx)
    DECLARE @MAXLEVEL INT
    SET @MAXLEVEL = 100
    BEGIN
    declare @check int
    declare @charcheck int
    IF(NOT EXSITS(SELECT * FROM _TableName where CharID = @CharID))
    BEGIN
    insert into _TableName (CharID, CountRespawn, LastSTR, LastINT) VALUES (@CharID, 0, 20, 20)
    END
    select @check = CountRespawn from _TableName where CharID = @CharID
    select @charcheck = count(*) from SRO_VT_SHARD.dbo._Char where CharID = @CharID and CurLevel = @MAXLEVEL
    IF @check > 5
    BEGIN
    RETURN
    END
    IF @charcheck = 1
    BEGIN
    declare @str int
    declare @int int
    declare @plusvalue int
    /* Options Menu */
    set @plusvalue = 5 -- +5 str/int default
    /* Options Menu */
    update _TableName set LastSTR = LastSTR + @plusvalue, LastINT = LastINT + @plusvalue, countrespawn = countrespawn + 1 where CharID = @CharID
    select @str = LastSTR from _TableName where CharID = @CharID
    select @int = LastINT from _TableName where CharID = @CharID
    update SRO_VT_SHARD.dbo._Char set CurLevel = 1, MaxLevel = 1, Strength = @str, Intellect = @int where CharID = @CharID
    END


  10. #10
    Apprentice NadaZayed is offline
    MemberRank
    Feb 2014 Join Date
    5Posts

    Re: [Question] Rebirth / Reborn system

    Can you put a tutorial "deinvater57" ?!

  11. #11
    Account Upgraded | Title Enabled! MarcoTozzi is offline
    MemberRank
    Nov 2009 Join Date
    276Posts

    Re: [Question] Rebirth / Reborn system

    There is no a standard method for rebirth for SRO like it is on MU nowadays, everyone do it like he like.
    And yes you need few skills in PHP and MSSQL, that's all.



Advertisement