Showing posts with label dataisyourmostpowerfulweapon. Show all posts
Showing posts with label dataisyourmostpowerfulweapon. Show all posts

Tuesday, 9 October 2018

OFF GRID IS LIVE ON KICKSTARTER!

The moment we've all been waiting for:  Off Grid is now LIVE ON KICKSTARTER!

That means you now have the opportunity to:

-PLAY A FREE DEMO OF OFF GRID
-Secure your copy from as little as £8 (the SUPER EARLY BIRD deal is a steal!)
-Get your name or handle in the game
-Help shape the game via our FIRST ACCESS program (back at the PENTESTER level)
-Snag some official OFF GRID merch!



We are SO excited to bring you Off Grid!   To play the demo, visit the kickstarter campaign page and follow the link to the demo!

Help us make noise! 

Here's all the links you need: 


Website: http://offgridthegame.com/

DevBlog:  https://offgridthegame.blogspot.com/

Steam:  https://store.steampowered.com/app/526720/Off_Grid/

Kickstarter:  http://offgridthegame.com/kickstarter


Tweet suggestions: 


Support OFF GRID:  A game about data privacy and mass surveillance.

Launching on #kickstarter today with playable demo!
http://offgridthegame.com/kickstarter
#offgridthegame

OFF GRID: A stealth hacking adventure where data is your most powerful weapon.
LIVE ON KICKSTARTER TODAY!
http://offgridthegame.com/kickstarter
#offgridthegame

Hack like you have to.  Game the system.  Don't get caught - your daughter needs you.
Support @OffGridTheGame on Kickstarter TODAY!  LIVE AT 4PM BST!
http://offgridthegame.com/kickstarter
#offgridthegame



Thank you!

The Off Grid Team

If you haven’t already - be sure to
wishlist Off Grid on Steam - each wishlist makes a big difference to us, and we really appreciate your support!

Tuesday, 25 September 2018

Off Grid is Kickstarting!


BIG NEWS! We'll be running a Kickstarter campaign in October!



 Get ready for:

  • a playable demo
  • the first ever opportunity to secure a copy of Off Grid
  • a chance to get behind the scenes and help shape the game

The Kickstarter will go live:

Tuesday, October 9th


Please consider backing us if you are able! If you're not able to, please share, share, share.  Every pledge, like, wishlist and follow means a lot!

We'll be asking for feedback on our campaign via Discord this week - hop on in there to get a preview of the campaign & tell us what you think: https://discordapp.com/invite/NDEVwBJ


Join the mailing list for news and updates at http://offgridthegame.com/newsletter

We can't wait to share the campaign with you.

Thanks everyone!

The Off Grid Team





If you haven’t already - be sure to wishlist Off Grid on Steam - each wishlist makes a big difference to us, and we really appreciate your support!

Thursday, 20 September 2018

Thursdays = Dev Stream Days!


Hello!

That's right, Thursdays are Dev Stream Days! We'll be chatting all things Off Grid, show you in-game play, hacking, modding, and more...

Here's what you need to know:

When:

Every Thursday

What time:

5pm BST / 12pm EDT / 9am PDT

Where:

https://www.twitch.tv/semaeopus

Ask questions via twitch, or in our Discord's #hack-the-planet channel! Join the discord here: https://discordapp.com/invite/NDEVwBJ

ICYMI: We've done a couple dev streams already! One featured hacker Darren Martyn, Pwnsauce of LulzSec fame, and in another, Rich intro'd the game and went through some basic lua device scripting.




Videos are also posted to our YouTube channel after the fact - hop on over there and have a gander:
https://www.youtube.com/offgridthegame

Hope you can tune in!

The Off Grid Team 


If you haven’t already - be sure to wishlist Off Grid on Steam - each wishlist makes a big difference to us, and we really appreciate your support!

Monday, 3 September 2018

Discord = OPEN! Dev chat TODAY 9pm BST / 4pm EDT

Good news!

We've been having fun today with a little soft launch of the Semaeopus discord server!

We invited our newsletter subscribers in for a little *exclusive* dev AMA session earlier - and now we're ready to welcome the rest of you out there in the big, wide world.

Join us in Discord!


https://discord.gg/NDEVwBJ

Get your questions ready...


The devs will be online again at 9pm BST / 4pm EDT / 1pm PDT today to welcome you and answer any qestions you have!


Look forward to chatting with you soon!


If you haven’t already - be sure to wishlist Off Grid on Steam - each wishlist makes a big difference to us, and we really appreciate your support!

Tuesday, 5 December 2017

Dev Blog Post 5.12.2017 - Social Engineering and Distracting Noises

We’ve been working with a bit smaller team for this sprint, so this is going to be slightly shorter blog post than usually. And we’ll switch the format slightly as well, so you’ll get a section from both of us telling about what we’ve been up to…

Steve:

My first month has flown by! It’s been great to get started and become acquainted with Unity, which has impressed me. I started off on Off Grid by poking around the existing code, and playing the demo level, which gives an good overview of where the project is. After that I was forced to do some real work; first of all, I exposed the ‘Noise’ system to Lua, meaning modders will be able to play sounds that the AI will investigate. I’ve also fiddled with the camera, with the Lua setup, the wiki, and a fair few under the hood changes that hopefully will help us create new content more quickly. Exciting times ahead!

