diff --git a/nodes.lua b/nodes.lua
index fe2f1a46ae4f6ced96ac60caa76da73379181b37..d954c32c3ef90519695f7aa1921aa4611d346ae4 100644
--- a/nodes.lua
+++ b/nodes.lua
@@ -384,3 +384,11 @@ if minetest.get_modpath("ethereal") then
         },
     })
 end
+
+minetest.register_entity("illuna:rulehint", {
+    visual = "sprite",
+    visual_size = {x=3,y=3},
+    collisionbox = {0},
+    physical = false,
+    textures = {"illuna_rulehint.png"},
+})
diff --git a/textures/illuna_rulehint.png b/textures/illuna_rulehint.png
new file mode 100644
index 0000000000000000000000000000000000000000..bfe061715284b49078a0e152b64b6a884e36f52a
Binary files /dev/null and b/textures/illuna_rulehint.png differ