Started by
jeux2119
on
Topic category: Help with Minecraft modding (Java Edition)
Hello
the problem: it removes XP and summons successfully but it spawns
even when i have no XP it summons them anyways
Procdeure:https://imgur.com/a/hdtOW7c
and if you didn't understand what i wanted read this:
what i want:
if 10XP----> summon
if 0XP----->dont summon
what is happening:
if 0XP---->summon anyways
Edited by jeux2119 on Fri, 03/29/2024 - 22:20
try this:
the issue is that you dont have a condition in your code to detect if you have less than 10, so if you have 10 or less, it is still executing your code. (I also changed "remove 10 xp" to "remove 10 xp level", as i assumed they were levels, but if they were xp points, you will need to do some more maths to calculate it using the "get xp level of" and the "get amount of xp needed by event/target entity to gain a level"