Ep3. The Event System (ft. Exploding Cows) - Minecraft Plugin Development

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 ม.ค. 2025

ความคิดเห็น • 21

  • @jonathonwandy
    @jonathonwandy ปีที่แล้ว +5

    This series will explode eventually. Your great. Thanks.

  • @Adam-ny5gp
    @Adam-ny5gp ปีที่แล้ว +7

    This content is golden, I would have said it is totally undervalued or underappreciated, but I think it's more so a hidden gem than anything. I really needed these videos as they are up to date compared to the mainstream tutorials I've come across. More than that, what's most impressive is that you present valuable background material, covering not just how to do things, but why to do them that way. Sometimes I feel very uneasy just blindly following tutorials because for one, I don't know who that person is to be trusting the way they may just be doing things - but I feel confident in taking what you say at face value.
    Could you PLEASE cover data persistence, or at least suggest what the standard options are in plugin development?

    • @kangarko
      @kangarko  ปีที่แล้ว

      Thank you so much!
      Sure, I covered data persistence here: th-cam.com/video/sQmNWUwK4DA/w-d-xo.html

  • @ultiended
    @ultiended หลายเดือนก่อน

    6:45 I watched your previous video and copied your settings, but the popup thingy is still not showing for me?

  • @Guihgo
    @Guihgo 7 หลายเดือนก่อน +2

    please to low the size of webcam video, its above the content

  • @LeJun-rj9yf
    @LeJun-rj9yf 10 หลายเดือนก่อน +1

    I like your tutorial videos❤.Why not come to Bilibili?Maybe audiences there will enjoy your videos too!🎉

  • @AndDum-b6s
    @AndDum-b6s ปีที่แล้ว +2

    How do I connect to my server?(or what does that terminal do?)

    • @kangarko
      @kangarko  ปีที่แล้ว +1

      What do you mean? Run a local test server as I show in Ep2, there you install the plugin. The terminal is the server console which prints logging messages and can run commands.

    • @jonathonwandy
      @jonathonwandy ปีที่แล้ว +2

      You didn't show how to join it though@@kangarko

    • @kangarko
      @kangarko  ปีที่แล้ว +4

      @@jonathonwandy Oh sorry, I just assumed that people would be familiar with this. I found a video for you explaining how to do that, should be quite simple: th-cam.com/video/pvVWzQyqy_s/w-d-xo.html

  • @tylerrun
    @tylerrun ปีที่แล้ว +1

    Can I get your theme ur using on the IntelliJ IDEA please

    • @kangarko
      @kangarko  ปีที่แล้ว

      I am using IntelliJ EAP, where you can enable the new design here: i.imgur.com/jlTVeN1.png

  • @timl550
    @timl550 ปีที่แล้ว +2

    Nice

  • @Kavin-bo1zb
    @Kavin-bo1zb 9 หลายเดือนก่อน +1

    I love you so much, your content is underrated

  • @lugoti1
    @lugoti1 ปีที่แล้ว +1

    what if I want to make cows fly? Is there a way to do it?

    • @kangarko
      @kangarko  ปีที่แล้ว +2

      You can try
      cow.setGravity(false);
      cow.setVelocity(new Vector(Math.random(), 1, Math.random()));
      The first disables gravity (careful with that), and the second should randomly disperse the cow up and to random x-z directions. You can run a delayed task to enable gravity after 1 second so the cows won't fly infinitely.

  • @DRAGNIL68
    @DRAGNIL68 ปีที่แล้ว +3

    10/10

  • @신율-u2r
    @신율-u2r 11 หลายเดือนก่อน +2

    Nag author(s): '[]' of 'Practice v1.0.0' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger). How do we solve this problem?

    • @kangarko
      @kangarko  10 หลายเดือนก่อน +1

      By applying the advice in that message

  • @KoomPhaiCh
    @KoomPhaiCh 7 หลายเดือนก่อน

    minecraft program can't find org.bukkit

    • @kangarko
      @kangarko  7 หลายเดือนก่อน

      Check previous episodes to ensure you're following the Spigot API importing procedure, check your pom.xml