Changing the set bonus effects

04/21/2019 01:56 AnakinBlade#1
Hey guys,
I am looking for a way to change the set upgrade bonus. I am talking about the +3~10 full set bonuses. I looked in the files but i can not find those anywhere.

Anyone know where i can change those? :D
04/21/2019 10:13 Naltalah#2
expTable.inc

Search for Setitem

If you want to change it in the source: CProject::LoadExpTable()
04/26/2019 14:51 pakinglalat#3
File propItemEtc.inc

Code:
SetItem		1	IDS_PROPITEMETC_INC_000001
{
	Elem
	{
		II_ARM_F_VAG_HELMET04		PARTS_CAP
		II_ARM_F_VAG_SUIT04			PARTS_UPPER_BODY
		II_ARM_F_VAG_GAUNTLET04		PARTS_HAND
		II_ARM_F_VAG_BOOTS04		PARTS_FOOT
	}
	Avail
	{
		DST_HP_MAX		150	4
		DST_SPEED		20	3
		DST_ADJDEF		23	3
		DST_HP_MAX		50	2
		DST_STR			3	2
	}
}
Give it a few minutes of understanding and you will get it somehow.
04/26/2019 15:20 KingKeesie#4
^^
04/26/2019 20:25 Naltalah#5
Quote:
Originally Posted by pakinglalat View Post
File propItemEtc.inc

Code:
SetItem		1	IDS_PROPITEMETC_INC_000001
{
	Elem
	{
		II_ARM_F_VAG_HELMET04		PARTS_CAP
		II_ARM_F_VAG_SUIT04			PARTS_UPPER_BODY
		II_ARM_F_VAG_GAUNTLET04		PARTS_HAND
		II_ARM_F_VAG_BOOTS04		PARTS_FOOT
	}
	Avail
	{
		DST_HP_MAX		150	4
		DST_SPEED		20	3
		DST_ADJDEF		23	3
		DST_HP_MAX		50	2
		DST_STR			3	2
	}
}
Give it a few minutes of understanding and you will get it somehow.
OP was talking about the extra stats you get when every equip piece is on a certain upgrade level, not the set effects themselves.