Jump to content

making skirpts for christmas presents


_Mr_Puppy_

Recommended Posts

I have an idea but its quite difficult. 

But if you can pull it off, i would pay for this.

- Npcs (police) can spawn at a players island, at random times (every couple hours or so).
- Police will chase/follow/run to the player, to search them (stop the players actions, and freeze them for like 5 seconds to do the *search*)
- IF the player has certain items in their inventory when searched, they will be fined/jailed. 

(These items are usually just minecraft items with custom textures and renamed, so you would need to detect if the player is holding for example a Green-dye, with NBT 1 tag(s) and the name 'Weed'. 

I know most of that is pretty easy to do if you are good at skript, apart from detecting an item with nbt data or a name if that works.
If you think this is something you'd be able to tackle give me a shout and we can discuss price, if its too difficult sorry;) 

Link to comment
Share on other sites

2 hours ago, ryzer said:

I have an idea but its quite difficult. 

But if you can pull it off, i would pay for this.

- Npcs (police) can spawn at a players island, at random times (every couple hours or so).
- Police will chase/follow/run to the player, to search them (stop the players actions, and freeze them for like 5 seconds to do the *search*)
- IF the player has certain items in their inventory when searched, they will be fined/jailed. 

(These items are usually just minecraft items with custom textures and renamed, so you would need to detect if the player is holding for example a Green-dye, with NBT 1 tag(s) and the name 'Weed'. 

I know most of that is pretty easy to do if you are good at skript, apart from detecting an item with nbt data or a name if that works.
If you think this is something you'd be able to tackle give me a shout and we can discuss price, if its too difficult sorry;) 

dont post the same thing from another post you made

  • Confused 1

 

 

image.png.bc433d6489d70ad831075fe76809b993.png
 

Owner of Lifestealed, Labs, Encore, UNOfficially and Observed
 

OG [VIP] 12/26/20 - 10/27/2021
OG [PRO] 12/27/21 - 11/18/2022
OG [LEGEND] 11/18/2022 - 3/14/2023
[DEFAULT] 3/14/2023 - 5/8/2024

[MOD] 5/8/2024 - Present

 

Link to comment
Share on other sites

On 12/26/2021 at 9:31 AM, iwantadaddy said:

It would be nice if you could make it so that when a player is killed by another player, it drops a player head. but not of the player but just a steve head.

on death:
	if attacker is player:
		give attacker 1 player head

 

Link to comment
Share on other sites

On 12/24/2021 at 7:42 PM, ryzer said:

I have an idea but its quite difficult. 

But if you can pull it off, i would pay for this.

- Npcs (police) can spawn at a players island, at random times (every couple hours or so).
- Police will chase/follow/run to the player, to search them (stop the players actions, and freeze them for like 5 seconds to do the *search*)
- IF the player has certain items in their inventory when searched, they will be fined/jailed. 

(These items are usually just minecraft items with custom textures and renamed, so you would need to detect if the player is holding for example a Green-dye, with NBT 1 tag(s) and the name 'Weed'. 

I know most of that is pretty easy to do if you are good at skript, apart from detecting an item with nbt data or a name if that works.
If you think this is something you'd be able to tackle give me a shout and we can discuss price, if its too difficult sorry;) 

i bet i could pull it off but i don't think i wanna tackle this offer 

Link to comment
Share on other sites

On 12/23/2021 at 3:32 AM, realrsrsamr said:

make a skript that makes it easier to get crate keys like /key {ign} {key}

and /keyall {key}

 

make it for golden crates

idk what golden crates does but um

command /key [<offline player>] [<text>]:
	permission: keys.staff
	trigger:
		if arg-1 is set:
			if arg-2 is "wood":
				give player 1 tripwire hook named "&aWood Key"
			else:
				send "&cUnknown Key" to player
			if arg-2 is "stone":
				give player 1 tripwire hook named "&bStone Key" 
			else:
				send "&cUnknown Key" to player
			if arg-2 is "iron":
				give player 1 tripwire hook named "&3Iron Key" 
			else:
				send "&cUnknown Key" to player
			if arg-2 is "diamond":
				give player 1 tripwire hook named "&9Diamond Key" 
			else:
				send "&cUnknown Key" to player
			if arg-2 is "emerald":
				give player 1 tripwire hook named "&2Emerald Key"
			else:
				send "&cUnknown Key" to player
		if arg-1 is not set:
			send "&6Usage: /key [player] [key name (wood/stone/iron/diamond/emerald)]" to player

command /keyall [<text>]:
	permission: keys.staff
	trigger:
		if arg-1 is set:
			if arg-1 is "wood":
				loop all players:
					give loop-player 1 tripwire hook named "&aWood Key"
			else:
				send "&cUnknown Key" to player
			if arg-1 is "stone":
				loop all players:
					give player 1 tripwire hook named "&bStone Key"
			else:
				send "&cUnknown Key" to player
			if arg-1 is "iron":
				loop all players:
					give player 1 tripwire hook named "&3Iron Key"
			else:
				send "&cUnknown Key" to player
			if arg-1 is "diamond":
				loop all players:
					give player 1 tripwire hook named "&9Diamond Key"
			else:
				send "&cUnknown Key" to player
			if arg-1 is "emerald":
				loop all players:
					give player 1 tripwire hook named "&2Emerald Key"
			else:
				send "&cUnknown Key" to player
		if arg-1 is not set:
			send "&6Usage: /keyall [key name (wood/stone/iron/diamond/emerald)]" to player

 

Link to comment
Share on other sites

On 12/24/2021 at 7:42 PM, ryzer said:

I have an idea but its quite difficult. 

But if you can pull it off, i would pay for this.

- Npcs (police) can spawn at a players island, at random times (every couple hours or so).
- Police will chase/follow/run to the player, to search them (stop the players actions, and freeze them for like 5 seconds to do the *search*)
- IF the player has certain items in their inventory when searched, they will be fined/jailed. 

(These items are usually just minecraft items with custom textures and renamed, so you would need to detect if the player is holding for example a Green-dye, with NBT 1 tag(s) and the name 'Weed'. 

I know most of that is pretty easy to do if you are good at skript, apart from detecting an item with nbt data or a name if that works.
If you think this is something you'd be able to tackle give me a shout and we can discuss price, if its too difficult sorry;) 

Custom mob ai is the hardest thing here

Otherwise this is definitely possible

Main MC account: Gam3rBoi (VIP in MH)

Alt MC account: *Gam3rBoi2147

Farcade server owner

Skripter with 6+ months experience + time learning coding concepts

Message me through the forums if you need anything!

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