Jump to content

AHelpingCandy

Member
  • Posts

    91
  • Joined

  • Last visited

  • Days Won

    3

Posts posted by AHelpingCandy

  1. NIce to meet you all, I'm doing pretty well due to everything happening in life as you may know life is a wonder and everything matters. To answer your question, I'm doing pretty well.

  2. variables:
        {glow.mode.%player%} = "False"

    command /glow:
        aliases: gl
        permission: glow.enable 
        trigger:
            if player does not have permission "glow.enable":
                message "&8&l[&bCheckup&8&l] &7Sorry you dont have permissions to use &cGlow"
                stop 
            if {glow.mode.%player%} is "False":
                message "&8&l[&bGlow&8&l] &7Glowing now enabled!"
                set {glow.mode.%player%} to "True"
                apply glowing to the player for 100000 seconds
            else:
                if {glow.mode.%player%} is "True":
                    message "&8&l[&bGlow&8&l] &7Glowing now disabled!"
                    set {glow.mode.%player%} to "False"
                    remove glowing from the player

    • Like 1
  3. Was bored so I made this 😄



    command /sudo [<player>] [<text>] [<text>]:

    1.     trigger:
    2.         if arg 1 is not set:
    3.             message "Arg 1 not set!"
    4.             stop
    5.         else:
    6.             if arg 2 is not set:
    7.                 message "Arg 2 is not set!"
    8.                 stop
    9.             if arg 2 is "c:":
    10.                 if arg 3 is not set:
    11.                     message "Arg 3 is not set!"
    12.                     stop
    13.                 else:
    14.                     # This needs to be your chat format
    15.                     broadcast "&7[&c%arg 1%&7] &f> %arg 3%"
    16.                     stop
    17.             if arg 2 is set:
    18.                 make arg 1 execute command "/%arg 2%"
    19.                 stop

     

     

  4. Had a bit of free time ://

    #---------------------------------------#

    options: 

    # Name of your server. (This is the header) **CHANGE THIS**
        ServerName: &a&lWarfare&f&lMC &a&lAnnouncement

    # Color of the text (Color Code Only)
        Color: &f

    # Color of lines (Color Code Only)
        Lines: &e

    # Permission message
        PermMSG: &cNo Permission
        
    # No argument message
        PermMSG: &cUsage: &f/broadcast (message)


    #------------------------------------------------------------------------------------------------------------#

    command /broadcast [<text>]:
        permission: broadcast.use
        permission message: {@PermMSG}
        trigger:
            if arg 1 is set:
                broadcast " &8▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀"
                broadcast ""
                broadcast "                    {@ServerName}"
                broadcast "  {@Color}%argument%"
                broadcast "&e"
                broadcast ""
                broadcast " &8▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀"
            if arg 1 is not set:
                message "&c&l<!> &cUsage: &f/bc <msg>"
                
    command /bc [<text>]:
        permission: broadcast.use
        permission message: {@PermMSG}
        trigger:
            if arg 1 is set:
                broadcast " &8▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀"
                broadcast ""
                broadcast "                    {@ServerName}"
                broadcast "  {@Color}%argument%"
                broadcast "&e"
                broadcast ""
                broadcast " &8▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀"
            if arg 1 is not set:
                message "&c&l<!> &cUsage: &f/bc <msg>"


    #------------------------------------------------------------------------------------------------------------#
     

    • Thanks 3
  5. Quote
    Spoiler

    command /ap:
        aliases: /adminpanel
        permission: adminpanel.use
        permission message: &8[&cAdminPanel&8] &c
        trigger:
            open chest with 6 rows named "&4AdminPanel" to player
            format slot 4 of player with wooden pickaxe named "&a&lAdminPanel" with lore "&6By: Kaakaomuffini" to be unstealable
            format slot 8 of player with paper named "&9&lInfo" with lore "||&2This skript is||&2meant to be||&2used with Essentials plugin||&6If you prefer||&6without Essential plugin||&6some of the features||&6might not work!" to be unstealable
            format slot 9 of player with clock named "&6&lMorning" to run [execute player command "time set 71000"]
            format slot 10 of player with clock named "&e&lDay" to run [execute player command "time set day"]
            format slot 11 of player with clock named "&7&lEvening" to run [execute player command "time set 13000"]
            format slot 12 of player with clock named "&8&lNight" to run [execute player command "time set 14000"]
            format slot 18 of player with sunflower named "&e&lSunny" to run [execute player command "weather clear"]
            format slot 19 of player with water bucket named "&9&lStorm" to run [execute player command "weather storm"]
            format slot 27 of player with iron sword named "&6&lRemove Mobs" to run [execute player command "mobkill all"]
            format slot 28 of player with milk bucket named "&6&lRemove Effects" to run [execute player command "effect @p clear"]

     

     

    • Like 3
×
×
  • Create New...