Recent content by NB_SuL

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  1. N

    Error saving variables

    Hello. The error message contains a bit of Korean because I am Korean. In line 3~4, "다른 프로세스가 파일을 사용 중 이기 때문에 프로세스가 액세스 할 수 없습니다." means "The process cannot access because another process is using the file". Anyway, I keep getting these errors at irregular intervals, and the error message says...
  2. N

    Error saving variables

    Hello. The error message contains a bit of Korean because I am Korean. In line 3~4, "다른 프로세스가 파일을 사용 중 이기 때문에 프로세스가 액세스 할 수 없습니다." means "The process cannot access because another process is using the file". Anyway, I keep getting these errors at irregular intervals, and the error message says...
  3. N

    Solved how to use arrayList?

    I resolved this problem by using loop-item.getItem(). Thank you all for answering!
  4. N

    Solved how to use arrayList?

    set {_items} to new ArrayList() loop all items in player's inventory: {_items}.add(loop-item) loop ...{_items}: give loop-value to player it is not able to give loop-value to player. When I printed out the {_items}, the user inventory slot was printed. Is the add part wrong? Just so...
  5. N

    MundoSk named_sound_effect packet

    set {_packet} to new play_server_named_sound_effect packet set string pinfo 0 of {_packet} to "entity.horse.death" After doing this, string pinfo 0 of {_packet} is printed <none>. I don't know why this isn't working.
  6. N

    I wonder why Skript's performance is so different from Java.

    I recently compared the computation speed with the same code from Skript and Java Plugin and there was a huge difference. But isn't Skript's code going to eventually be translated into Java's code? So, why does Skript have such a huge performance gap with Java Plugin? And is there any way to...