Something went horribly wrong with Skript.

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

BlueOrolose

Member
Jul 1, 2020
1
0
0
23
I'm trying to make a Manhunt plugin for me & my sis and something happened. I have an error for some reason for my Skript. I don't know what could be causing it as I have looked through the addons, disabling them each. Nothing seems to work. Please Help!

My Skript:
Code:
command /orolosehunt [<text>] [<offline player>]:
    permission: orolose.manhunt
    trigger:
        if arg-1 is "help" or "info":
            send "&7[&bOrolose&7] &bUsage: &f/OroloseHunt <Speedrunner/Hunter> <Player>" to player
            send "&7" to player
            send "&bUse the usage above to set a Speedrunner/Hunter. Multiple can be set!" to player
        if arg-1 is "speedrunner", "target" or "spr":
            if arg-2 is set:
                if arg-2 is "BlueOrolose", "orolose" or "blue":
                    set "{_speedrunner}" to "BlueOrolose"
                if arg-2 is "MyFaceDied" or "grass":
                    set "{_speedrunner}" to "MyFaceDied"
                else:
                    send "&7[&bOrolose&7] &bUsage: &f/OroloseHunt <Speedrunner/Hunter> <Player>" to player
            else:
                send "&7[&bOrolose&7] &bUsage: &f/OroloseHunt <Speedrunner/Hunter> <Player>" to player
        if arg-1 is "hunter", "killer" or "hnt":
            if arg-2 is set:
                if arg-2 is "BlueOrolose":
                    set "{_hunter}" to "BlueOrolose"
                if arg-2 is "MyFaceDied":
                    set "{_hunter}" to "MyFaceDied"
                else:
                    send "&7[&bOrolose&7] &bUsage: &f/OroloseHunt <Speedrunner/Hunter> <Player>" to player
            else:
                send "&7[&bOrolose&7] &bUsage: &f/OroloseHunt <Speedrunner/Hunter> <Player>" to player
        else:
            send "&7[&bOrolose&7] &bUsage: &f/OroloseHunt <Speedrunner/Hunter> <Player>" to player

command /compass:
    permission: orolose.compass
    aliases: /jojo, /jjba, /joestar, /o, /tracker, /playertracker, /huntertracker, /killertracker
    trigger:
        if %player% is equal to {_hunter}:
            send "&7[&bOrolose&7] &bYou have received a &fPlayer Tracker&b! This compass will track &f{_speedrunner}&b!" to player
            give player compass named "&bTarget: &f{_speedrunner}"
            wait 1 tick
            set player's compass target to location of {_speedrunner}
        if %player% is equal to {_speedrunner}:
            send "&7[&bOrolose&7] &bNice try! Unfortunately, I'm not that dumb to allow this. If I was, the compass would point to yourself, as its set to point to the speedrunner!" to player
        else:
            send "7[&bOrolose&7] &bThe ManHunt plugin isn't set up yet! " to player

Error of Skript:

