• 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.
  • The Eevee Expo Game Jam has concluded! 🎉 Head on over to the game jam forum to play through the games.
    Don't forget to come back September 21st to vote for your favorites!
  • Reminder: AI-generated content is not allowed on the forums per the Rules and Regulations. Please contact us if you have any questions!
Overworld Shadows

Resource Overworld Shadows 1.0.0

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:
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 👌
.
 
Thank you so much! This is working rn!! I hope I wont have to bother anymore 😭😭
 
Hello Luka! Nice plugin again.

Is there some way to temporalily disable the shadow? E.g. entering a door, where the NPC dissapears for a moment but the shadow stays.

Thank you!
 
would be helpful to show how to do the pre req for beginners. I am unaware of how to properly do the script required for this plugin to work
 
Back
Top