-
Total de itens
1.351 -
Registro em
-
Última visita
Respostas na Comunidade
-
AlexHackers's postagem in Plugin de Maquinas [Pago] was marked as the answer
https://www.tintadev.com/loja/detalhes/tintamaquinas
o mais usado do mercado
-
AlexHackers's postagem in Pegar um Head was marked as the answer
use o
map.put(30,getSkull(url));
se vc quiser por lore e tal vc modifica la no metodo q te passei colocando lore direto no metodo ou usando como o tópico fala
ai vc usaria
map.put(30,head);
-
AlexHackers's postagem in Impedir que uma TNT acenda outra was marked as the answer
pra q tudo isso
CÓDIGO:
@EventHandler public void teste(EntityExplodeEvent e) { if(e.getEntity().getType() == EntityType.PRIMED_TNT){ for (Block b : e.blockList()) { if (b.getType() == Material.TNT) { e.blockList().remove(b); } } } } resolvido -
AlexHackers's postagem in [Pago] Plugin de Cash was marked as the answer
Mandei so por mandar hue
http://gamersboard.com.br/topic/27938-venda-tintacoin-ganhe-dinheiro-extra-vendendo-cash-use-sua-criatividade/
-
AlexHackers's postagem in API PermissionEx 1.8 was marked as the answer
https://github.com/PEXPlugins/PermissionsEx/wiki/Integrating-with-PEX
-
AlexHackers's postagem in [PEDIDO] plugin de cash was marked as the answer
http://gamersboard.com.br/topic/27938-venda-tintacoin-ganhe-dinheiro-extra-vendendo-cash-use-sua-criatividade/
-
AlexHackers's postagem in [Entregue] Organizador de tablist was marked as the answer
vitor tinha postado um no forum so q tinha tag de clan tbm so ver ai q se acha qualquer coisa fale cmg
-
AlexHackers's postagem in [Resolvido] ConfigurationSection was marked as the answer
ja te ensinei la no skype gay u.u mais resumido q aquilo n tem como
-
AlexHackers's postagem in [Entregue] [Pedido/Pago] Plugin de tab com prioridade de ranks was marked as the answer
Entre em contato que vejo para fazer ! mande mp vou ver se posso encaixar para fazer ! e o preço q oferece
-
AlexHackers's postagem in [Entregue] [Pedido] Simpleclans traduzido was marked as the answer
Qual versão do simpleclans que eu tenho algumas traduções aqui !
-
AlexHackers's postagem in [Resolvido] COMO FAZER UMA ENTITY NAO TOMAR DANO? ENTRE AQUI! was marked as the answer
@EventHandler
public void Bot1_Dano(EntityDamageEvent e) {
if (e.getEntity() instanceof Villager) {
Villager villager = (Villager) e.getEntity();
if (villager.getCustomName().equalsIgnoreCase("§4§lTinta§f§lCraft §a» §eTutorial §a!")) {
e.setCancelled(true);
}
}
}
caso queira pegar quem bateu use
@EventHandler
public void Bot1_Dano(EntityDamageEvent e) {
if(e instanceof EntityDamageByEntityEvent) {
EntityDamageByEntityEvent event = (EntityDamageByEntityEvent) e;
Player killer = (Player) event.getDamager();
if (e.getEntity() instanceof Villager) {
if (!killer.hasPermission("tintainfo.mob1")) {
Villager villager = (Villager) e.getEntity();
if (villager.getCustomName().equalsIgnoreCase("§4§lTinta§f§lCraft §a» §eTutorial")) {
e.setCancelled(true);
}
}
}
}
}
pra caso for por permissao pra vc poder matar dps ne
}
e deixar imovel coloca um
v.addPotionEffect(new PotionEffect(PotionEffectType.SLOW, 100000, 7));
no spawn do mob
-
AlexHackers's postagem in [Resolvido] [Duvida] getStringList was marked as the answer
List<String> strings = getConfig().getStringList("Player");
strings.remove(p.getName());
getConfig().set("Player", strings);
ou
List<String> strings = getConfig().getStringList("Player");
strings.remove("joao");
getConfig().set("Player", strings);