Solved ressource pack in skript without skquery

  • 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!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

ZeyKra_

Active Member
Dec 12, 2019
109
2
18
18
a baguette
Is there a way to send a ressource packs without using skquery.

I cant use skquery syntax ressource packs because my server is running 1.8 version and to send a ressource packs with skquery i need to use 3.6.4 version of skquery but when on 3.6.4 version 'with lore' don't work

I think there is a way to send ressources packs by maybe using skript-mirror

(Sorry for my bad english I'm still french)
 
Is there a way to send a ressource packs without using skquery.

I cant use skquery syntax ressource packs because my server is running 1.8 version and to send a ressource packs with skquery i need to use 3.6.4 version of skquery but when on 3.6.4 version 'with lore' don't work

I think there is a way to send ressources packs by maybe using skript-mirror

(Sorry for my bad english I'm still french)

Propanbly don't need it anymore but:


Code:
player.setResourcePack("URL")

And event stuff

import:
    org.bukkit.event.player.PlayerResourcePackStatusEvent

on PlayerResourcePackStatusEvent:
    set {_player} to event.getPlayer()
    set {_status} to event.getStatus()
    set {_uuid} to uuid of {_player}
    if "%{_status}%" is "SUCCESSFULLY_LOADED":
    if "%{_status}%" is "DECLINED":
    if "%{_status}%" is "FAILED_DOWNLOAD":
    if "%{_status}%" is "ACCEPTED":
 
  • Like
Reactions: ZeyKra_
Status
Not open for further replies.