Jump to content
  • 0

The level component of SG's Anger skills has been decreased to 1/3rd of the level. New formula is ((BaseLV/3+LUK+DEX)/(13-3*SkillLV))%


iamdevkazey

Question


  • Group:  Members
  • Topic Count:  13
  • Topics Per Day:  0.02
  • Content Count:  21
  • Reputation:   0
  • Joined:  10/17/22
  • Last Seen:  

((BaseLV+LUK+DEX)/(13-3*SkillLV))% original

to

((BaseLV/3+LUK+DEX)/(13-3*SkillLV))% change

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  477
  • Reputation:   269
  • Joined:  06/13/17
  • Last Seen:  

located in battle.cpp

	uint16 anger_level;
	if (sd != nullptr && anger_id < MAX_PC_FEELHATE && (anger_level = pc_checkskill(sd, sg_info[anger_id].anger_id))) {
-		int skillratio = sd->status.base_level + sstatus->dex + sstatus->luk;
+		int skillratio = (sd->status.base_level/3) + sstatus->dex + sstatus->luk;

		if (anger_id == 2)

 

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...