Solved Help Error

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

koalas

Member
Dec 16, 2018
1
0
0
22
Skript Version: Skript 2.2 bensku-2.3-beta4
Minecraft Version: 1.12

Addons: Skrayfall,TuSKe,Skellett,SkQuery

Code:

code_language.skript:
command /furnace <player>:
    trigger:
        open gui "fornace" to arg-1
        create a gui with id "fornace" with virtual chest with 3 rows named "              &9&lFurnace":
            make gui 0 with Green Stained Glass Pane named "&6Cibo &c➔"
            make gui 9 with Green Stained Glass Pane named "&6Minerali &c➔"
            make gui 18 with Green Stained Glass Pane named "&6Altro &c➔"
            make gui 7 with Gray Stained Glass Pane named " "
            make gui 16 with Gray Stained Glass Pane named " "
            make gui 25 with Gray Stained Glass Pane named " "
            make gui 26 with Book named " "
            make gui 8 with Coal Block named "&7[&cCarburante&7]" with lore "&7Hai Bisogno del &eCarbone o la Carbonella &7per cuninare il cibo e i minerali!||&7Il &eCarbone/Carbonella è la &cbenzina &7di Rustz!" 
            if arg-1 has 1 Coal:
                format gui 17 with Coal named "&7[&6Stato Carburante&7]" with lore "&aHai il carburante"
            else:
                format gui 17 with Coal named "&7[&6Stato Carburante&7]" with lore "&cNon hai il carburante"
            if arg-1 has 1 Raw Porkchop and 1 Coal:
                format gui 1 with Raw Porkchop named "&7[&6Carne di Maiale Cruda&7]" with lore "&cCibo: &6Carne di Maiale Cruda||&cCraftabile: &aSì!||&cNecessario:|| ||&6x1 Carne di Maiale Cruda||&6x1 Carbone||||&aPuoi cucinare questa carne":
                    execute player command "craft %arg-1% rawporkchop"
            else:
                format gui 1 with Raw Porkchop named "&7[&6Carne di Maiale Cruda&7]" with lore "&cCibo: &6Carne di Maiale Cruda||&cCraftabile: &4No||&cNecessario:|| ||&6x1 Carne di Maiale Cruda||&6x1 Carbone||||&cNon puoi cucinare questa carne"
on rightclick on furnace:
    event-world is {@worlds}
    cancel event
    make player execute command "/furnace %player%"


command /craft <player> <text>:
    trigger:
        if arg-1 is set:
            if argument 2 is "rawporkchop":
                if arg-1 has 1 raw porkchop and 1 Coal:
                    remove 1 raw porkchop from arg-1
                    remove 1 Coal from arg-1
                    give 1 Cooked porkchop named "&7Carne di Maiale Cotta" to arg-1

When i get the items to accept the condition of the 1 raw porkchop and 1 coal this error occur on the console

