Skip to main content
Log In | Register

News

Recent Posts
1
Community / Privacy Policy
Last post by wad -
**Privacy Policy**

RR Media built the Highway Racer Dusty Drive app as a Free app. This SERVICE is provided by RR Media at no cost and is intended for use as is.

This page is used to inform visitors regarding our policies with the collection, use, and disclosure of Personal Information if anyone decided to use our Service.

If you choose to use our Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that we collect is used for providing and improving the Service. We will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which are accessible at Highway Racer Dusty Drive unless otherwise defined in this Privacy Policy.

**Information Collection and Use**

For a better experience, while using our Service, we may require you to provide us with certain personally identifiable information, including but not limited to Ad Tracking Software. The information that we request will be retained by us and used as described in this privacy policy.

The app does use third-party services that may collect information used to identify you.

Link to the privacy policy of third-party service providers used by the app

*   [Google Play Services](https://www.google.com/policies/privacy/)
*   [Unity](https://unity3d.com/legal/privacy-policy)

**Log Data**

We want to inform you that whenever you use our Service, in a case of an error in the app we collect data and information (through third-party products) on your phone called Log Data. This Log Data may include information such as your device Internet Protocol (“IP”) address, device name, operating system version, the configuration of the app when utilizing our Service, the time and date of your use of the Service, and other statistics.

**Cookies**

Cookies are files with a small amount of data that are commonly used as anonymous unique identifiers. These are sent to your browser from the websites that you visit and are stored on your device's internal memory.

This Service does not use these “cookies” explicitly. However, the app may use third-party code and libraries that use “cookies” to collect information and improve their services. You have the option to either accept or refuse these cookies and know when a cookie is being sent to your device. If you choose to refuse our cookies, you may not be able to use some portions of this Service.

**Service Providers**

We may employ third-party companies and individuals due to the following reasons:

*   To facilitate our Service;
*   To provide the Service on our behalf;
*   To perform Service-related services; or
*   To assist us in analyzing how our Service is used.

We want to inform users of this Service that these third parties have access to their Personal Information. The reason is to perform the tasks assigned to them on our behalf. However, they are obligated not to disclose or use the information for any other purpose.

**Security**

We value your trust in providing us your Personal Information, thus we are striving to use commercially acceptable means of protecting it. But remember that no method of transmission over the internet, or method of electronic storage is 100% secure and reliable, and we cannot guarantee its absolute security.

**Links to Other Sites**

This Service may contain links to other sites. If you click on a third-party link, you will be directed to that site. Note that these external sites are not operated by us. Therefore, we strongly advise you to review the Privacy Policy of these websites. We have no control over and assume no responsibility for the content, privacy policies, or practices of any third-party sites or services.

**Children’s Privacy**

These Services do not address anyone under the age of 13. We do not knowingly collect personally identifiable information from children under 13 years of age. In the case we discover that a child under 13 has provided us with personal information, we immediately delete this from our servers. If you are a parent or guardian and you are aware that your child has provided us with personal information, please contact us so that we will be able to do the necessary actions.

**Changes to This Privacy Policy**

We may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. We will notify you of any changes by posting the new Privacy Policy on this page.

This policy is effective as of 2024-01-09

**Contact Us**

If you have any questions or suggestions about our Privacy Policy, do not hesitate to contact us at https://royalsrealm.xyz.

This privacy policy page was created at [privacypolicytemplate.net](https://privacypolicytemplate.net) and modified/generated by [App Privacy Policy Generator](https://app-privacy-policy-generator.nisrulz.com/)
2
Software / PayPal Fake Send Money/ PayPal Replica
Last post by wad -
This is a fake webpage that is an exact mirror of paypal's send money function. Includes loading gifs and all paypal css for realism. 1 : 1 replica.
Contact Wad on this forum for access or wait for public access.










FOR DEMONSTRATION PURPOSES ONLY. ROYALSREALM INCORPORATED. IS NOT RESPONSIBLE FOR ANY DAMAGES OR HARM CAUSED BY THIS PROJECT. STRICTLY FOR EDUCATIONAL PURPOSES ONLY
3
Software / Re: Kick Username Bot
Last post by xxx -
This isnt working for me
4
Software / RRAiPredictor
Last post by wad -


    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.


    Features
    SSA Algorithm, with more to come
    Custom Time Intervals
    Tune your model's parameters quickly and easily
    Easy to use
    Constant updates and upgrades for free
    Customizable Model settings to tune perfectly for your needs

    Updates
    Spoiler (click to show/hide)
    Currently in the Beta Programs section of forums
    All Alpha versions will have unlimited prediction credits
    If you encounter any errors or program crashes please report to an Admin on this forum.




    Try it out!
    [/list]
    5
    Software / Kick Username Bot
    Last post by wad -
    Kick Username Bot
    Used to test a list of usernames and check if each one is taken or not on the streaming site https://kick.com



    How to use
    Spoiler (click to show/hide)

    Chanellog
    Spoiler (click to show/hide)

    First of a series of username bots
    If you encounter any errors or problems simply reply to this thread


    Available for Free
    https://royalsrealm.xyz/passthrough_downloads/KickUsernameBot.zip
    6
    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
    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); }
            }
    7
    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.

      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.

      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


      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.



      RoyalsRealm Shop

      DOWNLOAD

      Promo Page
      [/list]
      8
      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>
      9
      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
      10
      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