... | ... | @@ -22,4 +22,21 @@ Keep in mind these arguments are all optional (which is what makes the item gen |
|
|
Still being worked on
|
|
|
|
|
|
== Using MMOCore drop tables
|
|
|
Coming soon |
|
|
\ No newline at end of file |
|
|
Use this MMOCore table item if you want to add a specific item generator template to one of your MMOCore drop tables:
|
|
|
```
|
|
|
gentemplate{id=TEMPLATE_ID;tier=TIER_NAME;level=<int>;match-level=<true/false>} <chance> <min-max>
|
|
|
```
|
|
|
| Argument | Use |
|
|
|
| {{{id=TEMPLATE_ID}}} | Choose what item gen template you are using. |
|
|
|
| {{{level=<item-level>}}} | Forces the item level to be around level Y. |
|
|
|
| {{{tier=ITEM_TIER_ID}}} | Forces the item to be tier X. |
|
|
|
| {{{match-level=<true/false>}}} | The item level will match the player's level. |
|
|
|
|
|
|
Use this MMOCore table item if you do not want to use a specific gen template, but rather choose one randomly from all registered templates based on specific criterias. All the previous parameters (except for {{{id}}}) can be used on that format as well:
|
|
|
```
|
|
|
miloot{type=ITEM_TYPE_ID;class=PLAYER_CLASS;match-class=<true/false>;tier=TIER_NAME;level=<int>;match-level=<true/false>} <chance> <min-max>}
|
|
|
```
|
|
|
| Argument | Use |
|
|
|
| {{{type=ITEM_TYPE_ID}}} | Forces the item to be of a specific type. |
|
|
|
| {{{class="Class Name"}}} | The item is guaranteed to be usable by a certain class. |
|
|
|
| {{{match-class=<true/false>}}} | The player is guaranteed to meet the item class requirements. | |
|
|
\ No newline at end of file |