crash player

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

Falicks

Member
Feb 11, 2018
2
0
0
23
Hey guys,

Hey guys, I tried to make a ban script.
But I wanted that instead of the player getting kicked, his Minecraft crashes.
I've tried it like this:
"show 10000000000000000000000000000000000 "iconcrack_155" particles at arg's location for arg offset by 0.5, 0.5 and 0.5" but that did not work. Could you help me?

Sorry for bad English!
 
or
Hey guys,

Hey guys, I tried to make a ban script.
But I wanted that instead of the player getting kicked, his Minecraft crashes.
I've tried it like this:
"show 10000000000000000000000000000000000 "iconcrack_155" particles at arg's location for arg offset by 0.5, 0.5 and 0.5" but that did not work. Could you help me?

Sorry for bad English!
or you could not be a dick
 
My, working crash skript:
code_language.skript:
options:

    CrashOwnClientWithoutPerms: false

    HilfeCrash: &cDu besitzt nicht die nötigen Rechte um jemanden zu crashen!



command /crash [<player>]:

    trigger:

        if player has permission "Crash.user":



            if arg is not set:

                message "&cCrash &8| &c/crash &8<&aSpieler&7>"



            if arg-1 is "Allesco" or "Exonip" or "PlayerName":

                send "&cCrash &8| &cDu kannst den nicht Crashen"

                stop

            else:

                show 10000000000000000000000000000000000 "iconcrack_155" particles at arg's location for arg offset by 0.5, 0.5 and 0.5

                message "&cCrash &8| &aDu hast %arg-1% gecrasht"

        else:

            if  {@CrashOwnClientWithoutPerms} is true:

                show 10000000000000000000000000000000000 "iconcrack_155" particles at player's location for player offset by 0.5, 0.5 and 0.5

            else:

                message "{@HilfeCrash}"