You are browsing as a guest. Sign up (or log in) to start making projects!

17m 57s logged

Hello! Does anybody know how to fix these two errors, I don’t have any experience coding on Godot and I don’t know why it’s crashing. I am currently making the warioware mission and I am using Godot v4 because my old computer cannot open it without crashing. (If you need more images, I can put more)

0
56

Comments 6

@Jaden_Leung

the error codes are
E 0:00:01:996 garlic_.gd:4 @ @implicit_ready(): Node not found: “../Player/Area2D” (relative to “/root/Minigame_1/Garlic_”).
<C++ Error> Method/function failed. Returning: nullptr
<C++ Source> scene/main/node.cpp:1878 @ get_node()
garlic_.gd:4 @ @implicit_ready()
and
E 0:00:01:996 minigame_1.gd:2 @ @implicit_ready(): Node not found: “ThemedTimer” (relative to “/root/Minigame_1”).
<C++ Error> Method/function failed. Returning: nullptr
<C++ Source> scene/main/node.cpp:1878 @ get_node()
minigame_1.gd:2 @ @implicit_ready()

@supercoolcodinggirl

hey! The paths seem incorrect. Change the name in the path to a lowercase m so it can be “/root/minigame_1/Garlic_”). When you refer to scenes, you need to make sure they are exactly how you spelled them when you named them. Hopefully that makes sense. C:

@Jaden_Leung

@supercoolcodinggirl
Hello! Thanks for the help but I can’t seem to find anything in scripts containing minigame_1 or Garlic_

@supercoolcodinggirl

You have to drag them into the scene from the file system. So you should also take the themedtimer and drag it into the viewport from the file system.

@Jaden_Leung

@supercoolcodinggirl
thank you! I fixed both errors

@supercoolcodinggirl

yay!!