11
Free Data / C# Console Colored Text Method
Last post by wad -
Method will make anything between "{" "}" a color.
Example colortext("Hello {World!} ",Console.Color.Green,true);
will print "Hello World!" with "World!" being a designated color
Example colortext("Hello {World!} ",Console.Color.Green,true);
will print "Hello World!" with "World!" being a designated color
Code: [Select]
public static void colortext(string txt, ConsoleColor color, bool newline)
{
int pFrom = txt.IndexOf("{") + "{".Length;
int pTo = txt.LastIndexOf("}");
String word = txt.Substring(pFrom, pTo - pFrom);
int pFrom1 = txt.IndexOf("") + "".Length;
int pTo1 = txt.LastIndexOf(word);
String firstH = txt.Substring(pFrom1, pTo1 - pFrom1);
int pFrom2 = txt.IndexOf(word) + word.Length;
int pTo2 = txt.LastIndexOf("");
String lastH = txt.Substring(pFrom2, pTo2 - pFrom2);
foreach (var c in firstH)
{
if (c.ToString() == "{" || c.ToString() == "}")
{ firstH = firstH.Replace(c.ToString(), ""); }
}
Console.Write(firstH);
Console.ForegroundColor = color;
Console.Write(word);
Console.ResetColor();
foreach (var c in lastH)
{
if (c.ToString() == "{" || c.ToString() == "}")
{ lastH = lastH.Replace(c.ToString(), ""); }
}
Console.Write(lastH);
if (newline)
{ Console.Write(Environment.NewLine); }
}
12
Software / AI Model Stock/Crypto Predictor
Last post by wad -
Updated version available at https://ai.royalsrealm.xyz/
DEPRACATED

Ai model to predict future prices of stock/crypto.

Alpha Updates
Spoiler (click to show/hide)
How To Use
Spoiler (click to show/hide)
How to Read
Spoiler (click to show/hide)
Currently in the Beta Programs section of forums
All Alpha and Beta versions are available on RoyalsRealmShop for lifetime access
You must purchase through RoyalsRealm Shop to receive access.
If you encounter any errors or program crashes please report to an Admin on this forum.
THIS PROGRAM CAN ONLY GET SOME SYMBOL PAIRS DATA AS FAR BACK AS 1/1/2022, THIS IS AN ISSUE WITH binance.us AND IS ACTIVLY BEING WORKED ON TO FIND A BETTER API.

DEPRACATED

Ai model to predict future prices of stock/crypto.
Use Ai Machine Learning algorithms to predict the future price of stock/crypto and step up your game. Unlike traditional algorithms like SSL on websites like tradingview.com.
This Predictor utilizes Microsoft's Machine Learning packages to extrapolate future prices. This program will predict close prices at any given time.
Comes currently with a LOW,MEDIUM,and HIGH volatility prediction lines to give you the most information possible.
This Predictor utilizes Microsoft's Machine Learning packages to extrapolate future prices. This program will predict close prices at any given time.
Comes currently with a LOW,MEDIUM,and HIGH volatility prediction lines to give you the most information possible.
Features
Sdca Algorithm, with more to come
Custom Time Intervals
Tune your model's parameters quickly and easily
In-Application Documentation for ease of use
Constant updates and upgrades for free
Customizable Model settings to tune perfectly for your needs
Sdca Algorithm, with more to come
Custom Time Intervals
Tune your model's parameters quickly and easily
In-Application Documentation for ease of use
Constant updates and upgrades for free
Customizable Model settings to tune perfectly for your needs

Alpha Updates
Spoiler (click to show/hide)
How To Use
Spoiler (click to show/hide)
How to Read
Spoiler (click to show/hide)
All Alpha and Beta versions are available on RoyalsRealmShop for lifetime access
You must purchase through RoyalsRealm Shop to receive access.
If you encounter any errors or program crashes please report to an Admin on this forum.
THIS PROGRAM CAN ONLY GET SOME SYMBOL PAIRS DATA AS FAR BACK AS 1/1/2022, THIS IS AN ISSUE WITH binance.us AND IS ACTIVLY BEING WORKED ON TO FIND A BETTER API.

