Jump to content
  • 0
Sign in to follow this  
TheMadUnknown

Adding Thief Skills to Knight Skill Tree

Question

3 answers to this question

Recommended Posts

  • 0

no need patch, just pure skill tree

 

db\re\skill_tree.conf

Knight: {
	inherit: ( "Swordsman" );

	skills: {
		TF_HIDING: 10
		KN_SPEARMASTERY: 10
		KN_PIERCE: {
			MaxLevel: 10
			KN_SPEARMASTERY: 1
		}

data\luafiles514\lua files\skillinfoz\skilltreeview.lub

	[JOBID.JT_KNIGHT] = {
		[0] = SKID.KN_TWOHANDQUICKEN,
		[1] = SKID.KN_AUTOCOUNTER,
		[2] = SKID.KN_RIDING,
		[3] = SKID.KN_SPEARMASTERY,
		[6] = SKID.KN_CHARGEATK,
		[8] = SKID.KN_BOWLINGBASH,
		[9] = SKID.KN_CAVALIERMASTERY,
		[10] = SKID.KN_PIERCE,
		[13] = SKID.KN_ONEHAND,
		[16] = SKID.KN_SPEARBOOMERANG,
		[17] = SKID.KN_SPEARSTAB,
		[24] = SKID.KN_BRANDISHSPEAR,
		[25] = SKID.TF_HIDING
	},

data\luafiles514\lua files\skillinfoz\skillinfolist.lub

	[SKID.TF_HIDING] = {
		"TF_HIDING",
		SkillName = "Hiding",
		MaxLv = 10,
		SpAmount = { 10, 10, 10, 10, 10, 10, 10, 10, 10, 10 },
		bSeperateLv = true,
		AttackRange = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 },
		NeedSkillList = {
			[JOBID.JT_THIEF] = {
				{ SKID.TF_STEAL, 5 }
			}
		}
	},

 

and if having trouble when client clash, don't unpack from data.grf, copy the one from translation team

Share this post


Link to post
Share on other sites
  • 0
Knight: {
	inherit: ( "Swordsman" );

	skills: {
		KN_SPEARMASTERY: 10
		KN_PIERCE: {
			MaxLevel: 10
			KN_SPEARMASTERY: 1
		}
		KN_BRANDISHSPEAR: {
			MaxLevel: 10
			KN_RIDING: 1
			KN_SPEARSTAB: 3
		}
		KN_SPEARSTAB: {
			MaxLevel: 10
			KN_PIERCE: 5
		}
		KN_SPEARBOOMERANG: {
			MaxLevel: 5
			KN_PIERCE: 3
		}
		KN_TWOHANDQUICKEN: {
			MaxLevel: 10
			SM_TWOHAND: 1
		}
		KN_AUTOCOUNTER: {
			MaxLevel: 5
			SM_TWOHAND: 1
		}
		KN_BOWLINGBASH: {
			MaxLevel: 10
			SM_BASH: 10
			SM_MAGNUM: 3
			SM_TWOHAND: 5
			KN_TWOHANDQUICKEN: 10
			KN_AUTOCOUNTER: 5
		}
		KN_RIDING: {
			MaxLevel: 1
			SM_ENDURE: 1
		}
		KN_CAVALIERMASTERY: {
			MaxLevel: 5
			KN_RIDING: 1
		}
		KN_CHARGEATK: 1
		KN_ONEHAND: {
			MaxLevel: 1
			KN_TWOHANDQUICKEN: 10
		}
		TF_HIDING: 10
	}
}

ok I don't know why, but the TF_HIDING has to be the last ... probably because it is [25] ??
previously can't learn the skill, now suddenly can

 

Actually I don't know why sometimes can put skill points in and sometimes it doesn't work either !!

Edited by AnnieRuru

Share this post


Link to post
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.   Restore formatting

  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.

Loading...
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.