HowToAddCreaturesStendhal: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
imported>AntumDeluge →Balance A Creature: add note that balancer does not make any changes to creatures |
imported>AntumDeluge →Ant Command Line: multiple creatures as argument now supported |
||
| Line 183: | Line 183: | ||
* To run the balancer using the <code>ant</code> command, you will need to have [https://ant.apache.org/ Apache Ant] installed. |
* To run the balancer using the <code>ant</code> command, you will need to have [https://ant.apache.org/ Apache Ant] installed. |
||
* Currently this method does ''NOT'' support running the balancer without any creature name arguments. |
* Currently this method does ''NOT'' support running the balancer without any creature name arguments. |
||
* Currently this method supports only one creature name argument. |
|||
* Currently this method does ''NOT'' support displaying XP suggestion. |
* Currently this method does ''NOT'' support displaying XP suggestion. |
||
Steps: |
Steps: |
||
# From your command line, navigate to the root directory of the Stendhal source. |
# From your command line, navigate to the root directory of the Stendhal source. |
||
# Execute the following command (replace " |
# Execute the following command (replace "name" with the creature you want to balance): |
||
#* <code>ant balance -Dcreature=" |
#* <code>ant balance -Dcreature="name"</code> |
||
#* Multiple creatures can be processed at once by simply adding multiple creature names separated with whitespace: <code>-Dcreature="lion tiger bear"</code> |
|||
#* Creature names containing whitespace '''''must''''' be enclosed within nested double or single quotes. Examples: |
|||
#** <code>-Dcreature="\"mountain orc\""</code> ''(single creature)'' |
|||
#** <code>-Dcreature="'mountain orc'"</code> ''(single creature)'' |
|||
#** <code>-Dcreature='"mountain orc"'</code> ''(single creature)'' |
|||
#** <code>-Dcreature="'mountain orc' orc"</code> ''(multiple creatures)'' |
|||
=== Implementing Output === |
=== Implementing Output === |
||