Log In  
Page:
1
2

Cart #sneakystealy-4 | 2021-05-06 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
124

You and your best friend are burglars. You break in to places and steal stuff.

Hack computers!
Crack the safe!
Control the CCTV!
Watch out for the guards!
Should we sneak past the security, or do we do a hit and run?

Keys:
PL1 - Arrows + X to Unescape
PL2 - ESDF + Q to Unescape

If playing solo, use O/Z to switch characters.

Features:

  • Procedurally generated levels, break in to a new place every time!
  • Continual save
  • Highscore

Gotchas:

  • Sound is needed to open safes...
  • Don't press Z unless you're playing solo

(If you find any bugs I'd be very happy if you'd post them in a comment below. Enjoy!)

Changelog


v1.4

  • Add penalty if seen
  • Token hunt with 0.2.2c features
  • Minor sound fixes

v1.3

  • Add possibility to disable single cameras

v1.2

  • Fix bug, unescaping with the wrong burglar selected no longer results in moving both burglars at the same time

v1.1

  • Remove Wantedness system
  • Change menu buttons so it's harder to accidentally skip status screen
  • Add "Unescape" option, if you accidentally escape with one of your burglars
  • Add so fog is never shown in rooms with cameras when controlling CCTV
  • Fix bug, exiting CCTV control while the power is off no longer turns cameras on, thank you @McDoom for reporting!
P#86488 2021-01-15 15:35 ( Edited 2021-05-06 20:27)

2

Nice starting point (line of sight, graphics...) but not sure to understand how to really play the game:

  • how can I evade guards?
  • how much time is left with screen goes blue/red?
  • how can I know camera positions & line of sight?
  • don't understand how safe can be cracked (don't get relation between sound and red light)

note: it's too easy to loose a burglar when close to the border of the screen ("escape")

P#86491 2021-01-15 19:03
1

thanks @freds72 for trying it out!

  • standing in the shadows is the best way to not be seen
  • when the police siren comes on they'll arrive pretty soon, would you like a timer or do you have some other suggestion?
  • when you peek either through window or through door, you'll see the color of the floor. It'll be either lighted or not- don't go in when it's lighted.
  • The safe is a small mini-puzzle, just like hacking the computers. (Simulating a rotating knob with numbers, first one way left/right then the other right/left, a specific number of steps.)

About the early escape problem, do you find it hard to see the burglars when you start the level?

P#86493 2021-01-15 19:25
2

About the early escape problem, do you find it hard to see the burglars when you start the level?
no but it's very easy to misclick!

Surveillance camera control - neat! but guard is in room...

Sorry for being thick - but how am I supposed to sneak past a guard in plain light when the safe is in the very same room?

P#86494 2021-01-15 19:54 ( Edited 2021-01-15 20:01)
3

@freds72 ah, now I see what you mean!

I think this is a communications problem from my side, because it is not really a solvable puzzle each time. Sometimes you'd have to just bail, but maybe you'll get something small to keep you afloat for just that day, maybe a wallet was hidden in that locker in the top right?

Also, now that I think of it, the guards will also guard a broken window if they come close enough to it. So in this case, you could break the window in the lower right from the outside, hope the guard stops by it, and if you're fast enough - crack the safe and escape before the police arrives. I know the game doesn't tell you that, and that's a part of the communications problem as well I guess '^^

Thanks for the screenshot, and for taking the time to play and comment! It's very helpful! I get some ideas to try out to make it clearer.

P#86495 2021-01-15 21:04

Tried some more and yeah, there is way too many unsolvable situations. May reflects real burglar life but for a game, that's a bit frustrating.

P#86536 2021-01-17 16:46
1

@freds72 I really appreciate you coming back and playing some more even though you might've known this might not be your cup of tea, big thanks! I probably won't change the game too much, but I'll think of something to manage player expectations. So thanks again!

P#86554 2021-01-18 12:39
1

I love this game! I agree that seeing the burglars at the beginning is a bit hard and sometimes one of my burglars escaped when I didn't mean to. With the procedurally generated levels it never gets boring, but some levels are definitely impossible.

Also, if you could make it that the trees are not spawned right in front of doors, windows, etc. that would be great!

P#86558 2021-01-18 16:29 ( Edited 2021-01-18 17:09)
1

@ChakAttack Thanks!!
Here's a fun tidbit: The trees are added as an optimisation because otherwise the fog algorithm gets too cpu-intense when on the outside of the building (this is only noticable on my raspberry pi though. :)
I'm currently at exactly 8192 tokens, if I can manage a token hunt to get maybe 10-15 tokens I could make the trees not appear in front of doors at least.

Thanks again for playing and commenting!

P#86566 2021-01-18 19:25

