It has been tested and verified with CE 1.10 and onwards. The core features should be compatible with earlier versions as long as they use the same save system, but I currently can not promise that.
Stringsnapper
Creator of
Recent community posts
Hi all! I'm going to do some shameless self promotion if that is ok? (If not I'll remove the post)
I worked on the recent update for the DOSMan game REVEREND and developed a tool to be able to add Steam achievements to games made with EFPSE. It's called Boomer Shell and I released it on itch.io today. Would be nice if some of you would check it out. I'm planning on adding more features as part of future collaborations with DOSMan, but the version available now is more or less the version we put into REVEREND.
Really nice PS1 retro horror vibes from this one! The graphics and lighting works really well!
I think you got the controls mixed up in the description. For me "X" was interact and "Z" was light match. Other than that I think the controls work great for this kind of game.
I seem to be able to go out of bounds from one of the corners of the large room with the sofa and armchair. Is there supposed to be another room there?
The sound design was nice and minimalistic, but I wish the music would loop instead of going silent after a while.
I am honestly not sure what to do with the pieces I collect. I just walk around picking up stuff. I found a spider but it doesn't seem to do anything yet. I guess the full game loop has not been implemented yet? Looking forward to try the game again if you plan to keep working on it!
I think you have something here that could become really cool.
I did like the idea and can see the resemblance to the original game.
The sound design could use a bit more polish but it is heading in the right direction. The .exe version sounds miles better than the browser version!
The graphics are simple but I think they work. Would be nice with some kind of shader or filter to increase the "spookiness". Maybe give it some VHS or PS1 vibes? :)
Not sure if there is a problem on my end, but I don't seem to encouter any enemies or obstacles. I just collect the urns and then I'm able to leave. Maybe implement the spider from the cover to create a stronger connection between the game and the artwork.
A fun little game that fits the theme quite well. Haven't played Ghosts and Gobins, but looking at youtube playthroughs I can see the resemblance.
The main level feels a bit unbalanced. Maybe make it so that the zombies spawn a bit faster? Now I could simply just skip all of them to get to the boss, which took a big difficulty leap. Took a while to beat the level and I was tempted to simply say that the boss was too difficult. Now I'm more inclined to say that the first part of the level was too easy xD
Would have been nice with another level!
The level editor was a really cool feature. The bats seem to fly out of bounds though, and there don't seem to be a way to quit to main menu from the editor.
Thank you for playing and your feedback! We appreciate it!
The game is running on Easy FPS Editor CE, which is a nice but quite limited little engine/editor to make retro fps games.
We'll get those issues fixed asap.
The janky hit detection is probably due to the pumpkin entity being quite small and fast. Could probably be just a matter of adding some transparent padding to the sprites.
The clock and the vampire icons are actually handlers for some of the game mechanics. They are not supposed to be seen but have their own icons for development purposes. We could probably hide them by boxing them in.
We'll look in to the pacing of the cutscenes. It would probably be better to get back to the main menu after the ending. We'll try to convince the engine to handle that 😆
Whenever I try to create a git repository from a project I end up breaking the game. There is a "Something went horribly wrong"-message when I try to build. Seems like the editor doesn't have access to objects in the .git folder when building which causes errors (IMO it should ignore the .git folder when building). This is the message from the error log:
Source: mscorlib Reason: Access to the path 'C:\Users\{my_user}\AppData\Local\EasyFPSEditor\V1.10.5\Builds\Death Rogue\Data\.git\objects\00\c7f089e2deb02f066caf8dc9c66864cf1d4a18' is denied.
I now believe that the issue is that the first else-statement gets executed regardless of which if-statement it is in. That means that nested if-statements are not possible in this way. I ended up solving it with a procedure instead. I should clarify that this is a loop script.
procedure trySpawn willSpawn = 90 diceRoll = RANDOM(1, 100) map.spawnPoints=0 if $diceRoll > $willSpawn { posX = RANDOM(0,64) posY = RANDOM(0,64) entity spawnat "bat_angry" $posX $posY 0 map.spawnedEnemies++ } end if $map.spawnPoints > $map.spawnCost { call trySpawn } else { map.spawnPoints++ } status "spawned Enemies: $map.spawnedEnemies"
Hi! I'm new to the Easy FPS Editor CE and I'm trying to figure out why my if-statements don't work as expected. I have a loop-script that is supposed to spawn enemies at random with a delay by ticking up a "spawnPoints" variable that is used to "purchase" enemies. Enemies will then only spawn if a "diceRoll" is higher than a specific value.
```
posX = RANDOM(0,64) posY = RANDOM(0,64) diceRoll = RANDOM(1, 1000) willSpawn = 940 // Check if spawnPoints are enough for spawning an enemy if $map.spawnPoints > $map.spawnCost { // Check the dice roll if $diceRoll > $willSpawn { entity spawnat "bat_angry" $posX $posY 0 map.spawnedEnemies++ map.spawnPoints=0 } else { map.spawnPoints++ } } else { map.spawnPoints++ } status "$map.spawnPoints"
```
Somehow the inner else-statement gets executed instead of the outer, even though I can see that the spawnPoints are lower than the spawnCost.
I tried to submit without first creating the project on Itch (this is my first Jam). Somehow an old project that is no longer playable was submitted automatically, even though I submitted the correct project right after. Is this possible to fix?
Wrong project that was submitted: https://stringsnapper.itch.io/wordslam
Correct project that was not submitted: https://stringsnapper.itch.io/drunken-bar-barian