Skocz do zawartości

Ever

Użytkownik
  • Ilość zawartości

    224
  • Rejestracja

  • Ostatnia wizyta

Treść opublikowana przez Ever

  1. Ever

    Mój pierwszy skrypt

    Prosta ocena 2/10. Skryptow tego typu w luj. Nic nowego. Zrob cos czego nie ma to pogadamy
  2. Ever

    Pomocy :c

    Witam , mam problem. zrobilem options i co? Nie dziala. options: Items: 1 diamond sword of sharpness 5 and unbreaking 3 or 64 diamonds dalsza czesc: set {_item} to a random item out of {@Items} Pisze blad. "{_item} can only be set to one object, not more itd"
  3. Ever

    PEX

    Zainstaluj wersje permissionsEx 1.12 (najnowsza)
  4. Moge ci to za free w pluginie zrobic. Jak chcesz pisz W pluginie nie zbugujesz
  5. Ever

    problem z options

    Robie bardziej skrypt pod ustawienie w options ;/
  6. Ever

    Config

    mam jd-gui Dziekuje, @yooniks Masz moze skype/ jakis kontakt? I znalazlem ten plugin ktory napisales. Ten typek twierdzi w filmiku ze to jego plugin
  7. Ever

    problem z options

    Witam, czy jest mozliwosc zrobienia czegos takiego? options: itemy: {@item1} of {@item1.enchant} item1: 1 diamond sword item1.enchant: sharpness 5 A potem: set {_item} to a random item out of {@itemy} Tylko w moim skrypcie to tak nie dziala, da sie jakos inaczej ?
  8. Zle wytabowane, nie dziala. Tyle w temacie. 2/10. Jezeli sie uczysz skryptow nie wrzucaj ich tylko sie ich naucz.... Do bledu sam dojdz i go napraw Widac ze ich nie testujesz
  9. Ever

    Kity w qui

    @SzymiTV Masz racje. Malo skryptow pisze. Raczej pluginy. A ty sie co do sk nie odzywaj. Napisz sam jakis skrypt i sie pochwal bo narazie sam sk nie napisales
  10. Blad. Masz 2x on..... Zly dzial Skryptow tego typu jest w .....[45$%$#^%#%^%$ Ocena 4/10 Nic cie nie usprawiedliwia ze to twoj pierwszy skrypt.
  11. @Turas W porzadku, zmienie. A jakbys ocene mial wystawic to jaka bys dal?
  12. Ever

    Config

    Witam, napisalem plugin na case, z pomoca itachi. wszystko dziala ale koledzy jak zrobic config w stylu takim? Zrobi to ktos? premiumcase: item1: szansa: 10 (w procentach) item: diamond_sword enchant: sharpness, 5 @EventHandler(priority=EventPriority.MONITOR) public void onPlace(BlockPlaceEvent e){ Player p = e.getPlayer(); Block b = e.getBlock(); if(e.isCancelled()){ return; } if(b.getType() == Material.CHEST){ ItemMeta im = p.getItemInHand().getItemMeta(); if(im.getDisplayName() != null){ if(im.getDisplayName().toLowerCase().equalsIgnoreCase(Util.Color("&b&lPREMIUM&6&lCASE"))){ b.setType(Material.AIR); if(Math.random() *100 < 1.1){ ItemStack item1 = new ItemBuilder(Material.DIAMOND_SWORD).addEnchant(Enchantment.DAMAGE_ALL, 5).addEnchant(Enchantment.FIRE_ASPECT, 2).toItemStack(); b.getWorld().dropItemNaturally(b.getLocation(), item1); } if(Math.random() *100 < 1.2){ ItemStack item2 = new ItemBuilder(Material.DIAMOND_PICKAXE).addEnchant(Enchantment.DIG_SPEED, 5).addEnchant(Enchantment.DURABILITY, 3).addEnchant(Enchantment.LOOT_BONUS_BLOCKS, 3).toItemStack(); b.getWorld().dropItemNaturally(b.getLocation(), item2); } if(Math.random() *100 < 0.125){ ItemStack item3 = new ItemBuilder(Material.BEACON).toItemStack(); b.getWorld().dropItemNaturally(b.getLocation(), item3); } if(Math.random() *100 < 10){ ItemStack item4 = new ItemBuilder(Material.IRON_HELMET).addEnchant(Enchantment.PROTECTION_ENVIRONMENTAL, 4).addEnchant(Enchantment.DURABILITY, 3).toItemStack(); b.getWorld().dropItemNaturally(b.getLocation(), item4); } if(Math.random() *100 < 10){ ItemStack item4 = new ItemBuilder(Material.IRON_CHESTPLATE).addEnchant(Enchantment.PROTECTION_ENVIRONMENTAL, 4).addEnchant(Enchantment.DURABILITY, 3).toItemStack(); b.getWorld().dropItemNaturally(b.getLocation(), item4); } if(Math.random() *100 < 10){ ItemStack item4 = new ItemBuilder(Material.IRON_LEGGINGS).addEnchant(Enchantment.PROTECTION_ENVIRONMENTAL, 4).addEnchant(Enchantment.DURABILITY, 3).toItemStack(); b.getWorld().dropItemNaturally(b.getLocation(), item4); } if(Math.random() *100 < 10){ ItemStack item5 = new ItemBuilder(Material.IRON_BOOTS).addEnchant(Enchantment.PROTECTION_ENVIRONMENTAL, 4).addEnchant(Enchantment.DURABILITY, 3).toItemStack(); b.getWorld().dropItemNaturally(b.getLocation(), item5); } if(Math.random() *100 < 0.135){ ItemStack item6 = new ItemBuilder(Material.DIAMOND_PICKAXE).addEnchant(Enchantment.DIG_SPEED, 6).addEnchant(Enchantment.DURABILITY, 2).addEnchant(Enchantment.LOOT_BONUS_BLOCKS, 3).setName(Util.Color("&b&lSuper kilof")).setLore("", Util.Color("&7Tym kilofem kopiesz szybciej"), Util.Color("&eSurowce z rud dropia okolo &e&n3x wiecej"), Util.Color("&c&lKilof ten mozesz naprawic za pomoca &8[&c/repair&8]")).toItemStack(); b.getWorld().dropItemNaturally(b.getLocation(), item6); } if(Math.random() *100 < 14){ ItemStack item7 = new ItemBuilder(Material.DIAMOND, 64).toItemStack(); b.getWorld().dropItemNaturally(b.getLocation(), item7); } if(Math.random() *100 < 10){ ItemStack item9 = new ItemBuilder(Material.EMERALD, 64).toItemStack(); b.getWorld().dropItemNaturally(b.getLocation(), item9); } if(Math.random() *100 < 2.23){ ItemStack item10 = new ItemBuilder(Material.ENDER_PEARL, 8).toItemStack(); b.getWorld().dropItemNaturally(b.getLocation(), item10); } if(Math.random() *100 < 0.146){ ItemStack item11 = new ItemBuilder(Material.DIAMOND_AXE).addEnchant(Enchantment.DAMAGE_ALL, 7).addEnchant(Enchantment.FIRE_ASPECT, 2).addEnchant(Enchantment.DURABILITY, 3).setName(Util.Color("&4&lSiekierka pvp")).setLore("", Util.Color("&7To orginalna siekierka pvp z serwerow &8[&c1.5&8]"), Util.Color("&eKlepa nia to prawdziwa przyjemnosc :)"), Util.Color("&c&lSiekierke mozesz naprawic za pomoca &8[&c/repair&8]")).toItemStack(); b.getWorld().dropItemNaturally(b.getLocation(), item11); } if(Math.random() *100 < 1.11){ ItemStack item12 = new ItemBuilder(Material.BOW).addEnchant(Enchantment.ARROW_KNOCKBACK, 2).addEnchant(Enchantment.ARROW_INFINITE, 1).addEnchant(Enchantment.DURABILITY, 3).toItemStack(); b.getWorld().dropItemNaturally(b.getLocation(), item12); } if(Math.random() *100 < 3.3){ ItemStack item13 = new ItemBuilder(Material.DIAMOND_HELMET).addEnchant(Enchantment.PROTECTION_ENVIRONMENTAL, 4).addEnchant(Enchantment.DURABILITY, 3).toItemStack(); b.getWorld().dropItemNaturally(b.getLocation(), item13); } if(Math.random() *100 < 3.3){ ItemStack item14 = new ItemBuilder(Material.DIAMOND_CHESTPLATE).addEnchant(Enchantment.PROTECTION_ENVIRONMENTAL, 4).addEnchant(Enchantment.DURABILITY, 3).toItemStack(); b.getWorld().dropItemNaturally(b.getLocation(), item14); } if(Math.random() *100 < 3.3){ ItemStack item15 = new ItemBuilder(Material.DIAMOND_LEGGINGS).addEnchant(Enchantment.PROTECTION_ENVIRONMENTAL, 4).addEnchant(Enchantment.DURABILITY, 3).toItemStack(); b.getWorld().dropItemNaturally(b.getLocation(), item15); } if(Math.random() *100 < 3.3){ ItemStack item16 = new ItemBuilder(Material.DIAMOND_BOOTS).addEnchant(Enchantment.PROTECTION_ENVIRONMENTAL, 4).addEnchant(Enchantment.DURABILITY, 3).toItemStack(); b.getWorld().dropItemNaturally(b.getLocation(), item16); } if(Math.random() *100 < 5){ ItemStack item18 = new ItemBuilder(Material.IRON_PICKAXE).addEnchant(Enchantment.DIG_SPEED, 5).addEnchant(Enchantment.DURABILITY, 2).addEnchant(Enchantment.LOOT_BONUS_BLOCKS, 3).toItemStack(); b.getWorld().dropItemNaturally(b.getLocation(), item18); } } } }
  13. Ever

    Kity w qui

    Tak. Da sie
  14. Masz zla wersje skrayfall. Zapis @LuckyPotato jedt dobry. Polecam zmienic wersje skrayfall
  15. Stop nic nie zmieni. Zatrzymuje tylko dzialanie skryptu
  16. Masz dodatek skRayFall?
  17. Dzieki za zgloszenie bledu, poprawie go. Ale powinienes wpisac komende /v [nick] Zaraz wyjdzie aktualizacja. Poprawa + uproszczenie dla glosowania
  18. Ever

    xNERO_xZestawy

    Brak argumentow, wymagany essentials, skryptow tego typu jest w dużo. Skrypt oceniam na 2/10.....
  19. A dziekuje
  20. Ever

    FUNNYGUILDS

    tablist: on masz wlaczone?
  21. Siema, czemu przy linijce 27 mam blad "There's no player in a ......" itd. variables: {kit::gracz::%player%} = 0 {kit::vip::%player%} = 0 {kit::yt::%player%} = 0 {kit::gracz::name::%player%} = "&a&lDOSTEPNY!" {kit::vip::name::%player%} = "&a&lDOSTEPNY!" {kit::yt::name::%player%} = "&a&lDOSTEPNY!" command /kit [<text>]: trigger: if arg 1 is not set: open chest with 1 rows named "&8[&a&lZestawy&8]" to player wait 1 tick if player has permission "kity.gracz": if {kit::gracz::%player%} = 0: format slot 0 of player with 1 stone sword named "&a&lZestaw &7&lgracz" with lore "&c##&7Kliknij aby otrzymac zestaw gracz||&c##%{kit::gracz::name::%player%}%" to run [execute player command "kit graczrun"] else: format slot 0 of player with 1 stone sword named "&a&lZestaw &7&lgracz" with lore "&c##&7Kliknij aby otrzymac zestaw gracz||&c##%{kit::gracz::name::%player%}%||&cZestaw mozna brac co 30 minut!" to be unstealable else: format slot 0 of player with 1 stone sword named "&a&lZestaw &7&lgracz" with lore "&c##&7Kliknij aby otrzymac zestaw gracz||&c##%{kit::gracz::name::%player%}%" to be unstealable send "&8##&cBrak uprawnien." if arg 1 is "graczrun": set {kit::gracz::name::%player%} to "&c&lNIEDOSTEPNY" set {kit::gracz::%player%} to 10 open chest with 1 row named "&8[&a&lZestaw &7&lgracz&8]" to player format slot 0 of player with 1 iron pickaxe named "" to be unstealable every 1 second: if {kit::gracz::%player%} > 1: remove 1 from {kit::gracz::%player%} if {kit::gracz::%player%} = 1: set {kit::gracz::%player%} to 0 set {kit::gracz::name::%player%} to "&a&lDOSTEPNY!"
  22. Dlatego dodalem permisje. Nie kazdy bedzie mogl to robic. Przyjmuje twoj komentarz i pomysle nad tym co zrobic :). Mozesz wystawic ocene od 0 do 10.
  23. @Override public boolean onCommand(CommandSender sender, Command command, String label, String[] args) { if(command.getName().equalsIgnoreCase("witaj")) { String str = plugin.getConfig().getString("path.to.string"); System.out.println(str); Aha, no dobra. Czyżby config nie powinien wyglądać tak: path: to: string: - ""
  24. Witam, czasami zdarza się na serwerach, że nie ma nikogo z administracji (aktualnie) a jest taki gracz, który cheatuje, wyzywa, niszczy innym gre. Wystarczy, że go wyrzucisz za pomocą mojego skryptu na wyrzucanie. Wiem, że znajdują się takie pluginy ale skryptu jeszcze nie widziałem. Jest to dopiero wersja Beta v 1.0 Więc będzie jeszcze dużo aktualizacji i ulepszeń. Ta wersja jest tylko do głównych testów. Miłego użytkowania Wersja Beta v 1.0 - Proszę o zgłaszanie błędów
  25. Ever

    DO USUNIĘCIA

    Cxy ty wiesz co to core? To najgorszy skrypt jaki widzialem. Meczaca konfiguracja. Bany sa skopiowane. Tylko wiadomosci przerobiles. To jest moze 1/20 dla calego serwera.
×
×
  • Dodaj nową pozycję...