Started by
TheropodaYT
on
Topic category: Help with MCreator software
every time I load in. the guidebook that should only spawn once proceeds to spawn like a thousand of them
i wonder how i can fix that :/
Edited by TheropodaYT on Fri, 11/29/2024 - 05:35
wait, wrong category. it should be help with minecraft modding, whoops!
oh nvm, got it fixed
also, ardaivona on hold while i work on other stuff, but i will make 3.0 in the mean time
Sweet, happy to know you got it fixed.
I used something similar recently.
I used a player_persistent logic variable that started false
then a procedure that had the global trigger of player enters world
then check to see if the variable is false, and if it is, set it to true and drop the item
That way the first time any player enters the world ever they will be given the item, but not ever again.
Using something like player spawns and a player_lifetime variable would make it possible to give items every time a player respawns, too.
sorry to just jump in, but if someone comes looking with a similar issue you might be able to use that^^^ as a solution