Cally’s Caves 3 Free Expansion “Melvin’s Prototype Factory” Coming Next Week!

After a busy couple of months, we’ve just submitted a huge new content update for Cally’s Caves 3, “Melvin’s Prototype Factory.”  The update should be out for iOS and Android next week.

Screenshot 2015-09-28 18.32.27

This is the biggest update we’ve ever done for a game, and will include a bunch of new features:
Screenshot 2015-09-26 16.46.53

Massive New Zone:
We’ve added a whole new 34-level zone, with all-new art, a fully functional map and lots of Checkpoints.

Screenshot 2015-10-05 14.52.33(2)

New Weapons: 3 new weapons and their final forms can be found in the new Levels!  Try using the power of the Slimes for your own benefit with the Slimegun, trap enemies and prevent them from hurting you with the Web Shooters, or use the Bow and Arrow from Cally’s Caves 2 to pepper enemies with arrows.  All of the new weapons have 4 evolution tiers, and can be used throughout all of the other game modes.

Screenshot 2015-10-02 12.23.41

New Enemies: Melvin has been creating bosses in his prototype lab for years, and to destroy him, you’ll have to defeat them all!  5 new enemy classes with unique behaviors mix up the combat and test your skills.

Screenshot 2015-10-01 13.52.25

Beyond all of the new content, we will have a ton of bug fixes and optimizations including the following:

iOS

  • fixed issue where Final Bladegun isn’t being awarded for beating Survival Mode
  • fixed issue where Bera would sometimes transform into Cally in “Bera: the Long Way Home”

Android

  • greatly reduced frequency of video ads
  • fixed missing Sniper Rifle issue – find it in level 101
  • fixed rating message in pause menu
  • fixed several small resolution bugs
  • several new tracks on the soundtrack

We are also happy to announce that the expansion is totally free and is not an in-app purchase or anything like that.  We wanted to find a way to thank all the people that have downloaded and supported Cally’s Caves 3.  We will have at least one more free expansion out before Christmas, and an announcement of our next project shortly after.

melvinszone

Dev Diary #14: Releasing Upates for an iOS Game Using Gamemaker: Studio

icon1024x1024

With the recent release of new iPhones and iOS 8, we found ourselves in the position where we had to update our iOS games.  If we didn’t, our apps would crash on boot, and even if they did run, we wanted to make sure we custom laid everything out for the new iPhone screen sizes.  We had wanted to release updates for Cally’s Caves and Cally’s Caves 2 for a long time, but held off because we weren’t 100% sure how to do it, and updating player save data was intimidating.  Faced with the prospect of having our apps pulled, we buckled down and got our updates done.  Our process was probably unconventional, but we thought we would share how we did our updates for iOS without losing players’ save games in the process.  So, let’s begin.

Screenshot 2014-11-04 13.49.00

Saves

The way we handled saving variables across play sessions in Cally’s Caves and Cally’s Caves 2 was the most basic way you can save things using Gamemaker: Studio.  We created an .ini file and had the game save variables that we wanted to keep saved in the file.  For example, say the player levels Cally up and increases her max hitpoints to four.  We don’t want that player to come back for their next play session and have their max hitpoints be three, right?  So after they level up, we open the .ini document in a line of code, save that variable (global.maxhp = 4), and then close the .ini document.  The next time the player starts the game, the global.maxhp value is read from the .ini document, so they will start with 4 max HP.  It’s a really simple system that you can find in the GM:S help.

Continue reading