Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Phantom stats

Junior Spellweaver
Joined
Apr 15, 2010
Messages
147
Reaction score
8
What part of maplecharacter would i have to look at for the phantom base stats.

- posted before finish typying...agg


- Not all the time, but im not sure if its just phantom or a certain equip that was edited.

But if my base dex is 4, and i have + 50, I cannot wear something that wants 50 dex.
(still narrowing it down)
 
Elite Diviner
Joined
Apr 26, 2009
Messages
468
Reaction score
64
PHP:
<imgdir name="20030206">
		<string name="name" value="Dexterous Training"/>
		<string name="desc" value="Phantom carries phenomenal insight and dexterity that allow him to wield a variety of weapons."/>
		<string name="h" value="DEX +#dexX, Base Avoidability: +#er%, Diligence  Lv. 20, Insight Lv. 20"/>
You have to add it to recalclocalstats
 
Upvote 0
Junior Spellweaver
Joined
Apr 15, 2010
Messages
147
Reaction score
8
Just scrolled through it in playerstats - I dont see a spot where i define the skill to add to dex

- woudnt it work if i added it to playerstats saying the skill gives what it does?

case 2003:
case 2400:
case 2410:
case 2411:
case 2412: {
bx = SkillFactory.getSkill(20030206);
bof = chra.getTotalSkillLevel(bx);
if (bof > 0) {
eff = bx.getEffect(bof);

localdex += eff.getDexX();
}

- Even that didnt work.

You actualy need the base stats. - if it says 30 dex. You need 30 dex.
 
Upvote 0
Back
Top