one obvious token saving would be to replace all:

...
floor[y*32+y]
...

by

function floorget(x,y)
 return floor[x|y<<5]
end
function floorset(x,y,v)
 floor[x|y<<5]=v
end

The performance impact should be partially recovered using bit shift operator.

P#86567 2021-01-18 19:45

@freds72 thanks for the suggestion! I did something similar earlier in development but it took too many cycles to run smoothly on my raspberry pi, but I should give this a go now that I have the trees!

P#86586 2021-01-19 16:13
1

I actually love this game - the entire concept is great.

I noticed one small bug - If one partner disables a camera from the CCTV panel and the other then cuts the power, the camera will still come back on when partner a leaves the terminal even though the power's down.

Thanks for making this!

P#88994 2021-03-15 09:28

@McDoom thanks for trying it out, and reporting the bug!

P#88995 2021-03-15 10:22

Glad to have been of service!

I'm curious why the wantedness system has been disabled in this release? I kind of liked it. It didn't come into play that often but I played enough that I did get "we've seen your face!" and wanted game over once. I like an extra incentive to be, well, sneaky, and I kind of liked that it's not obvious exactly what would raise or lower the heat on you (I assume things like being seen directly by guards or cameras, vs making a hit without sounding the alarm at all).

It might work better if "wanted" wasn't an automatic game over (I assume it was automatic... I lost on my very next job). Perhaps as an alternative, once you hit a certain threshold, "dare to scout a new job" appears and each scout has a percentage chance to result in a sting op game over - but you also have a "retire" option with an alternate "good" game over? Do you keep pushing to raise your high score or cash in your chips?

Just some thoughts - I have no idea how much of this is practical. Anyway thanks for all your work!

P#89885 2021-04-02 23:34

@McDoom I removed wantedness because it was confusing to about 50% of players, and I needed tokens to add Unescaping (which was the most requested feature.)

I do enjoy and appreciate your suggestions! I'm out of tokens once again lol, but I might find the time to slim it down with some of the features from the latest pico version.

I was thinking of adding a minus row to the daily balance if the alarm goes off. I can't come up with something fun and clear to call it though, "new burner phone -50$" or "guard bribe -100$" "face surgery -150$" or something, wdyt?

P#91078 2021-04-25 21:11

I think it's a fun idea. Certainly incentivises sneakiness, at the expense of making smash-and-grab tactics riskier (but not that much riskier if the amounts are lowball like that). I don't know exactly what triggered wantedness before but I'm assuming things like being seen by a guard/camera rather than things like open safe/broken window/missing art, and this could trigger off the same stuff.

Sounds like you did come up with something for names! Other ideas: "Moving hideout", "new getaway car", "laying low -[current daily expenses$]"...

P#91254 2021-04-28 15:41

@McDoom oh! Those are some very good examples! "laying low" is exactly right I think! Thanks!

P#91256 2021-04-28 16:32

@McDoom I added a penalty for being seen in v1.4, it's your idea with Laying Low which fits perfectly! (and doable within token limit!) super thanks!

P#91600 2021-05-06 20:28

I loved the updates (even though I liked the wantedness). I found a little bug(?) though: after my burglars were both caught I restarted my "career" and the first day I already had to lay low for a day.

I still dislike the fact that sometimes trees spawn in front of doors or windows or block the way, but it is a minor issue really. A very enjoyable game overall!

P#93914 2021-06-23 20:58 ( Edited 2021-06-23 20:59)

I love this so far but I have yet to figure out how to disable cameras BEFORE they see me?

edit

I figured it out!

I love this game <3

P#93918 2021-06-23 22:08 ( Edited 2021-06-23 22:29)

@ChakAttack thanks for the bugreport and the kind words!

@RecklessDreamer ;) thanks!

P#93946 2021-06-24 09:16

It took a while to figure out what to do but I've got it now mostly. Fun game! Not many places will be viable but it's fun figuring out strategies and assessing the situation. I still can't figure out the safe minigame though. I've got the computer hacking down, but not the safe.

I'm trying going in one direction till I hear a noise and then switching but that doesn't seem to be working.

P#93948 2021-06-24 10:47 ( Edited 2021-06-24 10:49)

@tinysorcerer thanks for playing! the safe always makes a small beep but it'll be a bit louder beep when it's time to switch direction. Also, if the light goes red you have to start over.

P#93949 2021-06-24 11:03

@ironchestgames Thanks! I think the small beep wasn't working sometimes but that's cause I'm playing on mobile and the sound usually messes up on mobile. I'll give it another go on my desktop. Still really enjoying it regardless, it's a great game :)

Edit: I figured out how to do the safe without sound by just paying attention to the red light and remembering the pattern. Thanks! :)

