Custom Fuels
If you want Custom Items as Fuels you need to add them with this Command -/tbaddfuel
This Command also lets you add normal Fuels. If you want to do this you just need to type /pcaddfuel normal [Uses]
and it adds the Material you hold in your Main Hand as a Fuel. [Uses]
must be replaced by the amount you need to teleport once with this kind of item. Same as in the Config.
If you want to add a Custom Item that you hold in your Main Hand you can do that by writing /pcaddfuel custom [Uses].
This will add the custom Item as a Fuel.
But because every Developer uses different Methods to identify its own custom Items it may not work.
If you use this Command without specific Parameters it will use the ItemMeta to identify the Item. The ItemMeta is everything including the DIsplay Name, Lore, NBT Tags etc. If a Player changes the Name of the Item in an Anvil which some plugins allow it won't work. Or if the developer uses NBT Tags to store and change Data inside of the Item it may not work. Its not possible to find out what Method a Developer uses for its custom Items for certain without asking or looking at the code. That means you need to try out different tags or leave it as standard without tags. If it doesn't work without tags you should add the -tags
tag so it identifies the Item with its PersitentDataContainer that most newer Plugins use to identify the custom Item. After that you could try the -lore
tag or the -custommodeldata
tag. Theres also a -material
tag to identify the item purely with its Material. This tag should only be used with other tags in combination because its not a safe way to identify as other items can have the same Material. You can add as many tags as you want in any order or combination. If all that doesn't work the Developer uses a method i didn't add yet or won't add. You can always ask on the Discord for Help or contact the Developer to ask how he handles his custom Items. Here's a example Command if you don't know how to use Tags.
/pcaddfuel custom 3 -material -lore
3 is the [Uses] and -material and -lore are the tags. You could write the command without the tags or with more or less tags.
Last updated