Coder Social home page Coder Social logo

fps-unlock_customizable's Introduction

Roblox FPS Unlocker ( API )

Manage your Roblox FPS Unlocker in .NET ( C# )

Build Status

This Roblox FPS Unlocker ( Specifically ) has a Namedpipe that Customized the FPS Cap you want to set in your own User Interface using ( Trackball / Slider / Textbox / and etc )

Features

  • Control Roblox's FPS Cap ( Unlock then Manage its FPS Cap in your own UI )
  • Modified Version of Roblox FPS Unlocker

Screenshots

enter image description here

Footage

Demo.mp4

How to use this API

Want to add this API to your User Interface? Great!

First, Add this API on your Project's Reference.

To Call the API. Copy this Code since this will Create an FPSUnlockAPI's object to call the following methods from

FPSUnlockAPI.FPSUnlockAPI fps = new FPSUnlockAPI.FPSUnlockAPI();

Using Slider ( WPF ) or Trackball ( WinForm)

            double value = trackBar1.Value; //Getting the Value of your Slider or Trackball
            fps.SendFPSValue(value); // Send the Value to the Pipe. 

Using Textbox / Richtextbox ( Anything but string )

            try //Exception Handler ofc ( because some ppl gonna accident putting letter A to Z or special characters that cannot be converted to double )
            {
                string valuestring = textBox1.Text;
                double value = Convert.ToDouble(valuestring); //Convert the String to Double since even you type No. on text, it will show as a string, so it gonna convert it to double. 0-9, 
                fps.SendFPSValue(value); // Send the Value to the Pipe. 
            }
            catch (Exception)
            {
                MessageBox.Show("Thats Not a Number");
                return;
            }

Credit

fps-unlock_customizable's People

Contributors

skieadmin avatar

Stargazers

 avatar  avatar

fps-unlock_customizable's Issues

Wow

Good code

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.