Achievement

Started by InRaiYTS on

Topic category: Help with modding (Java Edition)

Last seen on 13:56, 18. May 2024
Joined Oct 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Achievement

I'm trying to set up so that when a player has 4 different items in his inventory, he is given an achievement. However, it is not given. How to configure?

Last seen on 11:41, 17. May 2024
Joined May 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Use the 'custom trigger'…
Fri, 10/20/2023 - 19:46

Use the 'custom trigger' function where it asks for your achievement's trigger.

Then, create a separate procedure with the 'on player update tick' global trigger. Use an 'if' bracket with 'and' functions to check that each of your four items is in the player's inventory. If all four of these conditions are true, use the 'give achievement' function to give the player your achievement.

Last seen on 13:56, 18. May 2024
Joined Oct 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
It seems to have done, but…
Sat, 10/21/2023 - 12:22

It seems to have done, but when receiving items, the game crashes and does not allow to enter the world in subsequent attempts

Last seen on 11:41, 17. May 2024
Joined May 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
It should look something…
Sat, 10/21/2023 - 19:07

It should look something like this. You do need to be careful running things on player update tick, as it's very easy to crash the game if you misplace something.

If you're worried about this, you could also just change the global trigger to 'when entity picks up item.' It wouldn't give the advancement if the items were transferred into the inventory via. a menu, but would still probably work in most cases.

Last seen on 13:56, 18. May 2024
Joined Oct 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Even receiving an item, the…
Tue, 10/24/2023 - 16:41

Even receiving an item, the game crashes, I think it will be easier to remove this achievement

Last seen on 11:41, 17. May 2024
Joined May 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
If this is the case, it’s…
Tue, 10/24/2023 - 16:43

If this is the case, it’s more likely that there’s something the item is doing that crashes the game, not the achievement. Nothing in the above procedure, or the ‘picks up item’ variant should really be able to do that. 
What specific error is this giving? And is the actual achievement procedure listed in the crash log as one of the issue sources?

Last seen on 13:56, 18. May 2024
Joined Oct 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
There is nothing in the…
Tue, 10/24/2023 - 18:39

There is nothing in the objects themselves. I wanted to send crash-reports, but I don't understand how to get the file URL

Last seen on 11:41, 17. May 2024
Joined May 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
If you look at the crash log…
Tue, 10/24/2023 - 20:24

If you look at the crash log, the actual 'error' should be in light red, and it should be followed by a list of procedures that aren't working. (This is just in the 'console' tab of your workspace, and appears every time the client is run.) If it just says 'memory overload,' for example, then something's looping endlessly without a stop condition. More likely, there's a missing dependency somewhere- something might be using 'nearest entity of type,' but not finding an entity, and then trying to run a procedure on nothing. Just a general idea of what the problem is would be helpful!

Last seen on 13:56, 18. May 2024
Joined Oct 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
if I understood correctly…
Wed, 10/25/2023 - 16:20

if I understood correctly where to look, it says "BUILD FAILED"

 

Last seen on 14:22, 18. May 2024
Joined Feb 2018
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
@InRayYTS Can you screenshot…
Wed, 10/25/2023 - 16:47

@InRayYTS

Can you screenshot your console about the error message you get?

Last seen on 13:56, 18. May 2024
Joined Oct 2023
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I don't really understand…
Wed, 10/25/2023 - 20:04

I don't really understand how I can send a screenshot here

 

 

Last seen on 11:41, 17. May 2024
Joined May 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
You need to upload the file…
Wed, 10/25/2023 - 20:10

You need to upload the file somewhere else, (mediafire, imigur, wix, etc;), and then copy the image URL and link it here. MCreator doesn't store the files itself.

Last seen on 11:41, 17. May 2024
Joined May 2022
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
...Haven't really seen…
Thu, 10/26/2023 - 16:11

...Haven't really seen something like this before. It looks like something about the 'Heavenly Lord' procedure is causing problems? Could you maybe upload a screenshot of the procedure itself? If you click any of the links there, it will take you to the specific lines in the code that are causing issues, though it looks like it is specifically the advancement that's the source. (Sorry, this probably isn't very helpful.)