當前位置: 首頁>>代碼示例>>Java>>正文


Java Item.setCustomNameVisible方法代碼示例

本文整理匯總了Java中org.bukkit.entity.Item.setCustomNameVisible方法的典型用法代碼示例。如果您正苦於以下問題:Java Item.setCustomNameVisible方法的具體用法?Java Item.setCustomNameVisible怎麽用?Java Item.setCustomNameVisible使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.bukkit.entity.Item的用法示例。


在下文中一共展示了Item.setCustomNameVisible方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: onInteract

import org.bukkit.entity.Item; //導入方法依賴的package包/類
@EventHandler
public void onInteract(PlayerInteractEvent e) {
	if (e.getAction() == Action.RIGHT_CLICK_BLOCK) {
		if (e.getClickedBlock().getType() == Material.CAULDRON) {
			if (e.getClickedBlock().getLocation().add(0, -1, 0).getBlock().getType() == Material.DIAMOND_BLOCK) {
				Item item = e.getPlayer().getWorld().dropItem(e.getClickedBlock().getLocation().add(0.5, 2, 0.5), e.getPlayer().getEquipment().getItemInMainHand());
				item.setMetadata("item-owner", new FixedMetadataValue(NationZ.plugin, e.getPlayer().getUniqueId().toString()));
				item.setVelocity(new Vector(0, 0, 0));
				item.setCustomName(item.getName());
				item.setCustomNameVisible(true);
				e.getPlayer().getEquipment().setItemInMainHand(null);
				e.setCancelled(true);
			}
		}
	}
}
 
開發者ID:crazyhorse961,項目名稱:NationZ,代碼行數:17,代碼來源:JobEnchanter.java

示例2: onGameTick

import org.bukkit.entity.Item; //導入方法依賴的package包/類
@EventHandler
public void onGameTick(GameTickEvent event) {
    if(event.getTicksInSecond() < potionDropPerSecond) {
        ItemStack itemStack = new ItemStack(Material.POTION, 1, (byte) 8197);
        Item entity = this.potionDropLocation.getWorld().dropItem(potionDropLocation, itemStack);
        entity.setCustomName(ChatColor.LIGHT_PURPLE + "" + ChatColor.BOLD + "Potion");
        entity.setCustomNameVisible(true);
        entity.setVelocity(new Vector(0, 0.47, 0).add(Utils.getRandomCircleVector()
            .multiply(potionVelocityMultiplier*Math.random())));
    }
}
 
開發者ID:ArcadiaPlugins,項目名稱:Arcadia-Spigot,代碼行數:12,代碼來源:PotionDropGame.java

示例3: insertItem

import org.bukkit.entity.Item; //導入方法依賴的package包/類
private void insertItem(Player p, Block b) {
	final ItemStack stack = p.getInventory().getItemInMainHand();
	if (stack != null) {
		PlayerInventory.consumeItemInHand(p);
		String nametag = StringUtils.formatItemName(stack, false);
		Item entity = b.getWorld().dropItem(b.getLocation().add(0.5, 1.2, 0.5), new CustomItem(new CustomItem(stack, 1), "&5&dALTAR &3Probe - &e" + System.nanoTime()));
		entity.setVelocity(new Vector(0, 0.1, 0));
		entity.setMetadata("no_pickup", new FixedMetadataValue(SlimefunStartup.instance, "altar_item"));
		entity.setCustomNameVisible(true);
		entity.setCustomName(nametag);
		p.playSound(b.getLocation(), Sound.ENTITY_ITEM_PICKUP, 0.3F, 0.3F);
	}
}
 
開發者ID:StarWishsama,項目名稱:Slimefun4-Chinese-Version,代碼行數:14,代碼來源:AncientAltarListener.java

示例4: spawnItem

import org.bukkit.entity.Item; //導入方法依賴的package包/類
private void spawnItem(Arena arena, BoostItem item) {
    final Location location = arena.getRandomFieldPosition(this.getRandom());
    final Item item1 = location.getWorld().dropItem(location, item.generate());
    item1.setCustomNameVisible(true);
    item1.setCustomName(item.getDisplayName());
    this.getLDroppedItems().put(item1, item);
}
 
開發者ID:Shynixn,項目名稱:BlockBall,代碼行數:8,代碼來源:ItemSpawner.java

示例5: onItemSpawn

import org.bukkit.entity.Item; //導入方法依賴的package包/類
@EventHandler
public void onItemSpawn(ItemSpawnEvent e) {
    if (e.isCancelled()) {
        return;
    }

    Item item = e.getEntity();
    ItemStack is = item.getItemStack();

    if (isMoneyItem(is)) {
        item.setCustomName(is.getItemMeta().getDisplayName());
        item.setCustomNameVisible(true);
    }
}
 
開發者ID:diecode,項目名稱:KillerMoney,代碼行數:15,代碼來源:MoneyHandler.java

示例6: spawnMoney

import org.bukkit.entity.Item; //導入方法依賴的package包/類
public void spawnMoney(Player p,float money,Location l){
	if(dropMulti.containsKey(p.getUniqueId())) money*=dropMulti.get(p.getUniqueId());
	Item item = l.getWorld().dropItemNaturally(l, getItem(Float.valueOf(money).intValue()));
	String m = String.valueOf(money);
	if (!m.contains(".")) m=m+".0";
	item.setCustomName(language.get("nameSyntax").replace("{money}", m));
	item.setCustomNameVisible(true);
}
 
開發者ID:KickVN,項目名稱:PickupMoney,代碼行數:9,代碼來源:PickupMoney.java


注:本文中的org.bukkit.entity.Item.setCustomNameVisible方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。