P#93957 2021-06-24 12:49 ( Edited 2021-06-24 12:59)
1

@tinysorcerer safe crackin' without sound?!? that's some top level burglerin'!! :D

P#93961 2021-06-24 13:30

I found myself in this predicament: my top burglar cannot move (whenever he tries, the guard yells "Hands Up!") but the police is not coming. The bottom burglar can move freely (I haven't tried to enter a lit area). If the bottom burglar escapes, nothing happens.

P#94267 2021-06-30 21:29

@ChakAttack that's a bug, nice catch! ofc the guard shouldn't see you behind the safe (but the hands up code doesn't respect the shadows, which it should.)

P#94287 2021-07-01 05:33
2

I'm afraid that I reached the point where I can't make any more money... :(

I guess it's time to rat on each other and start over :)

I truly love this game, with the procedurally generated levels it is never boring.

P#94927 2021-07-15 21:38

@ChakAttack Oh wow! cooOOL! <3<3<3

(technically what happens is I just use Pico 8's number type for money so it's restricted to go above that specific value.)

Never thought that would actually happen, my idea was that daily cost would get too high and increase risk taking so to get caught. Guess I committed the first sin of gamedev, "never underestimate players" lol.

Superthanks for playing and for taking the time to comment, this made my day!

I know you've already given both suggestions and bugreports above, but if you have more suggestions now that you Won the game I'm more than happy to hear them.

P#94941 2021-07-16 07:43
1

@ironchestgames The game is very enjoyable the way it is, but here are some suggestions:

  • Make sure trees don't spawn in front of doors or windows.
  • Make stealth more rewarding (for example, if you raise an alarm, your stolen goods are worth 20% less and if you are seen, 40% less)
  • Related to the previous point, adding the possibility of closing the safe after stealing its content (maybe requiring to input the code again)

Thanks again for such a wonderful game.

P#95078 2021-07-19 18:28

@ChakAttack making goods worth less is a BRILLIANT idea! Gonna see if I can get loose some code tokens and implement. Thaanks~

P#95100 2021-07-20 19:05
1

@ironchestgames Thanks to you for SO MANY HOURS of entertainment :)

P#95123 2021-07-21 08:39 ( Edited 2021-07-21 08:39)
1

Quite a fun game once you learn all the mechanics! I'm glad I didn't read through the comments here first, it was fun to discover how everything worked on my own, even though there was some trial and error early on. Also like how you can start with stealth, but if you get caught then you might as well grab everything on the way out. The sirens blaring outside while I managed to finish off a safe was particularly tense and exciting.

I didn't max out my score, but happy with how far I got in about an hour. The jokes like $1 cute cat pictures were pretty funny too. Great game!

Also FYI, to save tokens in the future, you might want to look into the split() function, rather than your manual s2t function. Also maybe a split*2 function, that splits each entry in the resulting table again, since you have a lot of s2t lines right next to each other that could be a single s2s2t".x;1;.y;0;.dx;1;.dy;1;|.x;1;.y;0;.dx;1;.dy;-1;|...". I didn't see much else for quick token reduction going through the code though.

P#95177 2021-07-22 06:26 ( Edited 2021-07-22 06:43)

@shy Thanks a lot for the kind words! And day 33 is pretty far still I would say!

Thanks for looking at the code too, that's awesome! Some parts of the code is a bit of a drag and a mess, I confess. I know about the split function though, but it's a bit too rudimentary for this case, as there's just too much in the engine that depends on stuff like table indices starting from 0 as well as named properties (like player.x e.g.), so it would mean a full overhaul which seems too much at this point I think. Superthanks for looking into it though, always great with just another pair of eyes! and if you come up with anything else please pop in!

P#95189 2021-07-22 19:33

This game is great! i really love the stealth idea mixed with the simplicity, but i have one question. even with volume on, i cant work out how to open safes. help!

P#105179 2022-01-16 16:19

I really wanted to like this game, but the initial learning curve is way, way too steep. Even after I thought I knew how to crack safes, I couldn't do it. I get the first green light, then can't work out how to proceed from there.

What is happening when one of your characters crouches in front of something with a flashing dot? So many more questions.

There's definitely a good game hidden somewhere here but there are way too many UX issues getting in the way right now. It needs a tutorial level or a manual to make it more user-friendly.

P#108956 2022-03-21 03:22

@biovoid:
"Even after I thought I knew how to crack safes, I couldn't do it. I get the first green light, then can't work out how to proceed from there."

When you get the green light, you've unlocked the safe! Press UP to loot it.

"What is happening when one of your characters crouches in front of something with a flashing dot?"

I think this means they've cut off all power for as long as they're at the box. Powered items I'm aware of are:

  • Surveillance cameras
  • Camera consoles
  • Locked doors
  • Computers.

Here is power on: the camera can see everywhere in the room but the console I'm hiding behind.

Here is power off: I can now walk up to the camera and disable it so my accomplice can step away from the master switch.

I've had some fun here, but I agree that it can be confusing working out how things work. My own best haul was about $5,000, and then the two of us started losing more money on our lifestyle of dissolute excess than we gained on each job. I think some of the best parts are getting halfway through opening a space and then a guard spots me and I try to finish the job and loot it before being caught, so I'm not sure if that should be penalised. If I "ghost" through a building without being spotted at all, it's usually because the RNG created a building that made it possible, not because of skill on my part. And other times, the RNG creates a building with no usable entrances...

P#109041 2022-03-23 11:13

lol I found a see through wall bug.

P#109213 2022-03-26 19:43

@BlazerDog I believe in you, you can do it!

@GavGav thanks for playing and for the kind words!

@biovoid thanks for playing and commenting! Cowirrie explained very well how to do the things. As for a tutorial, I'm already maxing out the pico-8 tokens, and I've also done all token optimisations I can think of, so it's sadly not gonna happen as things are looking right now. If you can think of things to change or remove, instead of adding I'm all ears.

@Cowirrie thanks for taking the time to explain! highly appreciated!

@Dvan that's a new one... Thanks for reporting!

P#109215 2022-03-26 21:16

Got a pretty good high score before I was too slow getting out.

P#109293 2022-03-28 02:30

@Dvan nice score! and nice highscore! wow!

@Cowirrie I knew that the procgen could do a house without a way to break in, although I never seen it myself during my fairly extensive manual testing. Thanks for sharing your thoughts.

P#109300 2022-03-28 05:33
1

@ironchestgames : Other times, the procedural generation really delivers, like this one. I could hide next to the computers and safe, but had to keep flipping from side to side as the armed guard walked back and forth. Fantastic little detail that the sprites lean up against cover when next to it, too.

I got the computers while the guard's back was turned, but the safe was a problem. I practiced its first 3 rotations several times, then gave up, and accepted that I'd get spotted. So I opened it and smashed through the window just ahead of him.

You can see the top of a statuette just below and to the left of a second thief. I hadn't looted this because there was a regular guard patrolling that room. But, after the first thief escaped with the contents of the safe, I also took the statuette and broke through a second window a few steps ahead of the second guard. Here's the haul, a cool $1,600.

What is the effect of armed guards? Can they apprehend you at a greater distance? If you have other ideas and need some tokens, I think the regular guards are enough threat that I'm not sure the game needs a harder type of guard.

P#109301 2022-03-28 05:56

@Cowirrie nYCE! congrats on the highscore!

the armed guards arrests you at a distance (only on the same horizontal line), and they can add extra conundrums. But maybe not enough to warrant their tokens, good point!

P#109302 2022-03-28 06:11
1

being a thief has never been more fun. also it would be kinda cool if you could like take out the guards or something

P#109378 2022-03-29 23:17

@yoghurt_man only sneaky stealy, no sneaky attacky

P#109397 2022-03-30 06:05 ( Edited 2022-03-30 06:05)
1

game very cool played it for hours but I have a game idea/feature you should add (multiple floors/basement) art/pictures that you can steal (like the mona lisa)
new stealable item phone or guards/ homeowners that sleep cause some of these place are houses right? they should have sometimes a bedroom where there sleeping and you have to be stealthy and if you make too much noise they would wake up and find out what the noise was. anyways that pretty much it i love your game and play it with a friend all the time :D

P#109465 2022-03-31 13:27

@Gucci-Chicken thanks for the suggestions and for the kind words! It is so fun to hear you play this 2p! happy heisting!

P#109467 2022-03-31 14:26

@ironchestgames will you continue to update the game? or go onto your next project if so good luck i will most definitely play it when you release it IGN 10/10

P#109469 2022-03-31 15:15

@Gucci-Chicken I'm pretty happy with the state of sneaky stealy as it is now, so I don't think any big update will happen anytime soon. (I'm also out of space on the cartridge so I can't really add stuff.) But without suggestions such as yours it wouldn't have gotten as far as it has, so I'm always happy with people commenting. Even if I don't use it for this game, I have better ideas making the next! Thanks again!

P#109475 2022-03-31 16:46

the safes are very annoying to crack, is there a way you can make some sort of password or pass key somewhere hidden around the house?

P#109753 2022-04-05 18:11
Page:

[Please log in to post a comment]

Follow Lexaloffle:          
Generated 2024-03-28 13:45:24 | 0.338s | Q:93