Blended and Essence

Results 1 to 2 of 2
  1. #1
    Account Upgraded | Title Enabled! Tryout is offline
    MemberRank
    Jul 2020 Join Date
    340Posts

    Blended and Essence

    How can I put as starting creation Blended and Essence in the character?

    I can't find PassiveAbilityData and BlendedAbilityData in new_character_data and sp.new_char to exec new query just like starting set in inventory, wanted to put it directly as used.

    - - - Updated - - -

    Is it SkillData in Server01>cabal_new_character_data ?

    - - - Updated - - -

    But Blended Rune is U and Skill List is K
    Last edited by Tryout; 17-11-21 at 02:33 PM.


  2. #2
    Proficient Member ShadowGohan is online now
    MemberRank
    Dec 2013 Join Date
    180Posts

    Re: Blended and Essence

    Character data that is not added upon character creation usually is added when entering the character, which means you want to look into:
    [Server01].[dbo].[get_cabal_character]

    For your case, this specific part of the mentioned procedure:

    Code:
    IF @@ROWCOUNT = 0	BEGIN		INSERT INTO CABAL_SOUL_ABILITY_TABLE			VALUES(@CHARACTERIDX, 0, 0, 0X, 0x, 0)		SET @PASSIVE_ABILITY_DATA = 0X		set @BLENDED_ABILITY_DATA = 0x	END
    Whatever goes inbetween the "Begin" & "END" tags here, is what's done if the character did not yet get those infos added.

    Here you can add the rune data you want new characters to have.

    If you need help with filtering out the class then either look through the database how it already does that or just ask here



Advertisement