options:
miktar: 50 # Düşecek XP
on right click:
execute console command "/xp -%{@miktar}% %player%"
int miktar;
@EventHandler
public void onRightClick(PlayerInteractEvent e) {
if ((e.getAction() == Action.RIGHT_CLICK_AIR) || (e.getAction() == Action.RIGHT_CLICK_BLOCK)) {
e.getPlayer().setExp(e.getPlayer().getExp()-miktar);
}
}
yok kardeş şöyle bişi istiyomPHP:options: miktar: 50 # Düşecek XP on right click: execute console command "/xp -%{@miktar}% %player%"
Bu skript tabi. Ama plugin halini de yazayım
PHP:int miktar; @EventHandler public void onRightClick(PlayerInteractEvent e) { if ((e.getAction() == Action.RIGHT_CLICK_AIR) || (e.getAction() == Action.RIGHT_CLICK_BLOCK)) { e.getPlayer().setExp(e.getPlayer().getExp()-miktar); } }