Jump to content

Making skrips (Free)


Ramina__

Recommended Posts

A skript where you do /wardrobe and it opens a gui where you can select between Iron armour, gold, diamond, netherite
 

Make it so when you click on a Iron ingot you get full iron & when a gold ingot you get full gold armour, etc.

  • Like 1
image.png.6b83388bece6fb7d874e120f33c8dd96.png


IGN ➣ Pickey ( Soon ) 
Joined MineHut ➣ January 7th 2019
Joined Forums ➣ January 11th 2021
 
Admin on NotedGens
Manager on NotedGens
Developer on Cropied
Developer on Gennow (Genable)

==========================================
Best Job: Badlion ( Client Moderator [ Failed Trial / Demoted] )
Retired From: InvadedLands ( Moderator )
Retired From:  MineTime ( Sr.Moderator )
Retired From: Hero Mines ( Helper )
Link to comment
Share on other sites

Hi, are you able to make a skript like a Lifesteal SMP, but slightly modified?

My idea:

 

On Kill: Gain One Full Heart

On Death: Set base health to default (20)

Also, if this is possible, could you make a skript that works somewhat like this:

When you join, for the first 20 minutes you can't attack other players or be damaged, but you can turn on PvP, but doing so will forever have PvP on (in world guard regions where pvp is on) without being toggleable thereafter. 

 

Also, if you are able to do this, could you let me know if i needed certain base plugins? I'm completely oblivious about Skript, so I'm not sure if i need to install certain parts of Skript, or other plugin libraries.
 

Edit: If you have Discord, please let me know if you're able to do this, or have already done it 

My discord is Generic Username#3226

 

Hello. I'm Generic. My IGN is popularkid. I know its silly. 

⫷⨽⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⨼⫸

Pronouns: He/Him

⫷⨽⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⨼⫸

Discord: Generic Username#2861

⫷⨽⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⨼⫸

Joined Minehut  ◄«◊»►  10/13/2019 ◄«◊»►

⫷⨽⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⨼⫸

Default◅ | 10/13/2019 - Current Time

 

 

Link to comment
Share on other sites

On 10/22/2021 at 7:56 PM, Cklows said:

A skript where you do /wardrobe and it opens a gui where you can select between Iron armour, gold, diamond, netherite
 

Make it so when you click on a Iron ingot you get full iron & when a gold ingot you get full gold armour, etc.

 

8 hours ago, GenericUsername said:

Hi, are you able to make a skript like a Lifesteal SMP, but slightly modified?

My idea:

 

On Kill: Gain One Full Heart

On Death: Set base health to default (20)

Also, if this is possible, could you make a skript that works somewhat like this:

When you join, for the first 20 minutes you can't attack other players or be damaged, but you can turn on PvP, but doing so will forever have PvP on (in world guard regions where pvp is on) without being toggleable thereafter. 

 

Also, if you are able to do this, could you let me know if i needed certain base plugins? I'm completely oblivious about Skript, so I'm not sure if i need to install certain parts of Skript, or other plugin libraries.
 

Edit: If you have Discord, please let me know if you're able to do this, or have already done it 

My discord is Generic Username#3226

 

Okay I will get these done soon! But @GenericUsername Your skript may take longer!

Link to comment
Share on other sites

On 10/22/2021 at 2:56 PM, Cklows said:

A skript where you do /wardrobe and it opens a gui where you can select between Iron armour, gold, diamond, netherite
 

Make it so when you click on a Iron ingot you get full iron & when a gold ingot you get full gold armour, etc.

I can do this for you.

command /wardrobe:
	trigger:
		set metadata tag "wardrobe" of player to chest inventory with 2 rows named "&bWardrobe" 
		set slot (integers between 0 and 17) of metadata tag "wardrobe" of player to black stained glass pane named "&0" with all flags hidden
		set slot 3 of metadata tag "wardrobe" of player to iron ingot named "&fIron Armor" with all flags hidden
		set slot 4 of metadata tag "wardrobe" of player to gold ingot named "&6Gold Armor" with all flags hidden
		set slot 5 of metadata tag "wardrobe" of player to diamond named "&bDiamond Armor" with all flags hidden
		set slot 13 of metadata tag "wardrobe" of player to netherite ingot named "&5Netherite Armor" with all flags hidden
		open metadata tag "wardrobe" of player to player
on inventory click:
	if event-inventory is metadata tag "wardrobe" of player:
		cancel event
		if index of event-slot is 3:
			close player's inventory
			equip player with iron helmet
			equip player with iron chestplate
			equip player with iron leggings
			equip player with iron boots
			send "&aEquipped with &fIron Armor" to player
		else if index of event-slot is 4:
			close player's inventory
			equip player with gold helmet
			equip player with gold chestplate
			equip player with gold leggings
			equip player with gold boots
			send "&aEquipped with &6Gold Armor" to player
		else if index of event-slot is 5:
			close player's inventory
			equip player with diamond helmet
			equip player with diamond chestplate
			equip player with diamond leggings
			equip player with diamond boots
			send "&aEquipped with &bDiamond Armor" to player
		else if index of event-slot is 13:
			close player's inventory
			equip player with netherite helmet
			equip player with netherite chestplate
			equip player with netherite leggings
			equip player with netherite boots
			send "&aEquipped with &5Netherite Armor" to player

Keep in mind this is tested and using vanilla skript, let me know if there is anything wrong or you want anything changed. Enjoy!

Link to comment
Share on other sites

2 hours ago, LeakReal said:

a skript where if you type /sk reload <skript> it'll broadcast that a skript is being reloaded. (and the time it took to reload it)

