Jump to content

Looking for Skripters!


Hiiiiiir

Recommended Posts

Hello!

I really want to make a good server but i dont know how to skript. Is there anyone who would like to skript with me, and if so what is your dicord name and tag, and what is your minecraft username??

Things I want skripted if possible:

Every 15 seconds, you get a random item.

If you kill a player, you get 5 points. If you get 20 points, you get VIP rank. 40 points equals MVP rank, and so on.

You can get a special item in game, and if you right click it,  you get a SECRET rank.

Whenever you are low on health, it gives you a option to buy some gapples for a certian price or to get some normal apples for free.

If you are a admin on the server, you have a special stick, which when you right click it, it summons lightning.

Custom death messages, like if you fall  to your death, it would says "[Playername] forgot how gravity works!".

A /toggle command so you can toggle getting random items every 15 seconds.

A npc that warps you to the end or the nether, and then back.

I need it so a certian place is spawn protected, but then the rest isnt.

I know this isn't really a skript, but make the whole world a void except for the spawn.

Sorry if some of these arent skript related, but i'm not a expert of it.

Please reply to me if you can do these!!!

Edited by Hiiiiiir
Because MineHut said maybe put some more detail in,
Link to comment
Share on other sites

I suggest you give as much information you can about what the Scripters will need to do!

Founder - Minehut.xyz

The leading Minehut support website. We aim to provide top quality tutorials, provide answers to top questions, and help in any way we can. Our site is community driven, and we will continue to make it better and better.

Support | 28/08/20 -13/09/20

Senior Support | 13/09/20 - 19/10/20

 

forums.gif.5d3db2db4a05c9465b84fa9bf0293df4.gif

Link to comment
Share on other sites

awsome, that'll give the developers more info on what they need to do.

Founder - Minehut.xyz

The leading Minehut support website. We aim to provide top quality tutorials, provide answers to top questions, and help in any way we can. Our site is community driven, and we will continue to make it better and better.

Support | 28/08/20 -13/09/20

Senior Support | 13/09/20 - 19/10/20

 

forums.gif.5d3db2db4a05c9465b84fa9bf0293df4.gif

Link to comment
Share on other sites

9 hours ago, Hiiiiiir said:

Hello!

I really want to make a good server but i dont know how to skript. Is there anyone who would like to skript with me, and if so what is your dicord name and tag, and what is your minecraft username??

Things I want skripted if possible:

Every 15 seconds, you get a random item.

If you kill a player, you get 5 points. If you get 20 points, you get VIP rank. 40 points equals MVP rank, and so on.

You can get a special item in game, and if you right click it,  you get a SECRET rank.

Whenever you are low on health, it gives you a option to buy some gapples for a certian price or to get some normal apples for free.

If you are a admin on the server, you have a special stick, which when you right click it, it summons lightning.

Custom death messages, like if you fall  to your death, it would says "[Playername] forgot how gravity works!".

A /toggle command so you can toggle getting random items every 15 seconds.

A npc that warps you to the end or the nether, and then back.

I need it so a certian place is spawn protected, but then the rest isnt.

I know this isn't really a skript, but make the whole world a void except for the spawn.

Sorry if some of these arent skript related, but i'm not a expert of it.

Please reply to me if you can do these!!!

Bruv, You are not getting all these for free 😕

⭢ Founder Of Website 

The Website is men't to help you with all the skript you need to start your server. Soon we will have tutorials on how to use certain things, but for now you should go to Minehut.xyz for tutorials. Again, The Website is men't for skript help and skript requests.

Link to comment
Share on other sites

16 hours ago, Hiiiiiir said:

Hello!

I really want to make a good server but i dont know how to skript. Is there anyone who would like to skript with me, and if so what is your dicord name and tag, and what is your minecraft username??

Things I want skripted if possible:

Every 15 seconds, you get a random item.

If you kill a player, you get 5 points. If you get 20 points, you get VIP rank. 40 points equals MVP rank, and so on.

You can get a special item in game, and if you right click it,  you get a SECRET rank.

Whenever you are low on health, it gives you a option to buy some gapples for a certian price or to get some normal apples for free.

If you are a admin on the server, you have a special stick, which when you right click it, it summons lightning.

