User Tools

Site Tools


tag-gloss

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
tag-gloss [2023/03/31 19:57] banerjeeswtag-gloss [2024/03/24 05:41] (current) – [Script Calls] banerjeesw
Line 11: Line 11:
 | <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 =====
Line 66: Line 66:
 | <code>[Actor].removeCardsUntil(x)</code>  |  [[plugin-core|Core Plugin]]  | Skill, Item, Troop Event, Common Event  | Will prompt to Remove Cards until X cards are left. If X is 0, will automatically remove all cards in Hand. | | <code>[Actor].removeCardsUntil(x)</code>  |  [[plugin-core|Core Plugin]]  | Skill, Item, Troop Event, Common Event  | Will prompt to Remove Cards until X cards are left. If X is 0, will automatically remove all cards in Hand. |
 | <code>[Actor].millCards(x)</code>  |  [[plugin-core|Core Plugin]]  | Skill, Item, Troop Event, Common Event  | Puts the top X cards from Deck into their Discard.  | | <code>[Actor].millCards(x)</code>  |  [[plugin-core|Core Plugin]]  | Skill, Item, Troop Event, Common Event  | Puts the top X cards from Deck into their Discard.  |
-| <code>[Actor].shuffleDeck(x)</code>  |  [[plugin-core|Core Plugin]]  | Skill, Item, Troop Event, Common Event  | Shuffles the user's Deck.  |+| <code>[Actor].shuffleDeck()</code>  |  [[plugin-core|Core Plugin]]  | Skill, Item, Troop Event, Common Event  | Shuffles the user's Deck.  |
 | <code>[Actor].addCardToZone(x, zone)</code>  |  [[plugin-core|Core Plugin]]  | Skill, Item, Troop Event, Common Event  | Adds Card with Skill ID X to target Zone ("hand", "deck", "discard" | | <code>[Actor].addCardToZone(x, zone)</code>  |  [[plugin-core|Core Plugin]]  | Skill, Item, Troop Event, Common Event  | Adds Card with Skill ID X to target Zone ("hand", "deck", "discard" |
 | <code>[Actor].moveCards(x, zone1, zone2)</code>  |  [[plugin-core|Core Plugin]]  | Skill, Item, Troop Event, Common Event  | Will move X cards from one Zone to another such as "hand", "deck", "discard"  | | <code>[Actor].moveCards(x, zone1, zone2)</code>  |  [[plugin-core|Core Plugin]]  | Skill, Item, Troop Event, Common Event  | Will move X cards from one Zone to another such as "hand", "deck", "discard"  |
Line 73: Line 73:
 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.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.of MYTH_CGC_CoreEngine)
tag-gloss.1680285463.txt.gz · Last modified: 2023/03/31 19:57 by banerjeesw