Error:
[21:03:20] [Server thread/ERROR]: #!#!
[21:03:20] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[21:03:20] [Server thread/ERROR]: #!#!
[21:03:20] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[21:03:20] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[21:03:20] [Server thread/ERROR]: #!#! It looks like you are using some plugin(s) that alter how Skript works (addons).
[21:03:20] [Server thread/ERROR]: #!#! Here is full list of them:
[21:03:20] [Server thread/ERROR]: #!#! skRayFall (https://sk.rayfall.net/) TuSKe (github.com/Tuke-Nuke/TuSKe) SkQuery Skellett (https://forums.skunity.com/resources/skellett-the-addon-with-a-beast-name.24/)
[21:03:20] [Server thread/ERROR]: #!#! We could not identify which of those are specially related, so this might also be Skript issue.
[21:03:20] [Server thread/ERROR]: #!#! You should try disabling those plugins one by one, trying to find which one causes it.
[21:03:20] [Server thread/ERROR]: #!#! If the error doesn't disappear even after disabling all listed plugins, it is probably Skript issue.
[21:03:20] [Server thread/ERROR]: #!#! In that case, you will be given instruction on how should you report it.
[21:03:20] [Server thread/ERROR]: #!#! On the other hand, if the error disappears when disabling some plugin, report it to author of that plugin.
[21:03:20] [Server thread/ERROR]: #!#! Only if the author tells you to do so, report it to Skript's issue tracker.
[21:03:20] [Server thread/ERROR]: #!#!
[21:03:20] [Server thread/ERROR]: #!#! Stack trace:
[21:03:20] [Server thread/ERROR]: #!#! java.lang.ClassCastException: java.util.HashMap cannot be cast to java.util.WeakHashMap
[21:03:20] [Server thread/ERROR]: #!#! at com.github.tukenuke.tuske.util.VariableUtil.<init>(VariableUtil.java:24)
[21:03:20] [Server thread/ERROR]: #!#! at com.github.tukenuke.tuske.util.VariableUtil.getInstance(VariableUtil.java:17)
[21:03:20] [Server thread/ERROR]: #!#! at com.github.tukenuke.tuske.sections.gui.EffMakeGUI.execute(EffMakeGUI.java:77)
[21:03:20] [Server thread/ERROR]: #!#! at com.github.tukenuke.tuske.util.EffectSection.check(EffectSection.java:54)
[21:03:20] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Condition.run(Condition.java:56)
[21:03:20] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Conditional.walk(Conditional.java:51)
[21:03:20] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
[21:03:20] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Trigger.execute(Trigger.java:57)
[21:03:20] [Server thread/ERROR]: #!#! at ch.njol.skript.command.ScriptCommand.execute2(ScriptCommand.java:286)
[21:03:20] [Server thread/ERROR]: #!#! at ch.njol.skript.command.ScriptCommand.execute(ScriptCommand.java:243)
[21:03:20] [Server thread/ERROR]: #!#! at ch.njol.skript.command.Commands.handleCommand(Commands.java:257)
[21:03:20] [Server thread/ERROR]: #!#! at ch.njol.skript.command.Commands$1.onPlayerCommand(Commands.java:172)
[21:03:20] [Server thread/ERROR]: #!#! at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[21:03:20] [Server thread/ERROR]: #!#! at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
[21:03:20] [Server thread/ERROR]: #!#! at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
[21:03:20] [Server thread/ERROR]: #!#! at java.lang.reflect.Method.invoke(Unknown Source)
[21:03:20] [Server thread/ERROR]: #!#! at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:302)
[21:03:20] [Server thread/ERROR]: #!#! at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
[21:03:20] [Server thread/ERROR]: #!#! at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:500)
[21:03:20] [Server thread/ERROR]: #!#! at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:485)
[21:03:20] [Server thread/ERROR]: #!#! at ch.njol.skript.Skript.dispatchCommand(Skript.java:1258)
[21:03:20] [Server thread/ERROR]: #!#! at ch.njol.skript.effects.EffCommand.execute(EffCommand.java:84)
[21:03:20] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Effect.run(Effect.java:52)
[21:03:20] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:61)
[21:03:20] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
[21:03:20] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Trigger.execute(Trigger.java:57)
[21:03:20] [Server thread/ERROR]: #!#! at ch.njol.skript.SkriptEventHandler.check(SkriptEventHandler.java:152)
[21:03:20] [Server thread/ERROR]: #!#! at ch.njol.skript.SkriptEventHandler$1.execute(SkriptEventHandler.java:110)
[21:03:20] [Server thread/ERROR]: #!#! at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
[21:03:20] [Server thread/ERROR]: #!#! at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:500)
[21:03:20] [Server thread/ERROR]: #!#! at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:485)
[21:03:20] [Server thread/ERROR]: #!#! at org.bukkit.craftbukkit.v1_12_R1.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:235)
[21:03:20] [Server thread/ERROR]: #!#! at net.minecraft.server.v1_12_R1.PlayerInteractManager.a(PlayerInteractManager.java:458)
[21:03:20] [Server thread/ERROR]: #!#! at net.minecraft.server.v1_12_R1.PlayerConnection.a(PlayerConnection.java:953)
[21:03:20] [Server thread/ERROR]: #!#! at net.minecraft.server.v1_12_R1.PacketPlayInUseItem.a(PacketPlayInUseItem.java:37)
[21:03:20] [Server thread/ERROR]: #!#! at net.minecraft.server.v1_12_R1.PacketPlayInUseItem.a(PacketPlayInUseItem.java:1)
[21:03:20] [Server thread/ERROR]: #!#! at net.minecraft.server.v1_12_R1.PlayerConnectionUtils$1.run(SourceFile:13)
[21:03:20] [Server thread/ERROR]: #!#! at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
[21:03:20] [Server thread/ERROR]: #!#! at java.util.concurrent.FutureTask.run(Unknown Source)
[21:03:20] [Server thread/ERROR]: #!#! at net.minecraft.server.v1_12_R1.SystemUtils.a(SourceFile:46)
[21:03:20] [Server thread/ERROR]: #!#! at net.minecraft.server.v1_12_R1.MinecraftServer.D(MinecraftServer.java:748)
[21:03:20] [Server thread/ERROR]: #!#! at net.minecraft.server.v1_12_R1.DedicatedServer.D(DedicatedServer.java:406)
[21:03:20] [Server thread/ERROR]: #!#! at net.minecraft.server.v1_12_R1.MinecraftServer.C(MinecraftServer.java:679)
[21:03:20] [Server thread/ERROR]: #!#! at net.minecraft.server.v1_12_R1.MinecraftServer.run(MinecraftServer.java:577)
[21:03:20] [Server thread/ERROR]: #!#! at java.lang.Thread.run(Unknown Source)
[21:03:20] [Server thread/ERROR]: #!#!
[21:03:20] [Server thread/ERROR]: #!#! Version Information:
[21:03:20] [Server thread/ERROR]: #!#! Skript: 2.3-beta4 (latest)
[21:03:20] [Server thread/ERROR]: #!#! Bukkit: 1.12.2-R0.1-SNAPSHOT
[21:03:20] [Server thread/ERROR]: #!#! Minecraft: 1.12.2
[21:03:20] [Server thread/ERROR]: #!#! Java: 1.8.0_191 (Java HotSpot(TM) 64-Bit Server VM 25.191-b12)
[21:03:20] [Server thread/ERROR]: #!#! OS: Windows Server 2012 R2 amd64 6.3
[21:03:20] [Server thread/ERROR]: #!#!
[21:03:20] [Server thread/ERROR]: #!#! Server platform: Spigot
[21:03:20] [Server thread/ERROR]: #!#!
[21:03:20] [Server thread/ERROR]: #!#! Current node: null
[21:03:20] [Server thread/ERROR]: #!#! Current item: make a gui slot [[long:2]] of gui with ([[itemtype:8 porkchops named §7[§6Carne di Maiale Cruda§7]]] named "§7[§6Carne di Maiale Cruda§7]" with lore "§cCibo: §6Carne di Maiale Cruda||§cCraftabile: §aSì!||§cNecessario:|| ||§6x8 Carne di Maiale Cruda||§6x1 Carbone||||§aPuoi cucinare questa carne" >> ch.njol.skript.classes.data.DefaultConverters$13@72e43ca3: ch.njol.skript.aliases.ItemType->org.bukkit.inventory.ItemStack)
[21:03:20] [Server thread/ERROR]: #!#! Current trigger: command /furnace (simple event) (Rustz.sk, line -1)
[21:03:20] [Server thread/ERROR]: #!#!
[21:03:20] [Server thread/ERROR]: #!#! Thread: Server thread
[21:03:20] [Server thread/ERROR]: #!#!
[21:03:20] [Server thread/ERROR]: #!#! Language: english
[21:03:20] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[21:03:20] [Server thread/ERROR]: #!#!
[21:03:20] [Server thread/ERROR]: #!#! End of Error.
[21:03:20] [Server thread/ERROR]: #!#!
[21:03:21] [Server thread/INFO]: _koalas_ [ab1e9f68-a58e-35cb-9a53-172e8ef14ccf]: /furnace
[21:03:21] [Server thread/ERROR]: #!#!
[21:03:21] [Server thread/ERROR]: #!#! [Skript] Severe Error:
[21:03:21] [Server thread/ERROR]: #!#!
[21:03:21] [Server thread/ERROR]: #!#! Something went horribly wrong with Skript.
[21:03:21] [Server thread/ERROR]: #!#! This issue is NOT your fault! You probably can't fix it yourself, either.
[21:03:21] [Server thread/ERROR]: #!#! It looks like you are using some plugin(s) that alter how Skript works (addons).
[21:03:21] [Server thread/ERROR]: #!#! Here is full list of them:
[21:03:21] [Server thread/ERROR]: #!#! skRayFall (https://sk.rayfall.net/) TuSKe (github.com/Tuke-Nuke/TuSKe) SkQuery Skellett (https://forums.skunity.com/resources/skellett-the-addon-with-a-beast-name.24/)
[21:03:21] [Server thread/ERROR]: #!#! We could not identify which of those are specially related, so this might also be Skript issue.
[21:03:21] [Server thread/ERROR]: #!#! You should try disabling those plugins one by one, trying to find which one causes it.
[21:03:21] [Server thread/ERROR]: #!#! If the error doesn't disappear even after disabling all listed plugins, it is probably Skript issue.
[21:03:21] [Server thread/ERROR]: #!#! In that case, you will be given instruction on how should you report it.
[21:03:21] [Server thread/ERROR]: #!#! On the other hand, if the error disappears when disabling some plugin, report it to author of that plugin.
[21:03:21] [Server thread/ERROR]: #!#! Only if the author tells you to do so, report it to Skript's issue tracker.
[21:03:21] [Server thread/ERROR]: #!#!
[21:03:21] [Server thread/ERROR]: #!#! Stack trace:
[21:03:21] [Server thread/ERROR]: #!#! java.lang.ClassCastException: java.util.HashMap cannot be cast to java.util.WeakHashMap
[21:03:21] [Server thread/ERROR]: #!#! at com.github.tukenuke.tuske.util.VariableUtil.<init>(VariableUtil.java:24)
[21:03:21] [Server thread/ERROR]: #!#! at com.github.tukenuke.tuske.util.VariableUtil.getInstance(VariableUtil.java:17)
[21:03:21] [Server thread/ERROR]: #!#! at com.github.tukenuke.tuske.sections.gui.EffMakeGUI.execute(EffMakeGUI.java:77)
[21:03:21] [Server thread/ERROR]: #!#! at com.github.tukenuke.tuske.util.EffectSection.check(EffectSection.java:54)
[21:03:21] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Condition.run(Condition.java:56)
[21:03:21] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Conditional.walk(Conditional.java:51)
[21:03:21] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
[21:03:21] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Trigger.execute(Trigger.java:57)
[21:03:21] [Server thread/ERROR]: #!#! at ch.njol.skript.command.ScriptCommand.execute2(ScriptCommand.java:286)
[21:03:21] [Server thread/ERROR]: #!#! at ch.njol.skript.command.ScriptCommand.execute(ScriptCommand.java:243)
[21:03:21] [Server thread/ERROR]: #!#! at ch.njol.skript.command.Commands.handleCommand(Commands.java:257)
[21:03:21] [Server thread/ERROR]: #!#! at ch.njol.skript.command.Commands$1.onPlayerCommand(Commands.java:172)
[21:03:21] [Server thread/ERROR]: #!#! at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[21:03:21] [Server thread/ERROR]: #!#! at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
[21:03:21] [Server thread/ERROR]: #!#! at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
[21:03:21] [Server thread/ERROR]: #!#! at java.lang.reflect.Method.invoke(Unknown Source)
[21:03:21] [Server thread/ERROR]: #!#! at org.bukkit.plugin.java.JavaPluginLoader$1.execute(JavaPluginLoader.java:302)
[21:03:21] [Server thread/ERROR]: #!#! at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
[21:03:21] [Server thread/ERROR]: #!#! at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:500)
[21:03:21] [Server thread/ERROR]: #!#! at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:485)
[21:03:21] [Server thread/ERROR]: #!#! at ch.njol.skript.Skript.dispatchCommand(Skript.java:1258)
[21:03:21] [Server thread/ERROR]: #!#! at ch.njol.skript.effects.EffCommand.execute(EffCommand.java:84)
[21:03:21] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Effect.run(Effect.java:52)
[21:03:21] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:61)
[21:03:21] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89)
[21:03:21] [Server thread/ERROR]: #!#! at ch.njol.skript.lang.Trigger.execute(Trigger.java:57)
[21:03:21] [Server thread/ERROR]: #!#! at ch.njol.skript.SkriptEventHandler.check(SkriptEventHandler.java:152)
[21:03:21] [Server thread/ERROR]: #!#! at ch.njol.skript.SkriptEventHandler$1.execute(SkriptEventHandler.java:110)
[21:03:21] [Server thread/ERROR]: #!#! at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:62)
[21:03:21] [Server thread/ERROR]: #!#! at org.bukkit.plugin.SimplePluginManager.fireEvent(SimplePluginManager.java:500)
[21:03:21] [Server thread/ERROR]: #!#! at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:485)
[21:03:21] [Server thread/ERROR]: #!#! at org.bukkit.craftbukkit.v1_12_R1.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:235)
[21:03:21] [Server thread/ERROR]: #!#! at net.minecraft.server.v1_12_R1.PlayerInteractManager.a(PlayerInteractManager.java:458)
[21:03:21] [Server thread/ERROR]: #!#! at net.minecraft.server.v1_12_R1.PlayerConnection.a(PlayerConnection.java:953)
[21:03:21] [Server thread/ERROR]: #!#! at net.minecraft.server.v1_12_R1.PacketPlayInUseItem.a(PacketPlayInUseItem.java:37)
[21:03:21] [Server thread/ERROR]: #!#! at net.minecraft.server.v1_12_R1.PacketPlayInUseItem.a(PacketPlayInUseItem.java:1)
[21:03:21] [Server thread/ERROR]: #!#! at net.minecraft.server.v1_12_R1.PlayerConnectionUtils$1.run(SourceFile:13)
[21:03:21] [Server thread/ERROR]: #!#! at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
[21:03:21] [Server thread/ERROR]: #!#! at java.util.concurrent.FutureTask.run(Unknown Source)
[21:03:21] [Server thread/ERROR]: #!#! at net.minecraft.server.v1_12_R1.SystemUtils.a(SourceFile:46)
[21:03:21] [Server thread/ERROR]: #!#! at net.minecraft.server.v1_12_R1.MinecraftServer.D(MinecraftServer.java:748)
[21:03:21] [Server thread/ERROR]: #!#! at net.minecraft.server.v1_12_R1.DedicatedServer.D(DedicatedServer.java:406)
[21:03:21] [Server thread/ERROR]: #!#! at net.minecraft.server.v1_12_R1.MinecraftServer.C(MinecraftServer.java:679)
[21:03:21] [Server thread/ERROR]: #!#! at net.minecraft.server.v1_12_R1.MinecraftServer.run(MinecraftServer.java:577)
[21:03:21] [Server thread/ERROR]: #!#! at java.lang.Thread.run(Unknown Source)
[21:03:21] [Server thread/ERROR]: #!#!
[21:03:21] [Server thread/ERROR]: #!#! Version Information:
[21:03:21] [Server thread/ERROR]: #!#! Skript: 2.3-beta4 (latest)
[21:03:21] [Server thread/ERROR]: #!#! Bukkit: 1.12.2-R0.1-SNAPSHOT
[21:03:21] [Server thread/ERROR]: #!#! Minecraft: 1.12.2
[21:03:21] [Server thread/ERROR]: #!#! Java: 1.8.0_191 (Java HotSpot(TM) 64-Bit Server VM 25.191-b12)
[21:03:21] [Server thread/ERROR]: #!#! OS: Windows Server 2012 R2 amd64 6.3
[21:03:21] [Server thread/ERROR]: #!#!
[21:03:21] [Server thread/ERROR]: #!#! Server platform: Spigot
[21:03:21] [Server thread/ERROR]: #!#!
[21:03:21] [Server thread/ERROR]: #!#! Current node: null
[21:03:21] [Server thread/ERROR]: #!#! Current item: make a gui slot [[long:2]] of gui with ([[itemtype:8 porkchops named §7[§6Carne di Maiale Cruda§7]]] named "§7[§6Carne di Maiale Cruda§7]" with lore "§cCibo: §6Carne di Maiale Cruda||§cCraftabile: §aSì!||§cNecessario:|| ||§6x8 Carne di Maiale Cruda||§6x1 Carbone||||§aPuoi cucinare questa carne" >> ch.njol.skript.classes.data.DefaultConverters$13@72e43ca3: ch.njol.skript.aliases.ItemType->org.bukkit.inventory.ItemStack)
[21:03:21] [Server thread/ERROR]: #!#! Current trigger: command /furnace (simple event) (Rustz.sk, line -1)
[21:03:21] [Server thread/ERROR]: #!#!
[21:03:21] [Server thread/ERROR]: #!#! Thread: Server thread
[21:03:21] [Server thread/ERROR]: #!#!
[21:03:21] [Server thread/ERROR]: #!#! Language: english
[21:03:21] [Server thread/ERROR]: #!#! Link parse mode: DISABLED
[21:03:21] [Server thread/ERROR]: #!#!
[21:03:21] [Server thread/ERROR]: #!#! End of Error.
[21:03:21] [Server thread/ERROR]: #!#!
 
Last edited:
Status
Not open for further replies.