I don't believe its possible to view the time it took but I can do this for you (without that part)

on script load:
	send "&bSkript Reloaded: &f%script%&b.sk" to all players

 

Link to comment
Share on other sites

57 minutes ago, itsKimo said:

I can do this for you.

command /wardrobe:
	trigger:
		set metadata tag "wardrobe" of player to chest inventory with 2 rows named "&bWardrobe" 
		set slot (integers between 0 and 17) of metadata tag "wardrobe" of player to black stained glass pane named "&0" with all flags hidden
		set slot 3 of metadata tag "wardrobe" of player to iron ingot named "&fIron Armor" with all flags hidden
		set slot 4 of metadata tag "wardrobe" of player to gold ingot named "&6Gold Armor" with all flags hidden
		set slot 5 of metadata tag "wardrobe" of player to diamond named "&bDiamond Armor" with all flags hidden
		set slot 13 of metadata tag "wardrobe" of player to netherite ingot named "&5Netherite Armor" with all flags hidden
		open metadata tag "wardrobe" of player to player
on inventory click:
	if event-inventory is metadata tag "wardrobe" of player:
		cancel event
		if index of event-slot is 3:
			close player's inventory
			equip player with iron helmet
			equip player with iron chestplate
			equip player with iron leggings
			equip player with iron boots
			send "&aEquipped with &fIron Armor" to player
		else if index of event-slot is 4:
			close player's inventory
			equip player with gold helmet
			equip player with gold chestplate
			equip player with gold leggings
			equip player with gold boots
			send "&aEquipped with &6Gold Armor" to player
		else if index of event-slot is 5:
			close player's inventory
			equip player with diamond helmet
			equip player with diamond chestplate
			equip player with diamond leggings
			equip player with diamond boots
			send "&aEquipped with &bDiamond Armor" to player
		else if index of event-slot is 13:
			close player's inventory
			equip player with netherite helmet
			equip player with netherite chestplate
			equip player with netherite leggings
			equip player with netherite boots
			send "&aEquipped with &5Netherite Armor" to player

Keep in mind this is tested and using vanilla skript, let me know if there is anything wrong or you want anything changed. Enjoy!

I just finished it 😕

Link to comment
Share on other sites

Hey @itsKimo could you make me a skript where if a player goes under Y level 150 it tp's them to coordtians. But so between 2 coorditns if they go below Y level 150 it teleports them to a set of coordfitan.


Thanks! -Ranguy

Edited by Ranguy
Link to comment
Share on other sites

9 hours ago, nolando09 said:

 

Okay I will get these done soon! But @GenericUsername Your skript may take longer!

Thank you so much! 🙂

 

Hello. I'm Generic. My IGN is popularkid. I know its silly. 

⫷⨽⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⨼⫸

Pronouns: He/Him

⫷⨽⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⨼⫸

Discord: Generic Username#2861

⫷⨽⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⨼⫸

Joined Minehut  ◄«◊»►  10/13/2019 ◄«◊»►

⫷⨽⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⨼⫸

Default◅ | 10/13/2019 - Current Time

 

 

Link to comment
Share on other sites

Anti illegal items skript? Recently my freind was messing around on his dupe server and got killed while making knockback 100 sticks and such. And they have been duped and spread around so much we cant just clear one players inventory. If its not to much could you make a skript that checks for enchants over the vanilla level? Or if an item is enchanted that cant be? And then removes the item or its enchants.

Link to comment
Share on other sites

On 10/25/2021 at 1:25 AM, Spinyboi123 said:

Anti illegal items skript? Recently my freind was messing around on his dupe server and got killed while making knockback 100 sticks and such. And they have been duped and spread around so much we cant just clear one players inventory. If its not to much could you make a skript that checks for enchants over the vanilla level? Or if an item is enchanted that cant be? And then removes the item or its enchants.

Ok sure

Link to comment
Share on other sites

23 hours ago, nolando09 said:

Ok sure*

Okay, sure.*

 

 

this is a joke im not trying to be annoying~

Hello. I'm Generic. My IGN is popularkid. I know its silly. 

⫷⨽⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⨼⫸

Pronouns: He/Him

⫷⨽⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⨼⫸

Discord: Generic Username#2861

⫷⨽⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⨼⫸

Joined Minehut  ◄«◊»►  10/13/2019 ◄«◊»►

⫷⨽⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⨼⫸

Default◅ | 10/13/2019 - Current Time

 

 

Link to comment
Share on other sites

On 10/27/2021 at 10:10 AM, nolando09 said:

Its alright Lmao

 

lol :)

Hello. I'm Generic. My IGN is popularkid. I know its silly. 

⫷⨽⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⨼⫸

Pronouns: He/Him

⫷⨽⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⨼⫸

Discord: Generic Username#2861

⫷⨽⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⨼⫸

Joined Minehut  ◄«◊»►  10/13/2019 ◄«◊»►

⫷⨽⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⨼⫸

Default◅ | 10/13/2019 - Current Time

 

 

Link to comment
Share on other sites

@nolando09can you let me know when you finish the Lifesteal skript~

Hello. I'm Generic. My IGN is popularkid. I know its silly. 

⫷⨽⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⨼⫸

Pronouns: He/Him

⫷⨽⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⨼⫸

Discord: Generic Username#2861

⫷⨽⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⨼⫸

Joined Minehut  ◄«◊»►  10/13/2019 ◄«◊»►

⫷⨽⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⩶⨼⫸

Default◅ | 10/13/2019 - Current Time

 

 

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