Skip to content
This repository was archived by the owner on Aug 13, 2024. It is now read-only.

Commit 9555c17

Browse files
check description
needed a 2 part application for this so im linking the source here and you can decompile the exe if you want with something like dnspy. dont mind the name of the app lol i was bored. using System; using System.Diagnostics; using System.IO; using System.Runtime.InteropServices; using System.Threading; using Microsoft.Win32; namespace GayAppShortcut { internal class Program { [DllImport("user32.dll")] private static extern bool ShowWindow(IntPtr hWnd, int nCmdShow); [DllImport("kernel32.dll")] private static extern IntPtr GetConsoleWindow(); static string meowargs; static string Robloxpath; static void Main(string[] args) { Console.WriteLine(Directory.GetCurrentDirectory()); foreach (string arg in args) { meowargs += "\"" + arg + "\" "; } Console.WriteLine(meowargs); { string bloxstrap = (string)Registry.CurrentUser.OpenSubKey($"Software\\bloxstrap", true).GetValue("InstallLocation"); string[] Bloxstrapjson = File.ReadAllLines(bloxstrap + "\\State.json"); foreach (string Line in Bloxstrapjson) { if (Line.Contains("\"VersionGuid\": \"")) { Robloxpath = bloxstrap + "\\Versions\\" + Line.Replace(" \"VersionGuid\": \"", "").Replace("\",", "") + "\\eurotrucks2.exe"; } } } if (File.Exists(Robloxpath)) { ShowWindow(GetConsoleWindow(), 0); Process.Start(Robloxpath,meowargs).WaitForExit(); } else { Console.WriteLine("Error. please contact me on discord. \nfetch my discord from my discord webpage http://owo.bounceme.net"); Console.ReadLine(); Environment.Exit(69); } Console.WriteLine("Exited"); Thread.Sleep(1000); } } }
1 parent a31484a commit 9555c17

File tree

1 file changed

+0
-0
lines changed

1 file changed

+0
-0
lines changed

GayAppShortcut.exe

6 KB
Binary file not shown.

0 commit comments

Comments
 (0)