Quote:
Originally Posted by YukiXian
Someone may knows how to change the hits that people will hit on eachother? Cuz i want to make it less. Now an level 90 can kill an 130 .... 1 hit with 20K or something :confused:
------------------------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------------------
* Edit * : Hey adz06676, Look ur Message Box :p. Sorry for the late response ! :( *
------------------------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------------------
|
Starts on about line 212 in the character.cs
Change the red parts to lower the atk
ItemGem(1/2) == (11/12/13)
11 = Normal Gem
12 = Refined Gem
13 = Super Gem
I kno 0.01 will bring ur atks down to about 5-6k
You gta edit for each equip this example is the head gear
if (Unequip == false)
{
Defense += ExtraDef;
MDefense += ExtraMDef;
MaxHP += ExtraHP;
MAtk += ExtraMAtk;
if (ItemGem1 == 11)
AddAtkPc += 0.05;
if (ItemGem2 == 11)
AddAtkPc += 0.05;
if (ItemGem1 == 12)
AddAtkPc += 0.1;
if (ItemGem2 == 12)
AddAtkPc += 0.1;
if (ItemGem1 == 13)
AddAtkPc += 0.15;
if (ItemGem2 == 13)
AddAtkPc += 0.15;
}
else
{
Defense -= ExtraDef;
MDefense -= ExtraMDef;
MaxHP -= ExtraHP;
MAtk -= ExtraMAtk;
if (ItemGem1 == 11)
AddAtkPc -= 0.05;
if (ItemGem2 == 11)
AddAtkPc -= 0.05;
if (ItemGem1 == 12)
AddAtkPc -= 0.1;
if (ItemGem2 == 12)
AddAtkPc -= 0.1;
if (ItemGem1 == 13)
AddAtkPc -= 0.15;
if (ItemGem2 == 13)
AddAtkPc -= 0.15;
}