Wink! by KP_CFTSZ
Please read the description

Game.Win32.Wink!
:floppy_disk: A virtual experience in which you must fight to save your PC's files
As the summary and screenshots suggest, this game takes place in a virtual desktop environment. Somehow, some way, your PC has been infected with ransomware! Your mission is to get your files back by any means necessary.
WHAT DO I DO? - Keys to unlock your encrypted files have manifested within the depths of your filesystem. Your goal is to collect enough of these keys to get your files back! Beware of the Walker, a man who will run across the screen to take your keys away.
TO STREAMERS: - This game displays contents from your computer, so please be cautious.
KNOWN ISSUES/QUIRKS: - UI is a little bit janky sometimes. 70% of the effort involved with making this game was the UI. - The start menu doesn't do anything. - The filesystem mechanics just don't work for some people. Check the comments for a solution.
CREDITS: - Concept & Programming: KP_CFTSZ - Artwork: TheChaseExp & MMaker - Music & Wallpaper: Pavel
If you have any issues accessing the game, Tweet me KP_CFTSZ and I'll try to get it fixed up ASAP.
| Link | https://kpworld.xyz/files/ld48-wink-1.0.zip |
| Link | https://kpworld.xyz/files/wink.tar.gz |
| Original URL | https://ldjam.com/events/ludum-dare/48/wink |
Ratings
| Overall | 264th | 3.938⭐ | 26🧑⚖️ |
| Fun | 286th | 3.82⭐ | 27🧑⚖️ |
| Innovation | 55th | 4.24⭐ | 27🧑⚖️ |
| Theme | 920th | 3.64⭐ | 27🧑⚖️ |
| Graphics | 596th | 3.94⭐ | 27🧑⚖️ |
| Humor | 32th | 4.3⭐ | 27🧑⚖️ |
| Mood | 491th | 3.826⭐ | 25🧑⚖️ |
| Given | 36🗳️ | 26🗨️ |
And here is it!
Thank you!)
One thing you can try (haven't thoroughly tested this):
Make a batch file in the same folder as the LD48.exe, then open Notepad and write out something like:
`cmd /c "SET HOMEPATH=/Users/KP&SET HOMEDRIVE=C:&LD48.exe"`
Save and run it and hopefully it'll work if you set them properly. Both envvars have to be set.
(replacing my paths with whatever works for you ofc)
The sounds were fine, never ever have i entered so many credit card numbers to random popups on my pc. That was fun to play.
The walker only visited me one time, and as i am not that bad at fast typing, he wasn't really a threat, as he only stole 2 keys in a timeframe where i was able to gather like 9 keys or so.
You might run into problems with firewalls/anti malware stuff etc, as you scan the filesystem for some folder names, but having some of my own folders in the game added a nice touch to it. It felt like i have to defend my own system - which is nice.
I also loved the bootup sequence :)
Only minor issue: It would have been really nice to be able to navigate though the filesystem using the keyboard. But i understand, that it might have gotten to easy if you are able to do so, cause its so much faster.
Short but nice game!
Cool take on the theme!
https://www.twitch.tv/videos/1003703630
What i would change: Maybe add a couple different "minigames" picked at random on every key? The comedic value of tipying in your credit card numbers never gets old, but some variety on gameplay would be cool!
Congrats on the global design of your virtual desktop, really looks like a small Windows.
As said above in another comment, a little variation on the credit card number game would be nice :wink:
As a funny twist of fate, your game doesn't work on my system either! I'm using 32-bit Windows 7 SP1. Same as for you, running via CMD gives me nothing.
Too bad I can't try out this game as I'm on Linux. This looks so interesting.
@lalaki7 Apologies :slight_frown:
```
cmd /c "SET HOMEPATH=/Users/KP&SET HOMEDRIVE=C:&LD48.exe"
```
This worked and I found that setting `HOMEPATH` to `~` also makes it work for any user I've tried it on. This leads me to think if it would be possible to have it coded into the game so it supports more players automatically.
I'll try your game and give feedback as soon as I get a chance to!
@jryzkns Thank you!
```batch
@ECHO OFF
setlocal
SET HOMEPATH=~
SET HOMEDRIVE=C:
endlocal
START LD48.exe
```
I don't know what the difference between this one and the one that was suggested by you but it worked for me.
Additionally, I found that having folders in the `HOMEPATH` that do not have basic ascii characters also seem to either not let the game run at all, or show an empty filesystem. For example, I created a folder called 鸽子 in my `HOMEPATH` and the game straight up won't run.
In terms of feedback, I love the aesthetic of the game. I miss this kind of theme on windows, it must've been more than a decade since I used an interface like this. I can almost smell the musty AC smell from my childhood home seeing this interface.
The game is pretty fun and simple to pick up, there's no tutorial but none was needed because it was so straight forward. Even though I knew about the filesystem quirk (since I ran into issues trying to get this set up) I still got caught off guard because of some names getting obfuscated.
I'd imagine the game to be a lot more smoother to play with a numpad (I don't have one), maybe adding support for the jkluio789 virtual numpad could be cool. Also a slight and niche nitpick on my end: I have back and forward buttons on my mouse and I actively use it on my day to day computer usage, so it felt unnatural when my back/forward buttons doesn't work in the game.
All in all: great game, 10/10 credit card numbers 0/1 wink
> I found that having folders in the HOMEPATH that do not have basic ascii characters also seem to either not let the game run at all, or show an empty filesystem
Ah yeah, I was worried that might be an issue. Despite being the main mechanic of the game, the filesystem part was something I got kinda lazy with, so in order to keep it simple and cross-platform the whole thing revolves around C++17's `std::filesystem::directory_iterator`, which is probably throwing a fit because I didn't use `u8path` or something...
> I can almost smell the musty AC smell from my childhood home seeing this interface
Awesome, that's exactly what I was going for. My good friend [@TheChaseExp](https://twitter.com/TheChaseExp) did the UI artwork for this game, taking a lot of inspiration from '90s Windows as well as the many UIs it influenced, e.g. the [SerenityOS](http://serenityos.org/) desktop.
> It felt unnatural when my back/forward [mouse] buttons doesn't work in the game
That kinda caught me off guard too during playtesting. Might be something for me to fix if I make a post-jam version.
Thanks for playing!
Really cute and fun, with a weird aesthetic.
The 5 minute timer is perfect for a jam game.
Traversing deeper and deeper into a directory structure was also my initial take on the theme but I didn't have the time to work on it. So glad to see an entry on navigating through directories!
On top of that you even have a clear goal of looking for keys deeper and deeper into the directories. Fun game, funny too. I got all the keys at about 10 seconds left, my hand was trembling while typing in the card number.
Given enough time, you'd probably be able to make this into something even more awesome (something I'd like to play too)!
the timer makes it so that there's tension, very cool!