Code:
[14:50:45] [Server thread/ERROR]: #!#!
[14:50:45] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[14:50:45] [Server thread/ERROR]: #!#! Could not load ManHunt.sk
[14:50:45] [Server thread/ERROR]: #!#!
[14:50:45] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[14:50:45] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[14:50:45] [Server thread/ERROR]: #!#! It looks like you are using some plugin(s) that alter how Skript works (addons).
[14:50:45] [Server thread/ERROR]: #!#! Here is full list of them:
[14:50:45] [Server thread/ERROR]: #!#! skRayFall (https://sk.rayfall.net/) TuSKe (github.com/Tuke-Nuke/TuSKe) skDragon SkQuery Skellett (https://forums.skunity.com/resources/skellett.24/) SharpSK
[14:50:45] [Server thread/ERROR]: #!#! We could not identify which of those are specially related, so this might also be Skript issue.
[14:50:45] [Server thread/ERROR]: #!#! You should try disabling those plugins one by one, trying to find which one causes it.
[14:50:45] [Server thread/ERROR]: #!#! If the error doesn't disappear even after disabling all listed plugins, it is probably Skript issue.
[14:50:45] [Server thread/ERROR]: #!#! In that case, you will be given instruction on how should you report it.
[14:50:45] [Server thread/ERROR]: #!#! On the other hand, if the error disappears when disabling some plugin, report it to author of that plugin.
[14:50:45] [Server thread/ERROR]: #!#! Only if the author tells you to do so, report it to Skript's issue tracker.
[14:50:45] [Server thread/ERROR]: #!#!
[14:50:45] [Server thread/ERROR]: #!#! Stack trace:
[14:50:45] [Server thread/ERROR]: #!#! ch.njol.skript.SkriptAPIException: No class info found for lambda
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.registrations.Classes.getClassInfo(Classes.java:263)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.createExprInfo(SkriptParser.java:1838)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.getExprInfo(SkriptParser.java:1805)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1553)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:224)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:179)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:502)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parseExpression(SkriptParser.java:840)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1569)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1492)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1565)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1499)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1526)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:224)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:179)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Statement.parse(Statement.java:59)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1006)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.TriggerSection.<init>(TriggerSection.java:54)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.lang.Conditional.<init>(Conditional.java:44)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadItems(ScriptLoader.java:1093)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.command.Commands.loadCommand(Commands.java:490)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScript(ScriptLoader.java:651)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.lambda$1(ScriptLoader.java:409)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:428)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.ScriptLoader.loadScripts(ScriptLoader.java:472)
[14:50:45] [Server thread/ERROR]: #!#!     at ch.njol.skript.SkriptCommand.onCommand(SkriptCommand.java:183)
[14:50:45] [Server thread/ERROR]: #!#!     at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[14:50:45] [Server thread/ERROR]: #!#!     at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:149)
[14:50:45] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_15_R1.CraftServer.dispatchCommand(CraftServer.java:711)
[14:50:45] [Server thread/ERROR]: #!#!     at org.bukkit.craftbukkit.v1_15_R1.CraftServer.dispatchServerCommand(CraftServer.java:696)
[14:50:45] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_15_R1.DedicatedServer.handleCommandQueue(DedicatedServer.java:436)
[14:50:45] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_15_R1.DedicatedServer.b(DedicatedServer.java:400)
[14:50:45] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_15_R1.MinecraftServer.a(MinecraftServer.java:984)
[14:50:45] [Server thread/ERROR]: #!#!     at net.minecraft.server.v1_15_R1.MinecraftServer.run(MinecraftServer.java:824)
[14:50:45] [Server thread/ERROR]: #!#!     at java.lang.Thread.run(Unknown Source)
[14:50:45] [Server thread/ERROR]: #!#!
[14:50:45] [Server thread/ERROR]: #!#! Version Information:
[14:50:45] [Server thread/ERROR]: #!#!   Skript: 2.4.1 (latest)
[14:50:45] [Server thread/ERROR]: #!#!     Flavor: skriptlang-github
[14:50:45] [Server thread/ERROR]: #!#!     Date: 2019-12-22
[14:50:45] [Server thread/ERROR]: #!#!   Bukkit: 1.15.2-R0.1-SNAPSHOT
[14:50:45] [Server thread/ERROR]: #!#!   Minecraft: 1.15.2
[14:50:45] [Server thread/ERROR]: #!#!   Java: 1.8.0_241 (Java HotSpot(TM) 64-Bit Server VM 25.241-b07)
[14:50:45] [Server thread/ERROR]: #!#!   OS: Windows 10 amd64 10.0
[14:50:45] [Server thread/ERROR]: #!#!
[14:50:45] [Server thread/ERROR]: #!#! Server platform: Spigot
[14:50:45] [Server thread/ERROR]: #!#!
[14:50:45] [Server thread/ERROR]: #!#! Current node: send "&7[&bOrolose&7] &bUsage: &f/OroloseHunt <Speedrunner/Hunter> <Player>" to player (ManHunt.sk, line 5)
[14:50:45] [Server thread/ERROR]: #!#! Current item: null
[14:50:45] [Server thread/ERROR]: #!#!
[14:50:45] [Server thread/ERROR]: #!#! Thread: Server thread
[14:50:45] [Server thread/ERROR]: #!#!
[14:50:45] [Server thread/ERROR]: #!#! Language: english
[14:50:45] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[14:50:45] [Server thread/ERROR]: #!#!
[14:50:45] [Server thread/ERROR]: #!#! End of Error.
[14:50:45] [Server thread/ERROR]: #!#!
[doublepost=1593631193,1593616718][/doublepost]is bumping allowed?
 
Status
Not open for further replies.