Advertisement
Guest User

Untitled

a guest
Aug 30th, 2014
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <if e_area="Bastok*|Port*|*San d'Oria|Windurst*"> <!-- Only equips vanity gear while in the main cities -->
  2. <equip set="Vanity" />>
  3. </if>
  4. <else>
  5. <if p_status="resting"> <!-- If resting -->
  6. <if p_mp>="1142">
  7. <equip set="MaxMp" /> <!-- Once you reach a certain MP threshold while resting, you can swap to MaxMp gear to get back even more MP -->
  8. </if>
  9. <else>
  10. <equip set="Resting" /> <!-- Until you cross that threshold above, rest in your normal hMP gear -->
  11. </else>
  12. </if>
  13. <else> <!-- If standing up -->
  14. <if p_mp>="1142">
  15. <equip set="MaxMp" />
  16. </if>
  17. <else>
  18. <equip set="Idle" />
  19. </else>
  20. </else>
  21. </else>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement