• Do not use Discord to host any images you post, these links expire quickly! You can learn how to add images to your posts here.
  • Eevee Expo's webhost has been having technical issues since Nov. 20th and you might be unable to connect to our site. Staff are also facing issues connecting, so please send a DM to Cat on-site or through Discord directly for faster service!
Overworld Shadows

Resource Overworld Shadows 1.0.0

R0mainx

Rookie
Member
Joined
Feb 8, 2025
Posts
2
Hello! When I put the plugins, I can't run the game anymore.
Here's the error code :

Exception: NameError
Message: uninitialized constant Sprites

Backtrace:
[Overworld Shadows] Script.rb:41:in `initialize'
[Overworld Shadows] Script.rb:173:in `new'
[Overworld Shadows] Script.rb:173:in `initialize'
Spriteset_Global:10:in `new'
Spriteset_Global:10:in `initialize'
Scene_Map:20:in `new'
Scene_Map:20:in `createSpritesets'
Scene_Map:233:in `main'
Main:35:in `mainFunctionDebug'
Main:18:in `block in mainFunction'


If you can help me, it would be nice ♥
Also, even if I delete the plugins, the error is still here.
 
Last edited:

Tenshi of War

Novice
Member
Joined
Dec 5, 2020
Posts
11
Hello! When I put the plugins, I can't run the game anymore.
Here's the error code :

Exception: NameError
Message: uninitialized constant Sprites

Backtrace:
[Overworld Shadows] Script.rb:41:in `initialize'
[Overworld Shadows] Script.rb:173:in `new'
[Overworld Shadows] Script.rb:173:in `initialize'
Spriteset_Global:10:in `new'
Spriteset_Global:10:in `initialize'
Scene_Map:20:in `new'
Scene_Map:20:in `createSpritesets'
Scene_Map:233:in `main'
Main:35:in `mainFunctionDebug'
Main:18:in `block in mainFunction'


If you can help me, it would be nice ♥
Also, even if I delete the plugins, the error is still here.

I had the same error code in vanilla Essentials v21.1 with Hotfix plugin.
I managed to solve this changing the following lines of code:

NOTE: [Line code num] Line to change —> New line of code
  • [41] @sprite = ::Sprites::Base.new(viewport) —> @sprite = Sprite.new(viewport)
  • [42] @sprite.set_bitmap(BITMAP) —> @sprite.bitmap = RPG::Cache.character(BITMAP, 0)
At last, the game was searching for the 'shadow' graphic file inside the folder "Graphics/Characters/Graphics/Characters/shadow", so i changed line 20 as follows:
  • [20] BITMAP = 'Graphics/Characters/shadow' —> BITMAP = 'shadow'
After compiling it's running perfectly for me 👌
.
 

R0mainx

Rookie
Member
Joined
Feb 8, 2025
Posts
2
Thank you so much! This is working rn!! I hope I wont have to bother anymore 😭😭
 
Back
Top