Both sides previous revisionPrevious revisionNext revision | Previous revision |
tag-gloss [2023/04/03 04:46] – banerjeesw | tag-gloss [2024/03/24 05:41] (current) – [Script Calls] banerjeesw |
---|
| <code>DisableCardLibrary</code> | [[plugin-core|Core Plugin]] | Map & Battle | Removes the **Card Library** option from the Menu. | | | <code>DisableCardLibrary</code> | [[plugin-core|Core Plugin]] | Map & Battle | Removes the **Card Library** option from the Menu. | |
| <code>OpenCardLibrary</code> | [[plugin-core|Core Plugin]] | Map & Battle | Opens the **Card Library** scene directly. This can be done from the map. | | | <code>OpenCardLibrary</code> | [[plugin-core|Core Plugin]] | Map & Battle | Opens the **Card Library** scene directly. This can be done from the map. | |
| <code>ShowCard [ID] [x] [y] [angle] [index]</code> | [[plugin-show-card|Show Card Plugin]] | Map & Battle | Replace the brackets with their respective fields. Index works just like the Number when you Show Picture.\\ \\ If Index is omitted, it will just find a new index and create a new card.\\ \\ If angle is omitted, the angle will be 0. | | | <code>ShowCard [ID] [x] [y] [angle] [index]</code> | [[plugin-show-card|Show Card]] | Map & Battle | Replace the brackets with their respective fields. Index works just like the Number when you Show Picture.\\ \\ If Index is omitted, it will just find a new index and create a new card.\\ \\ If angle is omitted, the angle will be 0. | |
| <code>HideCardID [ID]</code> | [[plugin-show-card|Show Card Plugin]] | Map & Battle | This un-shows the card with the specified skill ID. If two or more cards have the same ID, it will hide the most recently added card. | | | <code>HideCardID [ID]</code> | [[plugin-show-card|Show Card]] | Map & Battle | This un-shows the card with the specified skill ID. If two or more cards have the same ID, it will hide the most recently added card. | |
| <code>HideCardIndex [index]</code> | [[plugin-show-card|Show Card Plugin]] | Map & Battle | This hides the card at the specified index. | | | <code>HideCardIndex [index]</code> | [[plugin-show-card|Show Card]] | Map & Battle | This hides the card at the specified index. | |
| <code>HideAllCards</code> | [[plugin-show-card|Show Card Plugin]] | Map & Battle | This will hide all cards. | | | <code>HideAllCards</code> | [[plugin-show-card|Show Card]] | Map & Battle | This will hide all cards. | |
| <code>MoveCard [index] [x] [y]</code> | [[plugin-show-card|Show Card Plugin]] | Map & Battle | This moves the card of the specified index to the specified x and y coordinates. | | | <code>MoveCard [index] [x] [y]</code> | [[plugin-show-card|Show Card]] | Map & Battle | This moves the card of the specified index to the specified x and y coordinates. | |
| |
===== Notetags ===== | ===== Notetags ===== |
Depending on where the Script Call is being called, the variable for [Actor] will be different based on the context. When you are using these Script Calls in Skills & Items (either as a Card Action Eval or YEP Action Sequence Eval), [Actor] can be **user** (if referring to the User) or **target** (if referring to Allies). When using these Script Calls in Troop & Common Events, you will need to grab a direct reference to the [Actor] such as **$gameParty.leader()** or **$gameParty.members()[1]** in order to make these Script Calls. | Depending on where the Script Call is being called, the variable for [Actor] will be different based on the context. When you are using these Script Calls in Skills & Items (either as a Card Action Eval or YEP Action Sequence Eval), [Actor] can be **user** (if referring to the User) or **target** (if referring to Allies). When using these Script Calls in Troop & Common Events, you will need to grab a direct reference to the [Actor] such as **$gameParty.leader()** or **$gameParty.members()[1]** in order to make these Script Calls. |
| |
**Note**: Trying to do Card Action Script Calls on Enemies will at the best of times have no effect and other times crash the game. This is because Enemies don't use Cards or have Decks (as of v1.5.1 of IsiahCardGameCombat) | **Note**: Trying to do Card Action Script Calls on Enemies will at the best of times have no effect and other times crash the game. This is because Enemies don't use Cards or have Decks (as of v1.6.0 of MYTH_CGC_CoreEngine) |