Merchant
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.entity.type.villager.Merchant;
Members
Getter
Checks if the merchant can restock.script.zs
// Merchant.canRestock as boolmyMerchant.canRestock
Return Type:
bool
canRestock() as bool
Checks if the merchant can restock.script.zs
Returns: true if the merchant can restock.
// Merchant.canRestock() as bool;myMerchant.canRestock();
Return Type:
bool
Getter
Checks if the merchant is on the client side.script.zs
// Merchant.isClientSide as boolmyMerchant.isClientSide
Return Type:
bool
isClientSide() as bool
Checks if the merchant is on the client side.script.zs
Returns: true if the merchant is on the client side.
// Merchant.isClientSide() as bool;myMerchant.isClientSide();
Return Type:
bool
notifyTrade(offer as MerchantOffer)
Notifies the merchant that a trade has occurred.script.zs
myMerchant.notifyTrade(myMerchantOffer);
Parameters:
Getter
Gets the notify trade sound of the merchant.script.zs
// Merchant.notifyTradeSound as SoundEventmyMerchant.notifyTradeSound
Return Type:
SoundEvent
notifyTradeSound() as SoundEvent
Gets the notify trade sound of the merchant.script.zs
Returns: The notify trade sound of the merchant.
myMerchant.notifyTradeSound();
Return Type:
SoundEvent
Getter
Gets the script.zs
MerchantOffers
of the merchant.// Merchant.offers as MerchantOffersmyMerchant.offers
Return Type:
MerchantOffers
offers() as MerchantOffers
Gets the script.zs
MerchantOffers
of the merchant.Returns: The MerchantOffers
of the merchant.
myMerchant.offers();
Return Type:
MerchantOffers
openTradingScreen(player as Player, displayName as Component, level as int)
Opens the trading screen for the merchant.script.zs
myMerchant.openTradingScreen(myPlayer, myComponent, myInt);
Getter
Gets if the merchant should show the progress bar.script.zs
// Merchant.showProgressBar as boolmyMerchant.showProgressBar
Return Type:
bool
showProgressBar() as bool
Gets if the merchant should show the progress bar.script.zs
Returns: If the merchant should show the progress bar.
// Merchant.showProgressBar() as bool;myMerchant.showProgressBar();
Return Type:
bool
Getter
Setter
tradingPlayer(player as Player)
tradingPlayer() as Player
Getter
Gets the villager XP of the merchant.script.zs
// Merchant.villagerXp as intmyMerchant.villagerXp
Return Type:
int
villagerXp() as int
Gets the villager XP of the merchant.script.zs
Returns: The villager XP of the merchant.
// Merchant.villagerXp() as int;myMerchant.villagerXp();
Return Type:
int