☆Be Mike for a day in this wacky Deltarune fangame!☆
You're a fun-loving Pippins in TV World. Thanks to an unlucky encounter, you have to pretend to be Tenna's favorite right-hand man... Mike!
Will you protect TV World’s right to gamble by serving Tenna on hand and foot? Or will you make his life hell for ruining your friends' fun?
It's all up to you! Just... try not to get fired?
☆Specil Feachers☆
Five endings!
Three heart-pounding minigames!
Animated cutscenes!
An 100% original soundtrack!
A new story with familiar faces!
Extra goodies!
☆☆☆Play The Game On Itch.io!☆☆☆
(Sponser's Note: This game was made in collaboration with TV Time: A Tenna Zine)
It should squash the rest of the bugs in Mike-a-Like. More importantly, I released the soundtrack on YouTube! (Please show the composers your support in the comments.)
With that, I think the one last thing I could do for Mike-a-Like is test a web build. We'll see how it goes, but if it works, I'll let everyone know!
Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
✓ Live Streaming✓ Interactive Chat✓ Private Shows✓ HD Quality
Anya is LIVE right now
FREE
Free to watch • No registration required • HD streaming
watched three girls who reblogged its new blog mutual aidpost (made literally 15 minutes ago) already disappear from its notifs. transfems are not included in their pride :/
Art involving Battat with a cleaved Tenna goes hard but I can't lie, any depiction of a dying Tenna getting found and repaired that doesn't involve Susie is so uninteresting to me. Susie is fundamental to Tenna's survival, and ignoring that for shipping denies a pivotal moment of character growth. For both of them
Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
✓ Live Streaming✓ Interactive Chat✓ Private Shows✓ HD Quality
Anya is LIVE right now
FREE
Free to watch • No registration required • HD streaming
So as it turns out your sense of self doesnt exist in a vacuum. You gotta actually use it and bounce it off of other people like echolocation to see where you are as a person and shit. So if you dont regularly interact with other people the echoes just get weaker and weaker and before you know it your personality is a blurry fucked up fog clone of its former self. which it sucks because this makes it really hard to interact with people again but yknow
i will preface this by saying that im not an it guy, i dont code or anything but i do love linux. after i found a distribution that i liked i found that finding open source alternatives and trouble shooting stuff etc became pretty satisfying. linux is like a puzzle that you can make into whatever you want if you have the right pieces. but i will apologize in advance to it peeps if i dont use the right technical term for something.
to start off with some technical stuff you have the linux kernel, then you have all the distributions based on said kernel that are customized to suit different needs.
"A kernel is a computer program at the core of a computer's operating system that always has complete control over everything in the system. The kernel is also responsible for preventing and mitigating conflicts between different processes. It is the portion of the operating system code that is always resident in memory and facilitates interactions between hardware and software components."
tbh i think of it like ice cream flavors. each distro is a different flavor but theyre all ice cream. so while anything that i say here is geared towards my distro of choice, cachyos, it would work on other distros, you would just want to find a tutorial to see the differences.
i have tried other linux distros, but cachy has blown me away by how well and fast everything works. i honestly think that if youre gaming or doing any kind of content creation its the way to go. for the sake of this post not getting stupid long im going to assume you have linux installed. if not here is a tutorial: "How to Install Linux."
starting out
thinking of content creators you would usually go to streamers, digital artists, photographers, gamers etc. so thats what this post (kind of guide?) is geared towards. so. if youre on your fresh cachyos install you can navigate to cachyos hello.
i have cachyos hello launch at start as its an easy way to update your computer.
go to apps/tweaks and click install gaming packages. thatll prompt it to download stuff that makes gaming easier on linux. also in cachyos hello go to install apps, which will open the gui (graphical user interface) of the package manager and you can install the heavy hitters, discord, obs and steam, pretty close to how you would on windows by clicking through the prompts. i also downloaded krita, libreoffice (awesome microsoft office alternative), and vlc (my preferred media player). theres also some cool stuff like opentoonz (2d animation), blender and darktable (RAW photo editing) in there.
when you download programs from your package manager (through the terminal or with the gui), youre installing them natively. there is something called a flatpak, which runs a sandboxed version of the program. its in the name of security so its sectioned off from the other stuff on your computer and so that a company can make one version, the flatpak, and it should work on all linux distros without issue. well get more into flatpaks later.
discord: finding json files
once you have all of that installed these are some tweaks that i did. sometimes the cachyos update of discord is a little behind the official discord update (usually less than a day tbh but if youre planning to log into a call not being able to before a collab stream would be bad) so you can navigate to the json of discord (basically just the settings txt file) and turn off that discord checks for updates before launching.
you will want to go here: ~/.config/discord/settings.json
and add this line somewhere in the file: "SKIP_HOST_UPDATE": true
it should look something like this. you can still update whenever its rolled out but youll be able to use discord uninterrupted while youre waiting.
obs: git, the aur and yay
obs almost works the same as on windows. the plugin structure is a little different but its not too bad once you know what to look for. you have the easy ones like this closed captions plugin. where all you have to do is download the linux zip, extract it and put it in this folder in your file directory: ~/.config/obs-studio/plugins.
then there are the harder ones like the move plugin. where you have to clone and build the plugin yourself from github. or the aitum multistream plugin where cloning and building it myself resulted in a cmake error so the best bet is to navigate to the aur and download it that way.
which sounds like A LOT. so let me explain.
something that makes linux so cool is how easy it is to just grab cool shit from github. but to do that well need to start talking about the terminal which seems to scare people.
so background, cachyos is based on another flavor of linux, arch. its super lightweight and customizable! but when you dont know what youre doing it can be scary. since cachyos is based on arch it used the same package manager and the same commands to navigate through the terminal.
you can follow this tutorial here: "How to Install Git on Arch," and just follow to first steps to install and verify that you installed it. ill be honest i havent actually needed to configure it as it works just fine without doing so.
after youve done that you can install all the cool stuff youve seen on github. going back to the obs move plugin you would type the following in the terminal to clone (download all the necessary files from github): git clone <repository link>
which is https://github.com/exeldro/obs-move-transition
still in the terminal, you want to navigate to where it downloaded by typing: cd <folder name in file directory>
which is usually the name of the program obs-move-transition
most github pages have instructions on how to actually build the thing. for the move plugin you would type: cmake -S . -B build -DBUILD_OUT_OF_TREE=On && cmake --build build
(i realized that i already had cmake installed when i wrote this but if you dont youll want to before try to set up the move plugin. you can install it with the command “sudo pacman -S cmake” then check that it’s installed with “cmake —version”)
youll see a bunch of stuff pop up in the terminal and once its done, you should be able to see the folder for it in your file directory.
youll navigate to /home/*your username*/obs-move-transition/build/ and there should be the actual plugin move-transition.so. thats what youll put in your obs plugin folder from earlier. youll might have to make a few new folders but it should be nested like this: /home/*your username*/.config/obs-studio/plugins/move-transition/bin/64bit/
git is cool but theres another really cool thing that cachy has because of being based on arch. and thats the aur, the arch user repository. it hosts packages made by the community. in order to install these packages i personally use yay. and heres a tutorial for how to install it here, i followed option 1: "How to Install yay on Arch Linux."
but going back up to the obs plugin example, its similar to what we did earlier. first youd have to find the aur version of the aitum multistream plugin then you would type: git clone https://aur.archlinux.org/packages/obs-aitum-multistream-bin
then: cd obs-aitum-multistream-bin
the difference is that someone already built the plugin for us so you just have to type: makepkg -si
it should once again appear in your home directory and you can go digging for the .so. for me it was in /home/*your username*/obs-aitum-multistream-bin/pkg/obs-aitum-multistream-bin/usr/lib/obs-plugins/. and youll nest it the same way we did earlier with the move plugin.
since i linked what we needed for the multistream plugin we didnt need to use yay very much but the tutorial i linked earlier shows the other ways that you can use it!
once youre done collecting all the plugins you want you can start obs, connect your twitch/youtube account and start streaming the same way you would on windows.
steam: proton, wine and flatpaks
moving onto steam... honestly... a lot of steam games should just work. steam comes with proton, which is basically a compatibility layer that lets window games run on linux. its something that we actually downloaded earlier when we installed the gaming packages. if you want to check before hand what games work you can visit ProtonDB. what is pretty much a guarantee NOT to work are games that use kernel level anticheat, like apex legends, sorry. i dont play any games like that anyways because that seems like an invasion of privacy. but you do you.
if theres something that you want to play that isnt on steam you can use wine instead, or the wine manager bottles to do so. wine is another compatibility layer, its actually partially what proton is based off of. if you want to check and see if something specific runs through wine you can check WineHQ.
if you want to use bottles (which is my preference it keeps everything neat), well be rounding back to flatpaks! to get flatpaks set up youll need to install it by typing in the terminal: sudo pacman -S flatpak
sudo means your acting as the "superuser," itll prompt you to type in your password to verify that you actually want to do what youre doing and that your authorized to do it. you wont see your password as your typing. it looks blank for security purposes but if you type your password and hit enter it will work as long as it was typed correctly. pacman is the name of the package manager for arch. heres some more about the commands you can use in pacman: "pacman."
now with flatpak installed you can install anything from the flathub! but were specifically looking for bottles right now. if you go to the bottles page on flathub the install button will give you what to put into the terminal: "Flathub- Bottles"
getting started with veadotube
veadotube is a good place to start if you want to try out streaming. its an easy to learn program for pngtubers specifically. mini is available for free and once the full version is released i can only imagine that it would be installed the same way.
honestly this is the easiest thing to install out of everything weve talked about. all you need to do is go to the veadotube website and download the zip file for mini. you extract it and inside is an exe file like youd be familiar with if you use windows.
i moved the extracted veadotube mini folder to my home folder for easy access. i will admit im not sure if theres a better place but this works for me. once you launch it, veadotube should work pretty much the same as how it does on windows. i havent run into an issues yet but just in case ill leave the docs for veadotube here: LINK
closing thoughts and links
those are honestly the biggest things that i can think of right now. just walking through how to setup/tweak discord, obs, steam and bottles walks you through everything that ive needed to learn in order to get streaming working comparably to how i used to stream and game with windows. everything that i use can be installed with once you know how to use pacman, git or yay.
something that might be helpful is wget... but honestly i wouldnt worry about it unless its needed for something you want. theres no need to have it if you dont use it.
some other useful things:
a general how to doc for streaming on linux, with a bunch of programs i didnt mention: LINK
streamer.bot for managing streams: LINK
what i used to get csp working. my fiance noticed lag while drawing, but its worth a try if you dont want to use krita or other drawing programs with linux versions: LINK
or you can set csp up in a bottle: LINK
opendeck, to use the elgato streamdeck: LINK
this is a plugin for opendeck to use the fifine steam deck, which is what i have: LINK
slime2 is just a neat chatbox for obs, it doesnt say anything about linux but because of how its built it works: LINK
the obspluginbuilding page for if you want to look more into how plugins work: LINK
prism launcher, to play minecraft, i just used pacman but theres other ways to install it listed on the downloads page: LINK
cachyos wiki: LINK
arch linux wiki, if you run into problems that you cant find in the cachyos wiki the solution is probably somewhere in here: LINK
ill sign this off by saying linux, especially distributions like cachyos, are constantly improving. make sure you update often (the easiest way to do so is using cachyos hello) and keep your files clean so you know where everything is if you run into problems!
pre-linux i didnt have a super extravagant streaming set up so theres not too too much here but i hope it at least gets you started and gives you resources to figure out the rest!
Here’s the thing I feel like a lot of folks don’t get: I’m not trying to forget what you said. Honestly, I really tried not to. I can’t control what I do and don’t remember—forgetting things just happens. It’s annoying for you, I know, but for me it’s distressing as hell and when you make a big deal out of it rather than just reminding me you make me feel ashamed. I’ll remember that, at least.
It costs you nothing to be kind to people with memory problems. Please. It’s scary enough without people treating memory lapses as a personal failing.
btw i want to say that the entire tumblr community banding together is what got these changes reversed so i hope u all realise the power of a reblog and start reblogging posts instead of just liking them this is the reblog website so hit that button right now
Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
✓ Live Streaming✓ Interactive Chat✓ Private Shows✓ HD Quality
Anya is LIVE right now
FREE
Free to watch • No registration required • HD streaming
The Relationship between Susie and the Player... (Deltarune Analysis)
I had a sudden realisation when Susie talks about her experience with piano. This scene is an obvious nod to Susie's experience with learning healing, but... I think there's another, far deeper meaning to this scene.
What Susie experienced with the piano... is actually EXACTLY what happens in that earlier Piano scene when you attempt to solve the puzzle yourself.
If you were to ever to do ANY attempt on the song to unlock the door... Kris makes sure to mess up your notes before you even have a chance to finish. They forbid you from playing. The same exact way Susie was forbidden to play.
And so they had someone else play. Someone better. Kris.
Susie describes her past experience with piano as an attempt to further connect with Kris. But ironically, Kris was the one who was better. The one who basically took over the inexperienced one after they were told they weren't allowed to play.
Kris never let's us get near the piano, and makes sure to always fumble up the notes, "A Concert For You."
Susie's experience isn't a parallel to Kris at all. It's a parallel to the Player.
And we further connect this to the Healing arc with Ralsei. Where Ralsei teaches Susie to heal, but never actually let's her do healing when it's actually needed.
In Ch 4, Kris allows us to play piano, but further prevents us from trying when it's truly needed or when it's something complex.
But this also shows us that not all things are so simple. Kris is someone that truly loves piano, so it makes sense that they don't want someone else in their body to command them to play, for Kris, playing piano is their freedom, and its not something that they want someone else to take.
...Yet at the same time, there's nothing wrong with you wanting to play, even if it sucks. Because maybe, just maybe, it might become someone else's freedom too.
Neither are in the wrong in this matter. Between Susie and the better piano player that took her place, and between the Player and Kris... no one is necessarily wrong here. Things here are a lot more complicated than that.
This isn't the first time where Susie's character is aligning closer to the Player than Kris and Ralsei, with her becoming the one to speak for us for certain things when we're unable to, such as her vocalising the frustration of having people keep secrets not long after Ralsei and Kris kept hiding secrets from the Player.
Also the fact that the Ch 4 extended scene where you struggle against Kris in Dess' closet has Susie accept BOTH Kris and the Player equally rather than preferring one side over the other. She just doesn't realise it's two seperate ppl at once.
Not to mention how the Player and Susie are actively synergizing with each other in the best way possible.
Susie is the only one whose abilities you can directly enhance midbattle. Rude Buster's dmg gets raised by z spam (ch 1 + 2) or z timing (ch 3 + 4). And her healing gets enhanced the more you allow her to heal.
And it just so happens that Gerson' fight is also essentially TRAINING THE PLAYER to use these mechanics. It teaches you the z mechanic to parry. It forces you to let Susie heal to enhance it. It wasn't just training for Susie. It was also training for YOU to learn how to work with Susie as a duo.
Its really funny cause Susie's heal isn't a "Prayer" like other healing spells. And yet, Susie's heal requires a higher being's interference to raise its effectiveness.
If you think abt it, both the Player and Susie are similar in the sense that we're both outsiders to the grand scheme of the narrative, and are both trying to figure out what the heck is even going on in this town. You fought Kris in Ch 4 to help Susie while Kris is working with the Knight.
Even though everything abt Susie should make her clash with us (her ability to override choices, ignore our commands), she's the one who is the most aligned to us in terms of how we feel and experience the events of the story, and she is the one whose dynamic with the Player, has been nothing but purely beneficial to each other.
Not many people fully analyse the relationships between the Player and other characters outside of Kris (and sometimes Noelle for Weird), and I think Susie's dynamic with the Player is one that should really be looked into.
Weeee, I finally bought Scarlet Hollow! Finished the first chapter and I'm already hooked on👀👀 I like Tabitha's character a loooot, can't wait to learn more about her!
Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
✓ Live Streaming✓ Interactive Chat✓ Private Shows✓ HD Quality
Anya is LIVE right now
FREE
Free to watch • No registration required • HD streaming
Mike's First day ---
I've had this one in my drafts for a while now, and I finally managed to complete it, I feel like it's.... very fanon brained all things considered lol but I had fun!
This one is also running on the idea that Battat is Asriel's dice 😅he just got kinda "Jessied"(from Toy Story lol) under Asriel's bed though.
Also just wanted a bit of focus on Jongler too, I actually had bits of their interaction with Tenna :
the thing was that Toriel wasn't paying attention to Tenna, she was watching Tv but paying attention to her phone, which yeah Tenna was pretty sad about, Jongler tried comforting him by saying that maybe she wanted a bit of background noise, which made Tenna break in tears 😅
Originally I was going to have Jongler start crying there too, and then Tenna comforts them instead, sadly with the side effect that later Tenna would be way too anxious for making Mike upset and sad with his problems and he tries overcompensating by pampering Mike the next day 😅
but I guess I didn't want to overdo it with Tenna's sadge scenes on this one