Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
A jam submission

Core DefenderView game page

a simple tower defense game
Submitted by Volian0 — 2 minutes, 44 seconds before the deadline
Add to collection

Play game

Core Defender's itch.io page

Results

CriteriaRankScore*Raw Score
Would you recommend this to others to try out?#732.6194.000
Is this just spam?#793.2735.000
How much effort went into this? (keep in mind newcomers)#803.2735.000
Does it implement the theme well?#812.6194.000
Overall#882.9684.533
Was this entry made during the jam duration?#1043.0554.667

Ranked from 3 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.

Leave a comment

Log in with itch.io to leave a comment.

Comments

Submitted (5 edits) (+1)

Very cool game, nice style for the pixel art and VERY NICE SFX and MUSIC!!!

The downloaded file comes with the source, so it can be compiled on linux, you just need the headers and to change the main function from int WINAPI WinMain(HINSTANCE, HINSTANCE, char*, int) to int main(), at the top of the file remove the #define USE_WINDOWS and replace it with #define USE_OPENAL, also fix the path for the #include "Extensions/olcPGEX_Sound.h".

While you’re at it, you can fix a bug in the game by going to line 261 and changing the if conditional statement so it looks like this: lvl.id == 4 && lvl.level_state == LEVEL_COMPLETED To compile it you will need openAL, apart from the standard PGE libraries, just run: g++ -o coredefender main.cpp level.cpp enemy.cpp tower.cpp -lX11 -lGL -lpthread -lpng -lstdc++fs -std=c++17 -fpermissive -lopenal