RoyalsRealm Shop
DOWNLOAD
Promo Page
[/list]
13
Community / phone into webcam
Last post by markzucine -
run on iphone as camera.html
Code: [Select]
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="apple-mobile-web-app-title" content="Full Screen Cam" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>Full Screen Cam</title>
</head>
<body>
<button class="captureBack">Capture back</button>
<button class="captureFront">Capture front</button>
<button class="fullscreen">Full screen</button>
<video autoplay></video>
<script>
// VIDEO CAPTURE
const video = document.querySelector("video");
video.setAttribute("autoplay", "");
video.setAttribute("muted", "");
video.setAttribute("playsinline", "");
function handleSuccess(stream) {
video.srcObject = stream;
}
function handleError(error) {
console.error("Error: ", error);
}
function capture(elementSelector, facingMode) {
const element = document.querySelector(elementSelector);
const constraints = {
video: { facingMode: facingMode },
};
element.onclick = function () {
navigator.mediaDevices.getUserMedia(constraints).then(handleSuccess).catch(handleError);
};
}
capture(".captureFront", "user");
capture(".captureBack", "environment");
// FULLSCREEN HANDLING
const fullscreenButton = document.querySelector(".fullscreen");
fullscreenButton.onclick = function () {
if (video.webkitEnterFullScreen) {
video.webkitEnterFullScreen(); // Mobile Safari
} else if (video.requestFullscreen) {
video.requestFullscreen();
} else if (video.webkitRequestFullscreen) {
// Regular Safari
video.webkitRequestFullscreen();
} else if (video.msRequestFullscreen) {
// IE11
video.msRequestFullscreen();
}
};
</script>
</body>
</html>
14
Software / Folder Locker
Last post by wad -
Creates runtime rules to lock folders, tested on Win 10 64x only. FL creates a rule that the current user(s) cant access a file/folder.
NOT FOR LONG TERM USE

-contains readme.txt
-todo- create an override so that even admins cant change rule with FL. optimize UI.
~~~~~DOWNLOAD~~~~~
https://royalsrealm.xyz/passthrough_downloads/Folderlocker.zip
NOT FOR LONG TERM USE
-contains readme.txt
-todo- create an override so that even admins cant change rule with FL. optimize UI.
~~~~~DOWNLOAD~~~~~
https://royalsrealm.xyz/passthrough_downloads/Folderlocker.zip
15
Software / Lag Switch
Last post by wad -
Easy to use and simple GUI lagswitch
Works on any non protected selectable process ie Chrome,Zoom,Discord.

(UPDATE 1.2.0)
-Reworked selection system
-Fixed most common issues
-Added process checker
~~~~~DOWNLOAD~~~~~
https://royalsrealm.xyz/passthrough_downloads/RRLagswitch.zip
Works on any non protected selectable process ie Chrome,Zoom,Discord.
(UPDATE 1.2.0)
-Reworked selection system
-Fixed most common issues
-Added process checker
~~~~~DOWNLOAD~~~~~
https://royalsrealm.xyz/passthrough_downloads/RRLagswitch.zip
16
Software / HWID Checker
Last post by wad -
Quick easy way to check your Motherboard,Cpu,Hardrive Hardware ID.
Single exe console window

https://royalsrealm.xyz/passthrough_downloads/HWIDChecker.zip
Single exe console window

https://royalsrealm.xyz/passthrough_downloads/HWIDChecker.zip
17
vBETA4
Crypt is a simple,easy, and fast AES encryption, decryption and corruption program made in C#.
It is compatable with almost any file type. .mp4,.png,.jpeg,.file,.exe,.txt
Easy to use GUI with instructions to use each of CRYPT's functions
500mb limit on version BETA3 and below.
NO LONGER ON GITHUB, updates posted here

~~~~~~DOWNLOAD~~~~~~
https://royalsrealm.xyz/passthrough_downloads/CRYPTBETA4v2.zip
Crypt is a simple,easy, and fast AES encryption, decryption and corruption program made in C#.
It is compatable with almost any file type. .mp4,.png,.jpeg,.file,.exe,.txt
Easy to use GUI with instructions to use each of CRYPT's functions
500mb limit on version BETA3 and below.
NO LONGER ON GITHUB, updates posted here

~~~~~~DOWNLOAD~~~~~~
https://royalsrealm.xyz/passthrough_downloads/CRYPTBETA4v2.zip
20
Software / ETH Seed Guesser
Last post by wad -
Guesses random ethereum seed phrases and checks balances using Infura.
Creates a TRIED and SUCCES file to record phrases that have already been tried to prevent duplicates and records accounts with a balance >0.
Option to disable checking for duplicates.
Requires an infura api link.
UPDATE 1.0.3
-Added backup urls so once one has been fully used it automatically moves onto the next url

~~~~~~DOWNLOAD~~~~~~
https://royalsrealm.xyz/passthrough_downloads/ETHGuesser.zip
Creates a TRIED and SUCCES file to record phrases that have already been tried to prevent duplicates and records accounts with a balance >0.
Option to disable checking for duplicates.
Requires an infura api link.
UPDATE 1.0.3
-Added backup urls so once one has been fully used it automatically moves onto the next url

~~~~~~DOWNLOAD~~~~~~
https://royalsrealm.xyz/passthrough_downloads/ETHGuesser.zip