Profile Question
Posted: Wed Sep 21, 2011 5:13 am
Everytime I switch Characters, I have to go into my profile and set COMBAT_TYPE to ranged when I switch to mage or priest and vice-versa when I turn into Knight.
Can I use an if statement to have it done on it's own?
i.e.:
I would try it out now, but I'm at work.
If I leave COMBAT_TYPE empty, MM gives out a full screen of yellow text.
Can I use an if statement to have it done on it's own?
i.e.:
Code: Select all
if player.Class1 == CLASS_KNIGHT then
<option name="COMBAT_TYPE" value="melee" /> <!-- leave empty or choose ranged/melee if not using class default -->
<option name="COMBAT_RANGED_PULL" value="false" /> <!-- only important for melees -->
else
<option name="COMBAT_TYPE" value="ranged" /> <!-- leave empty or choose ranged/melee if not using class default -->
<option name="COMBAT_RANGED_PULL" value="true" /> <!-- only important for melees -->
endIf I leave COMBAT_TYPE empty, MM gives out a full screen of yellow text.