Jump to content

give me skript ideas


Big_Boi323

Recommended Posts

1 hour ago, GrapeAppleFruite said:

Capture the flag script

Right click item to join the game. Get auto-balanced to a team and the round starts has to get both flags and basic stuff.

 

But can you make it have shops for powerups or weapons? After every round their inventory gets cleaned and get tped back to spawn.

Ill start working on this now, might take a bit

Link to comment
Share on other sites

22 hours ago, GrapeAppleFruite said:

Capture the flag script

Right click item to join the game. Get auto-balanced to a team and the round starts has to get both flags and basic stuff.

 

But can you make it have shops for powerups or weapons? After every round their inventory gets cleaned and get tped back to spawn.

Done! Let me know via discord if there are any errors

Admin Command.sk Flag Mechanics.sk Join Item.sk Other.sk Shop.sk

Link to comment
Share on other sites

I want a script that Has toggle off on for my dupe server Here is your start 

    every 500 seconds:
        loop all players:
            if {%loop-player%.random} = true
        give loop-player a random element of all items
        wait 1 tick 

it has 5 errors 

command /toggle:
  trigger:
    if {%player%.random} = true:
      set {%player%.random} to false
      message "&7You have disabled random items" to player
    else:
      set {%player%.random} to false
      message "&7You have enabled random items" to player

 has no errors 

Link to comment
Share on other sites

On 4/7/2021 at 1:06 PM, sskp said:

Can you make a Proximity Voice Mod plugin/script

Pretty sure you can't make a proximity chat skript

anddd it would be useless to make a plugin that has proximity chat for minehut because minehut doesnt have custom plugins support

Link to comment
Share on other sites

Link to comment
Share on other sites

On 4/8/2021 at 2:13 AM, bybys said:

I want a script that Has toggle off on for my dupe server Here is your start 

    every 500 seconds:
        loop all players:
            if {%loop-player%.random} = true
        give loop-player a random element of all items
        wait 1 tick 

it has 5 errors 

command /toggle:
  trigger:
    if {%player%.random} = true:
      set {%player%.random} to false
      message "&7You have disabled random items" to player
    else:
      set {%player%.random} to false
      message "&7You have enabled random items" to player

 has no errors 

I fixed the code, but also changed a few things such as %player% to %player's uuid% so if a player changes their name it stays, and added a cooldown to the command. Wasnt sure why you had the "wait 1 tick" but i deleted it, if it was there for a purpose you can just put it back in.

 

every 5 seconds:
	loop all players:
		if {%loop-player's uuid%.random} is not set:
			give loop-player a random element of all items

command /toggle:
	cooldown: 2 seconds
	cooldown message: &cYou can not do this for another %remaining%&c. This is to avoid command spam.
	trigger:
		if {%player's uuid%.random} is not set:
			set {%player's uuid%.random} to false
			message "&7You have disabled random items." to player
		else:
			delete {%player's uuid%.random}
			message "&7You have enabled random items." to player

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...