Pontus:


Character profiling

We had already previously converted the text files we use to describe each character’s personalities and background information from old XML files into Lua. But as we'de designed some of our data mechanics, and especially the social engineering aspect of hacking and privacy bit further, we realised the profile format we had would not do the job.

So, in this sprint I’ve worked on re-designing the character profiles to use a tag-based system that allows us, and the modders, to easily add pretty much any amount of background information about the characters, and tag that data in a way that lets us then attach those tags to different data points, files and whatever inside the game, and hook it into the AI’s behaviours easily.

(and same as with our mission progression system and many other things, the design goals and explanation how it works ended being much more complicated than the actual implementation, so no need to worry, this is really simple system for modders to use and should be very extensible and flexible for all the crazy weird hacking stories and tools modders might come up with which we never even thought about…)

While doing the required changes for this, I also added few quality-of-life improvements, so the levels can now automatically load character profile files, and the image files used for character colour customization, both from the level’s own folders and from the Common folder used for sharing things that might be used in multiple levels. This means that we don’t need to duplicate character files to each separate level where the same character might appear, and also modders will have easy access to some pre-made characters they can use in their own levels without having to even bother with the actual character profile files until they want to create some new characters of their own.

Sending SMS, with Lua

We are then using those character profiles to generate text messages (and eventually e-mails, and other files as well) that get sent to all the characters, and that the player than intercept, read though, and use to learn about the characters (maybe to figure out how to distract a specific guard, or to help guessing someone’s password, and so on).

This is nothing new, the SMS system has been in place for long time already. But the source file we used for the SMS templates was the last remaining XML file in the game, so of course that had to be converted to Lua as well… If nothing else, it’s more consistent and easier for everyone to deal with the same language throughout the project, but it’s much more human-readable syntax as well.

To take things a bit further than that, we thought that maybe the actual code used to generate the messages could also be moved into Lua. This certainly isn’t something you’d want to mess around for every mod you make, as it’s a bit more complicated than the rest of our mission and character files, and the actual content you see in-game can be changed easily by just creating different character profiles anyway. But exposing that code to the modders might open some interesting opportunities, maybe for localizing the message generation to some language with different grammar than what English has, or to build something more complicated than what the base game needs to go with some awesome mod you are making. We’ll see what happens!

Oh, and of course I made sure both the template file and the actual message generator code can be loaded from both the Common folders as well as from the level-specific folders, just like with the character profiles.

Outro

That’s everything for now! We’re not quite sure yet if we’ll have a short sprint (and one more blog post this year) or if we should just make it a long one and return back to you in 2018! Either way, we’ll make sure to let you now when the next blog post is out!

Friday, 20 October 2017

What do you call one of the top ten best games at EGX?! OFF GRID!

Yes, you read that right!  Off Grid snagged a pretty sweet accolade over the four days at EGX:  Eurogamer staff rated Off Grid as one of the top ten games on the show floor.  Read the article in full here.

Here’s the write up on Off Grid (complete with a pretty accurate description of Rich and his conversational skills!):


While that accolade was certainly the highlight of our EGX experience this year - plenty of other great things happened over the four days:

Off Grid’s Twitch Debut



Thursday kicked off with an interview and live play through of Off Grid on the Twitch Stage.  Rich talked to CaffCast and Spamfish in a livestream to over 2000 viewers - a first for both Rich and the game!  Watch it here.

We now have our own twitch channel - be sure to subscribe!  Rich took the opportunity to do some behind the scenes streaming while at EGX, so go have a gander at those if you’re interested.  In the future, we hope to use it to do playthroughs of Off Grid, talk in more depth about our development process, and perhaps about some of the inspiration and influences behind the the game itself.

The Geek Show

Pontus (not often seen on camera!) was interviewed by The Geek Show for their podcast and YouTube channel.  Get your glimpse of one of the powerhouses behind Off Grid here:



Friendly banter with the NCA

The National Crime Agency (NCA) had a stand at EGX and were handing out helpful information to all inquisitive passersby - including literature on the Computer Misuse Act and an NCA challenge.


Here’s a little closeup of their handout:


Big Red Barrel Duet with Yucatan Game

Fellow indie dev and Leftfield Collection exhibitor, Joe Bain, and Rich Metson were interviewed by the kind folks at Big Red Barrel.

They’ve put together a special EGX podcast, jam packed with all their favorite games.  Listen in at about 56 minutes for the very best bits! ;)

What else did we love about EGX?

You’re right, we already said the highlight was being picked as ONE OF THE TOP TEN GAMES OF THE SHOW!  :D  That’s totally true - it is awesome.

Off Grid was also highlighted in OuttaSite’s indie picks at EGX, and the VGChartz write up, Games to Watch Out for from EGX.

But what else did we love about EGX and our participation in Leftfield Collection?  Watching YOU play the game!


It’s always a treat to see how players make their way through the latest build - taking note what they find interesting and engaging, and what might be quickly passed over.

This year marked ten years of Leftfield at EGX - that’s ten years of showcasing great indie games alongside all the big hitters - thanks to David Hayward for all the effort supporting indie developers!