Jump to content

Pryzmm

Moderator
  • Posts

    1,927
  • Joined

  • Last visited

  • Days Won

    33

Posts posted by Pryzmm

  1. me again i need help again.
    Im using vault to try and make a shop but it keeps saying i have insufficent funds
     

    			loop {Gens::*}:
    				set {_GenID} to loop-index
    				set {_GenType} to loop-value
    				clear {Shop::*}
    				add {Gens::*} to {Shop::*}
    				set {_DropID} to {GenDrops::%{_GenID}%}
    				set {_SellValue} to {GenSell::%{_GenID}%}
    				set {_BuyValue} to {GenBuy::%{_GenID}%}
    				set {_Slot} to {_GenID} - 1
    				format gui slot {_Slot} of player with {_GenType} named "" with lore "&6Buy Gen: &e%{_BuyValue}%&e$" and "&6Sell Per Drop: &e%{_SellValue}%&e$" to run:
    					if player's balance >= {_BuyValue}:
    						remove {_BuyValue} from player's balance
    						give player loop-value
    						send "{@Prefix} &aPurchase Successful!" to player
    					else:
    						send "{@Prefix} &cNot enough funds!" to player
    				if {_Slot} = 44:
    					stop loop
    			format gui slot 49 of player with barrier named "&cClose" to close

     

  2. 11 minutes ago, RDiamondz said:

    So i've made a simple crates skript but the problems is sometimes when i right click with the key it didnt give me any rewards and sometimes it gave me 2 rewards on 1 key, can anyone help me to see what's the problem in this code, it'll help me so much. Thx 

    
    
    on right click:
      if event-block is a lime stained glass:
        if player is holding a tripwire hook named "&a{@ukey}" with lore "&8Use this to open &aUncommon Crate":
          remove 1 tripwire hook named "&a{@ukey}" with lore "&8Use this to open &aUncommon Crate" from player's inventory
          cancel event
          chance of 50%:
            give player 8 golden apple
            send "{@p} &bYou just got &38 Golden Apples &bfrom the crate"
          chance of 13%:
            give player 1 of blaze rod of mending named "&cFire Wand" with lore "&cUse &c&lRIGHT CLICK &r&cto shoot a fireball"
            send "{@p} &bYou just got &31 Fire Wand &bfrom the crate"
          chance of 16%:
            give player 1 of sunflower of mending named "&6Token" with lore "&8You can use this to buy &aCustom Items"
            send "{@p} &bYou just got &31 Token &bfrom the crate"
          chance of 5%:
            give player 1 enchanted golden apple
            send "{@p} &bYou just got &31 Enchanted Golden Apple &bfrom the crate"
          chance of 14%:
            give player 2 of tripwire hook named "&a{@ukey}" with lore "&8Use this to open &aUncommon Crate"
            send "{@p} &bYou just got &31 Uncommon Key &bfrom the crate"  
          chance of 1%:
            give player 1 of tripwire hook named "&9{@ekey}" with lore "&8Use this to open &9Epic Crate"
            send "{@p} &bYou just got &31 Epic Key &bfrom the crate"  
        else:
          push the player backwards with speed 2
          send "{@p} &bUse {@ukey} to open this crate"

     

    This might sound a bit confusing but...
    The chance event doesnt work like you think. Theres a chance for every single reward so you're going to get some rewards, or if you're unlucky, none. Use:

    set {_variable1} to a random element out of {variable2::*}

    add all your rewards to variable2. heres an example: 

    add "2 of tripwire hook named ""&a{@ukey}"" with lore ""&8Use this to open &aUncommon Crate"" to {variable2::*}

     

  3. I dont know why but these couple of lines crash my server. Nothing loads and eventually it stops.

    
    on join:
    	while player is online:
    		if {GensToggled} is true: # Variable checks if gens are enabled or not
    			loop {GenSpeed} times: # amount of seconds to wait
    				wait 1 second
    			loop {GenLocations::%player%::*}: # finds all gen locations
    				set {_Number} to loop-index # ID of variable
    				set {_DropType} to {GenDrops::%{_Number}%} # Item that drops
    				set {_DropLocation} to loop-value's location # Location of where it drops
    				add 1 to y coordinate of {_DropLocation}
    				drop {_DropType} at {_DropLocation}

     

  4. Update: something in my skript is causing this that doesnt happen until TuSKe is installed
    Update 2: Theres something with my skript thats causing the issue, only thing that comes to mind is the while loop, but that loops only every 5 seconds

    Update 3: after close inspection is was after all the issue, could someone help me?
     

    Quote

    on join:
        while player is online:
            if {GensToggled} is true:
                loop {GenSpeed} times:
                    wait 1 second
                loop {GenLocations::%player%::*}:
                    set {_Number} to loop-index
                    set {_DropType} to {GenDrops::%{_Number}%}
                    set {_DropLocation} to loop-value's location
                    add 1 to y coordinate of {_DropLocation}
                    drop {_DropType} at {_DropLocation}

     

  5. 8 hours ago, BanditEagle said:

    Try checking your log files and see if there is anything that shows up there.

    Below are the logs, idk what they mean so help me pls

     

    Spoiler

    [17:24:14] [main/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
    [17:24:15] [main/INFO]: Reloading ResourceManager: Default, bukkit
    [17:24:16] [Worker-Main-1/INFO]: Loaded 7 recipes
    [17:24:17] [Server thread/INFO]: Starting minecraft server version 1.16.5
    [17:24:17] [Server thread/INFO]: Loading properties
    [17:24:17] [Server thread/INFO]: This server is running Paper version git-Paper-"b89788a" (MC: 1.16.5) (Implementing API version 1.16.5-R0.1-SNAPSHOT)
    [17:24:17] [Server thread/INFO]: Server Ping Player Sample Count: 12
    [17:24:17] [Server thread/INFO]: Using 4 threads for Netty based IO
    [17:24:17] [Server thread/INFO]: Debug logging is disabled
    [17:24:17] [Server thread/INFO]: Default game type: SURVIVAL
    [17:24:17] [Server thread/INFO]: Generating keypair
    [17:24:18] [Server thread/INFO]: Starting Minecraft server on *:25575
    [17:24:18] [Server thread/INFO]: Using epoll channel type
    [17:24:19] [Server thread/WARN]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
    [17:24:23] [Server thread/WARN]: Legacy plugin TuSKe v1.8.2-Pikachu-Patch-3 does not specify an api-version.
    [17:24:23] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.3.30
    [17:24:23] [Server thread/INFO]: [FastAsyncWorldEdit] Loading FastAsyncWorldEdit v1.16-651;4d77771
    [17:24:24] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@4f267422]
    [17:24:24] [Server thread/INFO]: [PlayerServer] Loading PlayerServer v1.0-SNAPSHOT
    [17:24:24] [Server thread/INFO]: [Essentials] Loading Essentials v2.19.0-dev+106-214d07c
    [17:24:24] [Server thread/INFO]: [LPC] Loading LPC v3.2.0
    [17:24:24] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.5-SNAPSHOT+2107-528ba32
    [17:24:24] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.27-SNAPSHOT (build Unknown)
    [17:24:24] [Server thread/INFO]: [Skript] Loading Skript v2.5.3-MH
    [17:24:24] [Server thread/INFO]: [SkBee] Loading SkBee v1.10.2
    [17:24:24] [Server thread/INFO]: [SkQuery] Loading SkQuery v4.1.4-MH
    [17:24:24] [Server thread/INFO]: [Skellett] Loading Skellett v1.9.11-MH
    [17:24:24] [Server thread/INFO]: [skRayFall] Loading skRayFall v1.9.24
    [17:24:24] [Server thread/INFO]: [TuSKe] Loading TuSKe v1.8.2-Pikachu-Patch-3
    [17:24:24] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
    [17:24:24] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.3.30
    [17:24:24] [Server thread/INFO]:         __    
    [17:24:24] [Server thread/INFO]:   |    |__)   LuckPerms v5.3.30
    [17:24:24] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
    [17:24:24] [Server thread/INFO]: 
    [17:24:24] [Server thread/INFO]: [LuckPerms] Loading configuration...
    [17:24:25] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
    [17:24:26] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
    [17:24:26] [Server thread/INFO]: [LuckPerms] Performing initial data load...
    [17:24:26] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1863ms)
    [17:24:26] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v1.16-651;4d77771
    [17:24:26] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
    [17:24:26] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.FAWE_Spigot_v1_16_R3 as the Bukkit adapter
    [17:24:27] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
    [17:24:27] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
    [17:24:27] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
    [17:24:27] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
    [17:24:27] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
    [17:24:27] [Server thread/INFO]: Preparing level "world2"
    [17:24:27] [Server thread/INFO]: -------- World Settings For [world2] --------
    [17:24:27] [Server thread/INFO]: Experience Merge Radius: 3.0
    [17:24:27] [Server thread/INFO]: Cactus Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Cane Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Melon Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Mushroom Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Sapling Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Beetroot Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Carrot Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Potato Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Wheat Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: NetherWart Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Vine Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Cocoa Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Bamboo Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Kelp Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
    [17:24:27] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
    [17:24:27] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
    [17:24:27] [Server thread/INFO]: Max TNT Explosions: 100
    [17:24:27] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
    [17:24:27] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
    [17:24:27] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
    [17:24:27] [Server thread/INFO]: View Distance: 8
    [17:24:27] [Server thread/INFO]: Item Merge Radius: 2.5
    [17:24:27] [Server thread/INFO]: Item Despawn Rate: 6000
    [17:24:27] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
    [17:24:27] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
    [17:24:27] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
    [17:24:27] [Server thread/INFO]: Mob Spawn Range: 6
    [17:24:27] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
    [17:24:27] [Server thread/INFO]: -------- World Settings For [world2_nether] --------
    [17:24:27] [Server thread/INFO]: Experience Merge Radius: 3.0
    [17:24:27] [Server thread/INFO]: Cactus Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Cane Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Melon Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Mushroom Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Sapling Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Beetroot Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Carrot Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Potato Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Wheat Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: NetherWart Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Vine Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Cocoa Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Bamboo Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Kelp Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
    [17:24:27] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
    [17:24:27] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
    [17:24:27] [Server thread/INFO]: Max TNT Explosions: 100
    [17:24:27] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
    [17:24:27] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
    [17:24:27] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
    [17:24:27] [Server thread/INFO]: View Distance: 8
    [17:24:27] [Server thread/INFO]: Item Merge Radius: 2.5
    [17:24:27] [Server thread/INFO]: Item Despawn Rate: 6000
    [17:24:27] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
    [17:24:27] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
    [17:24:27] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
    [17:24:27] [Server thread/INFO]: Mob Spawn Range: 6
    [17:24:27] [Server thread/INFO]: -------- World Settings For [world2_the_end] --------
    [17:24:27] [Server thread/INFO]: Experience Merge Radius: 3.0
    [17:24:27] [Server thread/INFO]: Cactus Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Cane Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Melon Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Mushroom Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Sapling Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Beetroot Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Carrot Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Potato Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Wheat Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: NetherWart Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Vine Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Cocoa Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Bamboo Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Kelp Growth Modifier: 100%
    [17:24:27] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
    [17:24:27] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
    [17:24:27] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
    [17:24:27] [Server thread/INFO]: Max TNT Explosions: 100
    [17:24:27] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
    [17:24:27] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
    [17:24:27] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
    [17:24:27] [Server thread/INFO]: View Distance: 8
    [17:24:27] [Server thread/INFO]: Item Merge Radius: 2.5
    [17:24:27] [Server thread/INFO]: Item Despawn Rate: 6000
    [17:24:27] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
    [17:24:27] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
    [17:24:27] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
    [17:24:27] [Server thread/INFO]: Mob Spawn Range: 6
    [17:24:27] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
    [17:24:28] [Server thread/INFO]: Loaded 0 spawn chunks for world world2
    [17:24:28] [Server thread/INFO]: Preparing spawn area: 0%
    [17:24:28] [Server thread/INFO]: Time elapsed: 405 ms
    [17:24:28] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
    [17:24:28] [Server thread/INFO]: Loaded 0 spawn chunks for world world2_nether
    [17:24:28] [Server thread/INFO]: Time elapsed: 283 ms
    [17:24:28] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
    [17:24:28] [Server thread/INFO]: Loaded 0 spawn chunks for world world2_the_end
    [17:24:28] [Server thread/INFO]: Time elapsed: 223 ms
    [17:24:28] [Server thread/INFO]: [PlayerServer] Enabling PlayerServer v1.0-SNAPSHOT
    [17:24:29] [Server thread/INFO]: [Essentials] Enabling Essentials v2.19.0-dev+106-214d07c
    [17:24:29] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
    [17:24:29] [Server thread/INFO]: [Essentials] No kits found to migrate.
    [17:24:29] [Server thread/INFO]: [Essentials] Loaded 25599 items from items.json.
    [17:24:29] [Server thread/INFO]: [Essentials] Using locale en_US
    [17:24:30] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
    [17:24:30] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
    [17:24:30] [Server thread/WARN]: [Essentials] Detected supported permissions plugin LuckPerms without Vault installed.
    [17:24:30] [Server thread/WARN]: [Essentials] Features such as chat prefixes/suffixes and group-related functionality will not work until you install Vault.
    [17:24:30] [Server thread/INFO]: [Essentials] Using superperms-based permissions.
    [17:24:30] [Server thread/INFO]: [LPC] Enabling LPC v3.2.0
    [17:24:30] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.5-SNAPSHOT+2107-528ba32
    [17:24:30] [Server thread/INFO]: [WorldGuard] (world2) TNT ignition is PERMITTED.
    [17:24:30] [Server thread/INFO]: [WorldGuard] (world2) Lighters are PERMITTED.
    [17:24:30] [Server thread/INFO]: [WorldGuard] (world2) Lava fire is PERMITTED.
    [17:24:30] [Server thread/INFO]: [WorldGuard] (world2) Fire spread is UNRESTRICTED.
    [17:24:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world2'
    [17:24:30] [Server thread/INFO]: [WorldGuard] (world2_nether) TNT ignition is PERMITTED.
    [17:24:30] [Server thread/INFO]: [WorldGuard] (world2_nether) Lighters are PERMITTED.
    [17:24:30] [Server thread/INFO]: [WorldGuard] (world2_nether) Lava fire is PERMITTED.
    [17:24:30] [Server thread/INFO]: [WorldGuard] (world2_nether) Fire spread is UNRESTRICTED.
    [17:24:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world2_nether'
    [17:24:30] [Server thread/INFO]: [WorldGuard] (world2_the_end) TNT ignition is PERMITTED.
    [17:24:30] [Server thread/INFO]: [WorldGuard] (world2_the_end) Lighters are PERMITTED.
    [17:24:30] [Server thread/INFO]: [WorldGuard] (world2_the_end) Lava fire is PERMITTED.
    [17:24:30] [Server thread/INFO]: [WorldGuard] (world2_the_end) Fire spread is UNRESTRICTED.
    [17:24:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world2_the_end'
    [17:24:30] [Server thread/INFO]: [WorldGuard] Loading region data...
    [17:24:30] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.27-SNAPSHOT (build Unknown)
    [17:24:31] [Server thread/INFO]: [Citizens] Vault not found -> no economy handling.
    [17:24:31] [Server thread/INFO]: [Skript] Enabling Skript v2.5.3-MH
    [17:24:31] [Server thread/INFO]: [Skript] You're currently running a custom Skript version. No updates will be automatically installed.
    [17:24:36] [Server thread/INFO]: [Skript] Loaded 128188 aliases in 5545ms
    [17:24:37] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
    [17:24:37] [Server thread/INFO]: [SkBee] Enabling SkBee v1.10.2
    [17:24:37] [Server thread/INFO]: [SkBee] Loading NBTApi...
    [17:24:37] [Server thread/INFO]: [SkBee] [NBTAPI] Found Spigot: v1_16_R3! Trying to find NMS support
    [17:24:37] [Server thread/INFO]: [SkBee] [NBTAPI] NMS support 'MC1_16_R3' loaded!
    [17:24:37] [Server thread/INFO]: [SkBee] [NBTAPI] Found Gson: class com.google.gson.Gson
    [17:24:37] [Server thread/INFO]: [SkBee] Successfully loaded NBTApi!
    [17:24:37] [Server thread/INFO]: [SkBee] NBT Elements successfully loaded
    [17:24:37] [Server thread/INFO]: [SkBee] Recipe Elements successfully loaded
    [17:24:37] [Server thread/INFO]: [SkBee] Scoreboard Elements successfully loaded
    [17:24:37] [Server thread/INFO]: [SkBee] Bound Elements successfully loaded
    [17:24:37] [Server thread/INFO]: [SkBee] Text Component Elements successfully loaded
    [17:24:37] [Server thread/INFO]: [SkBee] Pathfinding Elements successfully loaded
    [17:24:37] [Server thread/INFO]: [SkBee] Structure Elements successfully loaded
    [17:24:37] [Server thread/INFO]: [SkBee] Other Elements successfully loaded
    [17:24:37] [Server thread/INFO]: [SkBee] Virtual Furnace Elements disabled via config
    [17:24:37] [Server thread/INFO]: [SkBee] World Creator Elements successfully loaded
    [17:24:37] [Server thread/INFO]: [SkBee] Successfully enabled v1.10.2 in 0.25 seconds
    [17:24:37] [Server thread/INFO]: [SkBee] Loading custom worlds...
    [17:24:37] [Server thread/INFO]: [SkBee] Successfully loaded 0 custom world
    [17:24:37] [Server thread/INFO]: [SkQuery] Enabling SkQuery v4.1.4-MH
    [17:24:37] [Server thread/INFO]: [skQuery] Locating classes from SkQuery...
    [17:24:37] [Server thread/INFO]: [skQuery] Beginning to process a total of 133 from SkQuery
    [17:24:37] [Server thread/INFO]: [skQuery] Out of 133 classes, 131 classes were loaded from SkQuery
    [17:24:37] [Server thread/INFO]: [Skellett] Enabling Skellett v1.9.11-MH
    [17:24:37] [Server thread/INFO]: [Skellett] New update found! Updating files...
    [17:24:37] [Server thread/INFO]: [Skellett] SyntaxToggles.yml not found, generating a new file!
    [17:24:39] [Server thread/INFO]: [Skellett] Registered 40 Effects, 16 Conditions, 125 Expressions and 25 Events
    [17:24:39] [Server thread/INFO]: [Skellett] Has been enabled!
    [17:24:39] [Server thread/INFO]: [skRayFall] Enabling skRayFall v1.9.24
    [17:24:39] [Server thread/INFO]: [skRayFall] Yay! You are running skRayFall 1.9.24!
    [17:24:39] [Server thread/INFO]: [skRayFall] Nathan and Lewis ❤️ you.
    [17:24:39] [Server thread/INFO]: [skRayFall] Cooking Bacon...
    [17:24:39] [Server thread/INFO]: [skRayFall] Getting more bacon for the army of citizens...
    [17:24:39] [Server thread/INFO]: [skRayFall] Got bacon for the EffectLib particle ninjas!
    [17:24:39] [Server thread/INFO]: [skRayFall] No Votifier Found! *Checks oven for finished bacon*
    [17:24:39] [Server thread/INFO]: [skRayFall] Enabling general 1.8+ bacon!
    [17:24:39] [Server thread/INFO]: [skRayFall] Getting the general 1.9+ bacon!
    [17:24:39] [Server thread/INFO]: [skRayFall] An update for skRayFall is available!
    [17:24:39] [Server thread/INFO]: [skRayFall] Bacon is ready!
    [17:24:39] [Server thread/INFO]: [TuSKe] Enabling TuSKe v1.8.2-Pikachu-Patch-3*
    [17:24:39] [Server thread/INFO]: [TuSKe] Enabling Metrics... Done!
    [17:24:39] [Server thread/INFO]: [TuSKe] Check for updates enabled. It will check in some seconds.
    [17:24:39] [Server thread/INFO]: [TuSKe] Documentation enabled. Some files containing all syntax of all addons will be generated.
    [17:24:39] [Server thread/INFO]: [TuSKe] Loaded 8 events, 12 conditions, 20 effects, 61 expressions and 0 types. Have fun!
    [17:24:39] [Server thread/INFO]: Running delayed init tasks
    [17:24:40] [Server thread/WARN]: [FastAsyncWorldEdit] Loaded class com.sk89q.worldguard.protection.association.RegionAssociable from WorldGuard v7.0.5-SNAPSHOT+2107-528ba32 which is not a depend, softdepend or loadbefore of this plugin.
    [17:24:40] [Server thread/INFO]: [com.boydti.fawe.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
    [17:24:40] [Craft Scheduler Thread - 4/INFO]: [Essentials] Fetching version information...
    [17:24:40] [Server thread/INFO]: [Skript] Loading variables...
    [17:24:40] [Server thread/INFO]: [Skript] Loaded 14 variables in 0.0 seconds
    [17:24:40] [Server thread/WARN]: [Skript] Empty configuration section! You might want to indent one or more of the subsequent lines to make them belong to this section or remove the colon at the end of the line if you don't want this line to start a section. (Gen.sk, line 37: else:')
    [17:24:41] [Server thread/INFO]: [Skript] All scripts loaded without errors.
    [17:24:41] [Server thread/INFO]: [Skript] Loaded 1 script with a total of 9 triggers and 2 commands in 1.71 seconds
    [17:24:41] [Server thread/INFO]: [Skript] Finished loading.
    [17:24:41] [Server thread/INFO]: [Citizens] Loaded 0 NPCs.
    [17:24:41] [Server thread/INFO]: Done (24.114s)! For help, type "help"
    [17:24:41] [Server thread/INFO]: Timings Reset
    [17:24:42] [Craft Scheduler Thread - 4/INFO]: [TuSKe] Checking for latest update...
    [17:24:42] [Craft Scheduler Thread - 4/INFO]: [TuSKe] New update available: v1.8.2
    [17:24:42] [Craft Scheduler Thread - 4/INFO]: [TuSKe] Check what's new in: https://github.com/Tuke-Nuke/TuSKe/releases/tag/1.8.2
    [17:24:42] [Craft Scheduler Thread - 4/INFO]: [TuSKe] You can download and update it with /tuske update.
    [17:24:44] [Craft Scheduler Thread - 4/INFO]: [TuSKe] Generating documentation of Skript & Addons.
    [17:24:45] [Craft Scheduler Thread - 4/INFO]: [TuSKe] Documentation was generated successfully.
    [17:28:19] [User Authenticator #1/INFO]: UUID of player NightFalcon3214 is 576f5edc-67c1-465d-b266-2106743b5518
    [17:28:29] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-"b89788a" (MC: 1.16.5) ---
    [17:28:29] [Paper Watchdog Thread/ERROR]: The server has not responded for 10 seconds! Creating thread dump
    [17:28:29] [Paper Watchdog Thread/ERROR]: ------------------------------
    [17:28:29] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
    [17:28:29] [Paper Watchdog Thread/ERROR]: ------------------------------
    [17:28:29] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
    [17:28:29] [Paper Watchdog Thread/ERROR]:     PID: 17 | Suspended: false | Native: false | State: RUNNABLE
    [17:28:29] [Paper Watchdog Thread/ERROR]:     Stack:
    [17:28:29] [Paper Watchdog Thread/ERROR]:         java.base@11.0.9.1/java.util.HashMap.get(HashMap.java:552)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.variables.VariablesMap.getVariable(VariablesMap.java:87)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.variables.Variables.getVariable(Variables.java:321)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Variable.getRaw(Variable.java:280)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Variable.get(Variable.java:287)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Variable.getConverted(Variable.java:431)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Variable.getAll(Variable.java:660)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Variable.check(Variable.java:682)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.conditions.CondCompare.check(CondCompare.java:308)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Condition.run(Condition.java:55)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Conditional.walk(Conditional.java:50)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:88)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Trigger.execute(Trigger.java:56)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler.check(SkriptEventHandler.java:153)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler$1.execute(SkriptEventHandler.java:111)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         app//co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:600)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerList.postChunkLoadJoin(PlayerList.java:273)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerList.lambda$a$1(PlayerList.java:220)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerList$$Lambda$5574/0x0000000101614840.run(Unknown Source)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.tick(PlayerConnection.java:167)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.NetworkManager.a(NetworkManager.java:390)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.ServerConnection.c(ServerConnection.java:145)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.b(MinecraftServer.java:1382)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.DedicatedServer.b(DedicatedServer.java:377)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.a(MinecraftServer.java:1209)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:997)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:174)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer$$Lambda$3142/0x0000000100996c40.run(Unknown Source)
    [17:28:29] [Paper Watchdog Thread/ERROR]:         java.base@11.0.9.1/java.lang.Thread.run(Thread.java:834)
    [17:28:29] [Paper Watchdog Thread/ERROR]: ------------------------------
    [17:28:29] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
    [17:28:29] [Paper Watchdog Thread/ERROR]: ------------------------------
    [17:28:34] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-"b89788a" (MC: 1.16.5) ---
    [17:28:34] [Paper Watchdog Thread/ERROR]: The server has not responded for 15 seconds! Creating thread dump
    [17:28:34] [Paper Watchdog Thread/ERROR]: ------------------------------
    [17:28:34] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
    [17:28:34] [Paper Watchdog Thread/ERROR]: ------------------------------
    [17:28:34] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
    [17:28:34] [Paper Watchdog Thread/ERROR]:     PID: 17 | Suspended: false | Native: false | State: RUNNABLE
    [17:28:34] [Paper Watchdog Thread/ERROR]:     Stack:
    [17:28:34] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:87)
    [17:28:34] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Trigger.execute(Trigger.java:56)
    [17:28:34] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler.check(SkriptEventHandler.java:153)
    [17:28:34] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler$1.execute(SkriptEventHandler.java:111)
    [17:28:34] [Paper Watchdog Thread/ERROR]:         app//co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
    [17:28:34] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
    [17:28:34] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:600)
    [17:28:34] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerList.postChunkLoadJoin(PlayerList.java:273)
    [17:28:34] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerList.lambda$a$1(PlayerList.java:220)
    [17:28:34] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerList$$Lambda$5574/0x0000000101614840.run(Unknown Source)
    [17:28:34] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.tick(PlayerConnection.java:167)
    [17:28:34] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.NetworkManager.a(NetworkManager.java:390)
    [17:28:34] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.ServerConnection.c(ServerConnection.java:145)
    [17:28:34] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.b(MinecraftServer.java:1382)
    [17:28:34] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.DedicatedServer.b(DedicatedServer.java:377)
    [17:28:34] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.a(MinecraftServer.java:1209)
    [17:28:34] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:997)
    [17:28:34] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:174)
    [17:28:34] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer$$Lambda$3142/0x0000000100996c40.run(Unknown Source)
    [17:28:34] [Paper Watchdog Thread/ERROR]:         java.base@11.0.9.1/java.lang.Thread.run(Thread.java:834)
    [17:28:34] [Paper Watchdog Thread/ERROR]: ------------------------------
    [17:28:34] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
    [17:28:34] [Paper Watchdog Thread/ERROR]: ------------------------------
    [17:28:39] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-"b89788a" (MC: 1.16.5) ---
    [17:28:39] [Paper Watchdog Thread/ERROR]: The server has not responded for 20 seconds! Creating thread dump
    [17:28:39] [Paper Watchdog Thread/ERROR]: ------------------------------
    [17:28:39] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
    [17:28:39] [Paper Watchdog Thread/ERROR]: ------------------------------
    [17:28:39] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
    [17:28:39] [Paper Watchdog Thread/ERROR]:     PID: 17 | Suspended: false | Native: false | State: RUNNABLE
    [17:28:39] [Paper Watchdog Thread/ERROR]:     Stack:
    [17:28:39] [Paper Watchdog Thread/ERROR]:         java.base@11.0.9.1/java.util.HashMap.get(HashMap.java:552)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.variables.VariablesMap.getVariable(VariablesMap.java:87)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.variables.Variables.getVariable(Variables.java:321)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Variable.getRaw(Variable.java:280)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Variable.get(Variable.java:287)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Variable.getConverted(Variable.java:431)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Variable.getAll(Variable.java:660)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Variable.check(Variable.java:682)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.conditions.CondCompare.check(CondCompare.java:308)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Condition.run(Condition.java:55)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Conditional.walk(Conditional.java:50)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:88)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Trigger.execute(Trigger.java:56)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler.check(SkriptEventHandler.java:153)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler$1.execute(SkriptEventHandler.java:111)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         app//co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:600)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerList.postChunkLoadJoin(PlayerList.java:273)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerList.lambda$a$1(PlayerList.java:220)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerList$$Lambda$5574/0x0000000101614840.run(Unknown Source)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.tick(PlayerConnection.java:167)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.NetworkManager.a(NetworkManager.java:390)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.ServerConnection.c(ServerConnection.java:145)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.b(MinecraftServer.java:1382)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.DedicatedServer.b(DedicatedServer.java:377)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.a(MinecraftServer.java:1209)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:997)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:174)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer$$Lambda$3142/0x0000000100996c40.run(Unknown Source)
    [17:28:39] [Paper Watchdog Thread/ERROR]:         java.base@11.0.9.1/java.lang.Thread.run(Thread.java:834)
    [17:28:39] [Paper Watchdog Thread/ERROR]: ------------------------------
    [17:28:39] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
    [17:28:39] [Paper Watchdog Thread/ERROR]: ------------------------------
    [17:28:44] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-"b89788a" (MC: 1.16.5) ---
    [17:28:44] [Paper Watchdog Thread/ERROR]: The server has not responded for 25 seconds! Creating thread dump
    [17:28:44] [Paper Watchdog Thread/ERROR]: ------------------------------
    [17:28:44] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
    [17:28:44] [Paper Watchdog Thread/ERROR]: ------------------------------
    [17:28:44] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
    [17:28:44] [Paper Watchdog Thread/ERROR]:     PID: 17 | Suspended: false | Native: false | State: RUNNABLE
    [17:28:44] [Paper Watchdog Thread/ERROR]:     Stack:
    [17:28:44] [Paper Watchdog Thread/ERROR]:         java.base@11.0.9.1/java.util.HashMap.get(HashMap.java:552)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.variables.VariablesMap.getVariable(VariablesMap.java:87)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.variables.Variables.getVariable(Variables.java:321)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Variable.getRaw(Variable.java:280)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Variable.get(Variable.java:287)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Variable.getConverted(Variable.java:431)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Variable.getAll(Variable.java:660)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Variable.check(Variable.java:682)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.conditions.CondCompare.check(CondCompare.java:308)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Condition.run(Condition.java:55)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Conditional.walk(Conditional.java:50)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:88)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Trigger.execute(Trigger.java:56)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler.check(SkriptEventHandler.java:153)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler$1.execute(SkriptEventHandler.java:111)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         app//co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:600)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerList.postChunkLoadJoin(PlayerList.java:273)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerList.lambda$a$1(PlayerList.java:220)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerList$$Lambda$5574/0x0000000101614840.run(Unknown Source)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.tick(PlayerConnection.java:167)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.NetworkManager.a(NetworkManager.java:390)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.ServerConnection.c(ServerConnection.java:145)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.b(MinecraftServer.java:1382)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.DedicatedServer.b(DedicatedServer.java:377)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.a(MinecraftServer.java:1209)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:997)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:174)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer$$Lambda$3142/0x0000000100996c40.run(Unknown Source)
    [17:28:44] [Paper Watchdog Thread/ERROR]:         java.base@11.0.9.1/java.lang.Thread.run(Thread.java:834)
    [17:28:44] [Paper Watchdog Thread/ERROR]: ------------------------------
    [17:28:44] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
    [17:28:44] [Paper Watchdog Thread/ERROR]: ------------------------------
    [17:28:49] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Paper-"b89788a" (MC: 1.16.5) ---
    [17:28:49] [Paper Watchdog Thread/ERROR]: The server has not responded for 30 seconds! Creating thread dump
    [17:28:49] [Paper Watchdog Thread/ERROR]: ------------------------------
    [17:28:49] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
    [17:28:49] [Paper Watchdog Thread/ERROR]: ------------------------------
    [17:28:49] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
    [17:28:49] [Paper Watchdog Thread/ERROR]:     PID: 17 | Suspended: false | Native: false | State: RUNNABLE
    [17:28:49] [Paper Watchdog Thread/ERROR]:     Stack:
    [17:28:49] [Paper Watchdog Thread/ERROR]:         java.base@11.0.9.1/java.util.HashMap.get(HashMap.java:552)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.variables.VariablesMap.getVariable(VariablesMap.java:87)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.variables.Variables.getVariable(Variables.java:321)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Variable.getRaw(Variable.java:280)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Variable.get(Variable.java:287)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Variable.getConverted(Variable.java:431)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Variable.getAll(Variable.java:660)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Variable.check(Variable.java:682)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.conditions.CondCompare.check(CondCompare.java:308)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Condition.run(Condition.java:55)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Conditional.walk(Conditional.java:50)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:88)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.lang.Trigger.execute(Trigger.java:56)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler.check(SkriptEventHandler.java:153)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         ch.njol.skript.SkriptEventHandler$1.execute(SkriptEventHandler.java:111)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         app//co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:600)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerList.postChunkLoadJoin(PlayerList.java:273)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerList.lambda$a$1(PlayerList.java:220)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerList$$Lambda$5574/0x0000000101614840.run(Unknown Source)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.tick(PlayerConnection.java:167)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.NetworkManager.a(NetworkManager.java:390)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.ServerConnection.c(ServerConnection.java:145)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.b(MinecraftServer.java:1382)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.DedicatedServer.b(DedicatedServer.java:377)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.a(MinecraftServer.java:1209)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:997)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:174)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer$$Lambda$3142/0x0000000100996c40.run(Unknown Source)
    [17:28:49] [Paper Watchdog Thread/ERROR]:         java.base@11.0.9.1/java.lang.Thread.run(Thread.java:834)
    [17:28:49] [Paper Watchdog Thread/ERROR]: ------------------------------
    [17:28:49] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
    [17:28:49] [Paper Watchdog Thread/ERROR]: ------------------------------
     

     

  6. 18 minutes ago, CoolProgrammer said:

    This often happens when your world first attempts to generate, but somehow fails and forms corrupted chunks. In-case the main world is not important to you, you can delete it entirely to fix the problem.

    I changed my default world to world2 but its doing the same thing

  7. On 4/28/2021 at 7:16 AM, TheRealCrit said:

    I have about 10 enabled scripts, and on chatformat.sk (which handles chat format) it gives me a strange error. This also happens on board.sk (which handles the sidebar) with the same error. I've even tried restarting my server after deleting and recreating both files, but nope, there's still that error.

    Logs: https://controlc.com/17f5de1f

    Im glad you're using my anticheat, i didn't know Skellet would interfere with it.

  8. For some reason when i went to install the plugin TuSKe, after restarting my server it just broke. No joke. Start up the server, get stuck for bout 20 seconds, then stops. Ive tried repairing core files and backing up the server but neither work. below is what I see.
    2021-04-30_19_57_58.thumb.png.24cd5c971530be1948b6d434b19a86a9.pngAs you see it doesnt even load my character name or picture in tab, nor my character. Im just floating in the sky.
    If you wanna see for yourself IP is InHush.minehut.gg

  9. 16 hours ago, Tarnerd said:

    Just noticed, you are clearing the variable then checking what it is. You need to clear the variable after you check its value. The variable has no value since you clear it and then check if it is equal to the message. 

    PFF just realized to, thanks

  10. 12 minutes ago, Tarnerd said:

    Try checking what {ConfirmGenReset.%player%} is set to

    And maybe try if message is "%{ConfirmGenReset.%player%}%" instead since you set that variable to a number but then are comparing it to a string. Not sure if skript automatically converts it like that. 

    Heres my new skript, i tried parsing as integer but it didnt work
     

    set {ConfirmGenReset.%player%} to random integer between 10000 and 99999
    
    on chat:
    	if {ResetGenSettings.%player%} is true:
    		cancel event
    		clear {ResetGenSettings.%player%}
    		clear {ConfirmGenReset.%player%}
    		set {_message} to message parsed as integer
    		if {_message} is {ConfirmGenReset.%player%}:
    			send "{@Prefix} &aReset all settings in config!" to player
    		else:
    			send "{@Prefix} &cIncorrect! Reset has been aborted!" to player

     

  11. For some reason no matter what i do it keeps saying "incorrect"
     

    				set {ConfirmGenReset.%player%} to random integer between 10000 and 99999
    
    on chat:
    	if {ResetGenSettings.%player%} is true:
    		cancel event
    		clear {ResetGenSettings.%player%}
    		clear {ConfirmGenReset.%player%}
    		if message = {ConfirmGenReset.%player%}:
    			send "{@Prefix} &aReset all settings in config!" to player
    		else:
    			send "{@Prefix} &cIncorrect! Reset has been aborted!" to player

     

  12. 29 minutes ago, LastMC said:

    Okay, so I have this skript right here, and i tried to set it so that if u tried to upgrade your pickaxe past efficiency 6 it wouldn't work but it still allowed you to go past efficiency 6, also I cant seem t get it to take tokens from your token balance and it cant seem to understand the code

            if token balance is greater than 9999:
                execute console command "token take %player% 10000"

    If someone could help fix this I would greatly appreciate! 😄


    command /efficiency [<text>]:
        permission: efficiency.enchant
        permission message: [&c&l&!&f] You don't have permission
        trigger:
            if arg 1 is not set:
                if level of efficiency of player's tool is greater than or equal to 6:
                    send "Youre too high!"
                if {wait.%player%} does not exist:
                    set {wait.%player%} to false
                if {wait.%player%} is true:
                    wait 3 ticks
                enchant the tool with "efficiency %level of efficiency of the tool + 1%" parsed as enchantment type
            if token balance is greater than 9999:
                execute console command "token take %player% 10000"
                message "&7Efficiency &chas now been applied on your Pickaxe!"
            else:
                message "&cYou don't have enough Tokens to apply &7Efficiency 6 &con your Pickaxe! You need &f10000&c!"

    try "if player's balance" if you're using vault

  13. 32 minutes ago, tempera said:

    It still does not work. I would like for you to acctualy rewrite the code the right way so i can learn

    Here ya go:
     

    on break end portal frame:
    	if event-player is sneaking:
    		cancel event
    		set {selectedPortal} to event-block's location
    		send action bar "§b§lSelected portal! Do '/portal settarget' to set the portal target!" to event-player
    
    command /portal <text>:
    	usage: &b/Portal (SetTarget)
    	permission: portal.settarget
    	trigger:
    		if arg-1 is "SetTarget":
    			set {Portals::%{selectedPortal}%} to location of event-player
    			send action bar "§b§lPortal target set! Now just walk over it!" to event-player
    
    on walk on end portal frame:
    	if {Portals::%event-block's location%} is not set:
    		send action bar "§c§lThis portal does not have a target yet!" to event-player
    		stop trigger
    	teleport event-player to {Portals::%event-block's location%}
    	play sound "entity.enderman.teleport" with volume 1 and pitch 1 to event-player

     

  14. 2 minutes ago, tempera said:
    
    on break end portal frame:
    	if event-player is sneaking:
    		cancel event
    		set {selectedPortal} to event-block
    		send action bar "§b§lSelected portal! Do '/portal settarget' to set the portal target!" to event-player
    
    command /portal settarget:
    	permission: portal.settarget
    	trigger:
    		add {Portals::%{selectedPortal}%::*} to event-player's location
    		send action bar "§b§lPortal target set! Now just walk over it!" to event-player
    
    on walk on end portal frame:
    	if {portals::event-block::*} is not set:
    		send action bar "§c§lThis portal does not have a target yet!" to event-player
    		stop trigger
    	teleport event-player to {portals::event-block}
    	play sound "entity.enderman.teleport" with volume 1 and pitch 1 to event-player


     

    as i said, do {portals::%event-block%::*} not {portals::event-block::*}

×
×
  • Create New...