Giter Club home page Giter Club logo

stateye's Introduction

StatEye ๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ

An eye that keeps track of your Roblox status and shares it with others.

application application

Roblox presence for Discord with only one native standalone executable that relies on zero external dependencies, and doesn't need to be installed.

Performance โšก

Executable Size Memory Usage Network Usage Disk Usage CPU Usage
~1.5MB ~1.5MB to ~2.1MB 0MB/s to ~0.1MB/s 0% 0%

0% does NOT imply that the program is not utilizing the given resource, but rather indicate that the usage is too low to be represented by one decimal place percentage.

Installation ๐Ÿ—๏ธ

Just download the stateye.exe file from the latest release, and run it.

Configuration File โš™๏ธ

Configuration file is optional, if you choose to include it, do the following:

  • Create a file called stateye.config and place it in the same dictionary where stateye.exe is located.
  • Open stateye.config in a notepad or other text editing program and paste the following:
token=YOUR_ROBLOX_SECURITY_TOKEN (optional)
website=true (optional)
player=true (optional)
studio=true (optional)

Format: key=value.

Key Description Value Type Default Value
token Roblox account token which can be found in a cookie called .ROBLOSECURITY. string
website Whether to show that you are online. bool true
player Whether to show that you are playing a game. bool true
studio Whether to show that you are developing a game. bool true

โš ๏ธ Do NOT share the token with anyone, keep it safe as it will allow bad actor to bypass all security features and access your account!

Reporting Bugs ๐Ÿ›

  1. Download stateye_debug.exe from the latest release.
  2. Start screen recording.
  3. Do something to cause problems and then exit out of the program if it didn't already.
  4. Stop screen recording.
  5. Remove sensitive details from the console (if any) and the screen recording.
  6. Open new issue and include the console logs with a screen recording along with details, such as what operating system you're using, etc.

stateye's People

Contributors

daw588 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

stateye's Issues

won't open

the method of set up is very unclear, and running the "stateye.exe" on it's own won't open

StatEye Discord Rich Presence Problem

When I use StatEye everything works fine, when I turn off Roblox it keeps saying I'm browsing modes like I have the app or site open, when in fact it's closed, what should I do?

config file not found

i have a .config file named stateye.config and its still saying config file not found

stateye won't open

I try running "stateye.exe" but nothing happens, it doesn't even appear in task manager.

I'm using v0.3.2 and my OS is Windows 10 Pro.

Panic: failed to fetch userid

Application started
VERSION: 0.3.3
Config file not found, using defaults
thread 'main' panicked at 'Failed to fetch user id', src\roblox.rs:60:45
note: run with RUST_BACKTRACE=1 environment variable to display a backtrace
I am using windows, and when I visit the url it gives me the user id and som other information? Is there anything wrong with how the headers are recieved or am I comletely wrong?

Stateye refuses to open

i run stateye and literally nothing happens. I'm using the latest version , Roblox Windows version and i also tried running it with a config file in the same folder.

thread 'main' panicked at 'Failed to fetch user id', src\roblox.rs:69:45
note: run with RUST_BACKTRACE=1 environment variable to display a backtrace

Refuses to run.

I downloaded every single version of the stateye.exe file and none of them did anything, just a small blue circle on the cursor for a second and then nothing. I also tried running the debug application and it showed that there were no errors. Any fix?

Specs:
Ryzen 7 5700X
NVIDIA RTX 3070 Ti
16GB Ram.

Help would be extremely appreciated :)

Linux compatibility

This project panics on linux because it can't find the config. For example, when I clone to Downloads, create stateye.config, and run with cargo run stateye, I get this error:

/home/user/Downloads/stateye\stateye.config
thread 'main' panicked at ''stateye.config' was not found!', src/utils.rs:103:9
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

I noticed in utils.rs you're concatenating the path manually with format, using a backslash:

let working_dir_path = std::env::current_dir().unwrap();
let working_dir_path = working_dir_path.as_os_str().to_str().unwrap();

let config_path = format!("{}\\{}", working_dir_path, config::CONFIG_FILE_NAME);

Rather than doing this manually, since it breaks on systems that use forward-slash as a path delimiter, you can use Rust's Path API, namely Path.join:

let working_dir_path = std::env::current_dir().unwrap();

let config_path = working_dir_path.join(config::CONFIG_FILE_NAME);

Config file not found

I have my config file in the same directory as stateye.exe and when i run debug through cmd it says config wasnt found

image
image

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.