Jump to content
  • 0

Soul Link Modification


Azeroth

Question


  • Group:  Members
  • Topic Count:  36
  • Topics Per Day:  0.01
  • Content Count:  383
  • Reputation:   121
  • Joined:  03/31/12
  • Last Seen:  

Hi, i know this is kinda common now but i couldn't find any solution and i've been trying to search all around the forum so on with herc.ws
But most of them didn't work i just need this following.
 

Quote

Hunter
- There is a 0.3%*LUK chance of Falcon Assault occurring automatically per shot with a bow
Alchemist
- Acid Terror becomes a splash skill in an area of 4x4 around the targetted player or mob and does 100% + 110%*SkillLV ATK.

Blacksmith
- Full adrenaline rush gives Str +10, Dex +10 and Flee +15.
- Maximum Power Thrust is buffed with +100% ATK, giving 300% ATK at Lv5.

Help would be greatly appreciated!

Can you check this also if it is correct?

Quote

            if(sc->data[SC_SPIRIT] && (sc->data[SC_SPIRIT]->val2 == SL_WIZARD || sc->data[SC_SPIRIT]->val2 == SL_SAGE))
                bonus += ((TBL_PC*)bl)->status.base_level * 200;
            if(sc->data[SC_SPIRIT] && (sc->data[SC_SPIRIT]->val2 == SL_WIZARD || sc->data[SC_SPIRIT]->val2 == SL_SAGE))
                bonus += ((TBL_PC*)bl)->status.int_ / 5;

The Wizard's and Sage's HP will also Increase by BaseLvl*200 HP and his/her Int will increase by Int/5.
 (For example: 200 Int will give you an additional bonus of 200/5 = 40 Int).

Edited by Azeroth
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.04
  • Content Count:  746
  • Reputation:   47
  • Joined:  03/12/14
  • Last Seen:  

Go to your trunk/src/map/status.c and look for:
	if(sc->data[SC_KYOUGAKU])
		vit -= sc->data[SC_KYOUGAKU]->val2;
	if(sc->data[SC_STRIPARMOR] && bl->type != BL_PC)
		vit -= vit * sc->data[SC_STRIPARMOR]->val2/100;
	if(sc->data[SC_FULL_THROTTLE])
		vit += vit * 20 / 100;
	// Sage & Wizard Link Spirit 
	if(sc->data[SC_SPIRIT] && (sc->data[SC_SPIRIT]->val2 == SL_WIZARD || sc->data[SC_SPIRIT]->val2 == SL_SAGE))
		vit += ((TBL_PC*)bl)->status.int_ / 5;
Open src/map/skill.c and look for:
Find:
   // Automatic trigger of Blitz Beat
   if (pc_isfalcon(sd) && sd->status.weapon == W_BOW && (skill=pc_checkskill(sd,HT_BLITZBEAT))>0 &&
	rnd()%1000 <= sstatus->luk*10/3+1 ) {
	rate=(sd->status.job_level+9)/10;
	skill_castend_damage_id(src,bl,HT_BLITZBEAT,(skill<rate)?skill:rate,tick,SD_LEVEL);
   }After Add:
   // Automatic trigger of Falcon Assault, customized source. [MarkZD]
   if (sc && sc->data[SC_SPIRIT] && sc->data[SC_SPIRIT]->val2 == SL_HUNTER && pc_isfalcon(sd) && sd->status.weapon == W_BOW &&
   (skill=pc_checkskill(sd,SN_FALCONASSAULT))>0 &&
    rnd()%1000 <= sstatus->luk*10/3+1 ) {
    skill_castend_damage_id(src,bl,SN_FALCONASSAULT,skill,tick,SD_LEVEL);
   }

 

On 11/12/2016 at 0:03 PM, Azeroth said:

Alchemist
- Acid Terror becomes a splash skill in an area of 4x4 around the targetted player or mob and does 100% + 110%*SkillLV ATK.

Blacksmith
- Full adrenaline rush gives Str +10, Dex +10 and Flee +15.
- Maximum Power Thrust is buffed with +100% ATK, giving 300% ATK at Lv5.

i will update you once i'm done revert the old src to Latest Code

  • Upvote 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...