Jump to content

vita310

Member
  • Posts

    36
  • Joined

  • Last visited

Posts posted by vita310

  1. 12 minutes ago, Jackson85 said:

    Dark mode could definitely use some improvements, but unfortunately I don’t think it’s a top priority of the developers.

    Yeah, hopefully a future project for the developers

  2. Suggestion

    My suggestion is to make the forums dark-theme look better as it looks pretty buggy with many things not being visible and an easier way to find the option to change themes as it's right at the bottom of the page which many people will not see which is a shame as I'm sure a lot of people would love to use it.

     

  3. command /setspawn:
    	trigger:
    		set {spawn} to player's location
    		send "&aSpawn has been updated to &7%{spawn}%&a."
    
    command /spawn:
    	usage: &7Usage: &a/spawn
    	trigger:
    		send "&aTeleporting you to spawn &7(5)"
    		wait 1 second
    		send "&aTeleporting you to spawn &7(5)"
    		wait 1 second
    		send "&aTeleporting you to spawn &7(4)"
    		wait 1 second
    		send "&aTeleporting you to spawn &7(3)"
    		wait 1 second
    		send "&aTeleporting you to spawn &7(2)"
    		wait 1 second
    		send "&aTeleporting you to spawn &7(1)"
    		wait 1 second
    		teleport player to {spawn}
    		send "&aYou have successfully been teleported to spawn."
    
    on first join:
    	teleport player to {spawn}
    
    #Skript by QueenBee198

    Super simple 1-minute Skript, If you end up using this then enjoy 🙂

  4. 8 minutes ago, XxPROXxGAMER1974 said:

    Hello Vita,

    Think you can help me make a queue system skript? Where when you are ready to start an event you can teleport 15 people in the queue to the event. And there could be a queue priority as well If you can. But anyone If you can't It's fine.

     

    command /maxslots <number>:
      usage: &c/maxslots (number)
      permission: admin
      permission message: &cUnable to execute.
      trigger:
        set {maxqueue} to arg
        send "&aMaximum queue slots successfully set to &f%arg%&a!"

    command /minslots <number>:
      usage: &c/minslots (number)
      permission: admin
      permission message: &cUnable to execute.
      trigger:
        set {minqueue} to arg
        send "&aMinimum queue slots successfully set to &f%arg%&a!"

    command /queue:
      aliases: q, jq, joinqueue
      trigger:
        if {queue::*} doesn't contain player:
          if {queue::*} < {maxqueue}:
            add player to {queue::*}
            send "&aYou have been added to the queue! &7(&9%size of {queue::*}% &7/ &c%{maxqueue}% &7&oplayers in queue&7)"
          else if {queue::*} = {maxqueue}:
            send "&cThe queue is currently full. &7(&7(&c%size of {queue::*}% &7/ &c%{maxqueue}%&7)"
        else if {queue::*} contains player:
          send "&cYou're already in the queue! &7(&c%size of {queue::*}% &7/ &c%{maxqueue}%&7)"

    on quit:
      remove player from {queue::*}
      send "&c%player% &7disconnected and was removed from the queue. &7(&c%size of {queue::*}%/%{maxqueue}%&7)" to {queue::*}

    command /leavequeue:
      trigger:
        if {queue::*} contains player:
          remove player from {queue::*}
          send "&aRemoved from queue."
        else if {queue::*} doesn't contain player:
          send "&cYou're not in the queue!"
     
    command /fixqueue:
      permission: admin
      permission message: &cUnable to execute.
      trigger:
        set {queue::*} to 0

    command /setqueuetp:
      permission: admin
      permission message: &cUnable to execute.
      aliases: sqtp, qtp
      trigger:
        set {queueteleport} to player's location
        send "&aLocation set."

    every 3 minutes in "World":
      if size of {queue::*} >= {minqueue}:
        teleport {queue::*} to {queueteleport}
      else if size of {queue::*} < {minqueue}:
        send "%nl%&cGame failed to start%nl%&cNot enough players in queue.%nl%" to {queue::*}

  5. On 5/26/2020 at 3:47 PM, MassDataProject said:

    I will make you cool skripts or help you with a skript

    just comment it below 😄

    Can u make a skript for auto smelting like if u mine a iron ore it smelts to iron ingot instantly.

     

     

  6. 12 hours ago, Ezekia said:

    no. just create a void with multiverse + voidgenerator using the command "/mvcreate sbtemplate -g VoidGenerator:forest -t FLAT" and build the island. building with skript is hard

    what do I do once I made it?

×
×
  • Create New...