Jump to content
  • 0

cant figure out whats wrong with my script, can anyone help?


razermuffinz

Question

heres my script,

on death:
 if victim is Zombie
 clear the drops
 chance of 50%
 set {_drop} to diamond named "&9Custom Drop"
 drop {_drop} at victim's location
 stop
 chance of 50%
 set {_amount} to random integer between 1 and 3
 set {_drop} to {_amount} of iron ingot named "&9Custom Drop"
 drop {_drop} at victim's location

idk what i did wrong, but every mob drops 1 diamond every time its killed, anyone got ideas on how to fix this?

update: the error says it cant identify the victim "Zombie"

Edited by razermuffinz
error update
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 1
15 minutes ago, razermuffinz said:

heres my script,

on death:
 if victim is Zombie
 clear the drops
 chance of 50%
 set {_drop} to diamond named "&9Custom Drop"
 drop {_drop} at victim's location
 stop
 chance of 50%
 set {_amount} to random integer between 1 and 3
 set {_drop} to {_amount} of iron ingot named "&9Custom Drop"
 drop {_drop} at victim's location

idk what i did wrong, but every mob drops 1 diamond every time its killed, anyone got ideas on how to fix this?

update: the error says it cant identify the victim "Zombie"

Try this:
 

on death:
	if victim is a zombie:
		clear drops
		chance of 50%:
			set {_drop} to diamond named "&9Custom Drop"
			drop {_drop} at victim's location
			stop
		chance of 50%:
			set {_amount} to random integer between 1 and 3
			set {_drop} to {_amount} of iron ingot named "&9Custom Drop"
			drop {_drop} at victim's location

 

  • Thanks 1

 

 

image.png.bc433d6489d70ad831075fe76809b993.png
 

Lifestealed | Minecraft Servers
 

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

 

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