Custom death messages, like if you fall  to your death, it would says "[Playername] forgot how gravity works!".

A /toggle command so you can toggle getting random items every 15 seconds.

A npc that warps you to the end or the nether, and then back.

I need it so a certian place is spawn protected, but then the rest isnt.

I know this isn't really a skript, but make the whole world a void except for the spawn.

Sorry if some of these arent skript related, but i'm not a expert of it.

Please reply to me if you can do these!!!

I will pay you after you do it.

Link to comment
Share on other sites

options:
	goldenappleprice: 10
	appleprice: 5
	specialitem: dirt

every 15 seconds:
	loop all players:
    	if {random::*} contains loop-player:
			give a random item out of all items to the loop-player
        
command /toggle:
	trigger:
    	if {random::*} contains player:
        	remove player from {random::*}
        else:
        	add player to {random::*}

on death of player:
	attacker is a player
	add 5 to {points::%attacker's uuid%}
	if {points::%attacker's uuid%} is 20:
		# code to give vip
	else if {points::%attacker's uuid%} is 40:
		# code to give mvp

on right click with {@specialitem}:
	# code for special rank

on damage of player:
	if victim's health < 5:
		send formatted "<command:/goldenapple>Click to buy some Golden Apples"
		send formatted "<command:/apple>Click to buy some Apples"

command /goldenapple:
	trigger:
    	if player's balance >= {@goldenappleprice}:
			remove {@goldenappleprice} from player's balance
			give player golden apple
			send "Golden Apple purchased"
            
command /apple:
	trigger:
    	if player's balance >= {@appleprice}:
			remove {@appleprice} from player's balance
			give player apple
			send "Apple purchased"
            
command /lightningstick:
	permission: lightning.stick
    trigger:
    	give player stick named "Lightning Stick!"
        
on right click with stick named "Lightning Stick!":
	strike lightning at event-location
    
on citizen click: # requires skellet
	citizen's name is "Nether": # requires citizens to create the npc
		teleport player to location(0, 100, 0, world "world_nether") # change this to where you want the player to be teleported
	citizen's name is "Overworld":
		teleport player to location(0, 100, 0, world "world") # change this to where you want the player to be teleported
        
on death of player:
	if last damage cause is fall:
		set death message to "%victim% forgot how gravity works!"


None of this is tested so some of them might not work. For the buying golden apples and apples part, didn't know which currency you used so just used essentials eco. You can change the price of each in the options. Also didn't know what item you wanted for the special item to get the special rank so you can set that in the options too. For the rank giving part for points, didn't know what permission plugin you used so just change the comment i placed do execute console command "/command" and set the command to give the player the rank.
 

On 8/4/2020 at 12:31 PM, Hiiiiiir said:

I know this isn't really a skript, but make the whole world a void except for the spawn.

For this part, use a plugin called Multiverse and Void Generator to create a void world. To create the void world, do /mv create (world) normal -g VoidGenerator

Edit:

Some of these indents got messed up in the post for some reason but if you know the basics of skript, you can easily fix them.

Edited by _Tarna_

Discord - tarna256

In-game name - _Tarna_

Website - https://tarna.dev
Paste Site: https://paste.tarna.dev

---------------------------------------------------------

[VIP] - 7/27/2020

Community Support - 7/8/20 - 11/3/20

Helper  - 11/3/20 - 2/21/21

Moderator - 2/21/21 - 5/17/21

❤️ - 5/17/21 - 12/20/22

Moderator - 12/20/22 - now

---------------------------------------------------------

image.png.70849a9b84e0347ce107b8e3eaee312c.pngimage.png.2111009afbd8bef10966ba9ede35a199.png

Link to comment
Share on other sites

20 hours ago, _Tarna_ said:

options:
	goldenappleprice: 10
	appleprice: 5
	specialitem: dirt

every 15 seconds:
	loop all players:
    	if {random::*} contains loop-player:
			give a random item out of all items to the loop-player
        
command /toggle:
	trigger:
    	if {random::*} contains player:
        	remove player from {random::*}
        else:
        	add player to {random::*}

on death of player:
	attacker is a player
	add 5 to {points::%attacker's uuid%}
	if {points::%attacker's uuid%} is 20:
		# code to give vip
	else if {points::%attacker's uuid%} is 40:
		# code to give mvp

on right click with {@specialitem}:
	# code for special rank

on damage of player:
	if victim's health < 5:
		send formatted "<command:/goldenapple>Click to buy some Golden Apples"
		send formatted "<command:/apple>Click to buy some Apples"

command /goldenapple:
	trigger:
    	if player's balance >= {@goldenappleprice}:
			remove {@goldenappleprice} from player's balance
			give player golden apple
			send "Golden Apple purchased"
            
command /apple:
	trigger:
    	if player's balance >= {@appleprice}:
			remove {@appleprice} from player's balance
			give player apple
			send "Apple purchased"
            
command /lightningstick:
	permission: lightning.stick
    trigger:
    	give player stick named "Lightning Stick!"
        
on right click with stick named "Lightning Stick!":
	strike lightning at event-location
    
on citizen click: # requires skellet
	citizen's name is "Nether": # requires citizens to create the npc
		teleport player to location(0, 100, 0, world "world_nether") # change this to where you want the player to be teleported
	citizen's name is "Overworld":
		teleport player to location(0, 100, 0, world "world") # change this to where you want the player to be teleported
        
on death of player:
	if last damage cause is fall:
		set death message to "%victim% forgot how gravity works!"


None of this is tested so some of them might not work. For the buying golden apples and apples part, didn't know which currency you used so just used essentials eco. You can change the price of each in the options. Also didn't know what item you wanted for the special item to get the special rank so you can set that in the options too. For the rank giving part for points, didn't know what permission plugin you used so just change the comment i placed do execute console command "/command" and set the command to give the player the rank.
 

For this part, use a plugin called Multiverse and Void Generator to create a void world. To create the void world, do /mv create (world) normal -g VoidGenerator

Edit:

Some of these indents got messed up in the post for some reason but if you know the basics of skript, you can easily fix them.

Can I use a couple of those in my website. (You do get credit ofcourse)

⭢ Founder Of Website 

The Website is men't to help you with all the skript you need to start your server. Soon we will have tutorials on how to use certain things, but for now you should go to Minehut.xyz for tutorials. Again, The Website is men't for skript help and skript requests.

Link to comment
Share on other sites

3 hours ago, Slippy said:

Can I use a couple of those in my website. (You do get credit ofcourse)

sure

Discord - tarna256

In-game name - _Tarna_

Website - https://tarna.dev
Paste Site: https://paste.tarna.dev

---------------------------------------------------------

[VIP] - 7/27/2020

Community Support - 7/8/20 - 11/3/20

Helper  - 11/3/20 - 2/21/21

Moderator - 2/21/21 - 5/17/21

❤️ - 5/17/21 - 12/20/22

Moderator - 12/20/22 - now

---------------------------------------------------------

image.png.70849a9b84e0347ce107b8e3eaee312c.pngimage.png.2111009afbd8bef10966ba9ede35a199.png

Link to comment
Share on other sites

On 8/7/2020 at 11:52 PM, _Tarna_ said:

sure

For some reason i can't actually use the skript, and when i do /skript reload (the name) it says "(name) is not in the skripts folder!" so i do /sk reload all, and then i try do /dupe or /toggle, but it says unknown command!

Link to comment
Share on other sites

3 hours ago, Hiiiiiir said:

For some reason i can't actually use the skript, and when i do /skript reload (the name) it says "(name) is not in the skripts folder!" so i do /sk reload all, and then i try do /dupe or /toggle, but it says unknown command!

make sure you added it in the right folder. plugins > skript > scripts. In the scripts folder, make a file called something.sk then in game do /sk reload something.

Discord - tarna256

In-game name - _Tarna_

Website - https://tarna.dev
Paste Site: https://paste.tarna.dev

---------------------------------------------------------

[VIP] - 7/27/2020

Community Support - 7/8/20 - 11/3/20

Helper  - 11/3/20 - 2/21/21

Moderator - 2/21/21 - 5/17/21

❤️ - 5/17/21 - 12/20/22

Moderator - 12/20/22 - now

---------------------------------------------------------

image.png.70849a9b84e0347ce107b8e3eaee312c.pngimage.png.2111009afbd8bef10966ba9ede35a199.png

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