ItemCooldowns
Link to itemcooldowns
Importing the class
Link to importing-the-class
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.
ZenScript Copyimport crafttweaker.api.item.ItemCooldowns;
Methods
Link to methods
Name: addCooldown
Return Type: void
ZenScript CopyItemCooldowns.addCooldown(item as ItemDefinition, ticks as int) as void
Parameter | Type | Description |
---|---|---|
Parameter item | Type ItemDefinition | Description No Description Provided |
Parameter ticks | Type int | Description No Description Provided |
Name: getCooldownPercent
Return Type: float
ZenScript CopyItemCooldowns.getCooldownPercent(item as ItemDefinition, partialTicks as float) as float
Parameter | Type | Description |
---|---|---|
Parameter item | Type ItemDefinition | Description No Description Provided |
Parameter partialTicks | Type float | Description No Description Provided |
Name: isOnCooldown
Return Type: boolean
ZenScript CopyItemCooldowns.isOnCooldown(item as ItemDefinition) as boolean
Parameter | Type | Description |
---|---|---|
Parameter item | Type ItemDefinition | Description No Description Provided |
Name: removeCooldown
Return Type: void
ZenScript CopyItemCooldowns.removeCooldown(item as ItemDefinition) as void
Parameter | Type | Description |
---|---|---|
Parameter item | Type ItemDefinition | Description No Description Provided |