Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

API and Macro to equip and unequip thing like shields.

Looking for an API and macro to remove the equipped check from an item. Any ideas?
If this is for the 5e OGL character sheet, I have an  API script that was made for this exact purpose 
Kyle G. said: If this is for the 5e OGL character sheet, I have an  API script that was made for this exact purpose  Awesome and is there a How to use doc?
Just what is in the comment at the top of the script /** * Inventory Tracker for 5e OGL character sheet * * Allows for quick access to the equipped items of a character. * * Commands: * !equipShow [--item|<ITEM_NAME> [--charid|<CHARACTER_ID>]] * Shows the equipped item(s) for the character that belongs to the selected token. * If no arguments are given, displays all equipped items of the character representing the selected token. * * If --item|<ITEM_NAME> is given, will display the equipped status for the given item. * If --charid|<CHARACTER_ID> is given, will attempt to find the item on the character with the given ID. * * The name of the item(s) in the chat allow a player who can control that character to toggle the equipment * status for that particular item utilizing the !equipToggle command. * * !equipToggle --charid|<CHARACTER_ID> --item|<ITEM_NAME> * Toggles the equipped status for the given item and outputs the new status. Clicking on the item name in the * output will toggle the equipment status again. Only players who can control the character can use this command. */
Kyle G. said: Just what is in the comment at the top of the script /** * Inventory Tracker for 5e OGL character sheet * * Allows for quick access to the equipped items of a character. * * Commands: * !equipShow [--item|<ITEM_NAME> [--charid|<CHARACTER_ID>]] * Shows the equipped item(s) for the character that belongs to the selected token. * If no arguments are given, displays all equipped items of the character representing the selected token. * * If --item|<ITEM_NAME> is given, will display the equipped status for the given item. * If --charid|<CHARACTER_ID> is given, will attempt to find the item on the character with the given ID. * * The name of the item(s) in the chat allow a player who can control that character to toggle the equipment * status for that particular item utilizing the !equipToggle command. * * !equipToggle --charid|<CHARACTER_ID> --item|<ITEM_NAME> * Toggles the equipped status for the given item and outputs the new status. Clicking on the item name in the * output will toggle the equipment status again. Only players who can control the character can use this command. */ Thanks and Ty for the API just what i need.