Skip to content

Open source project that searches OSRS/RS3 Hiscores for availability of a RSN.

License

Notifications You must be signed in to change notification settings

ICSharperNow/Runescape-Name-Checker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

220 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🔎 RSNChecker [Version: 1.5]

RSNChecker is an open-source project written in Python that allows you to search for a Runescape name to see if it's available. You can search for either a single username or enter multiple usernames (I've tested 500 usernames at once) with the added benefit of either checking OSRS Hiscores or RS3 Hiscores.

🧭 Demo

Image

✍️ Manual Setup

  • Download Python
  • Clone repo https://github.com/aellas/testing.git
  • Install requirements pip install -r requirements.txt
  • Run code python3 main.py

✏️ Generate

You can now generate (50) unique 2/3 letter /+ number RSN's to check

Image

You can change how many names to generate by editing the generate functions

def two_letter_func(name_entry):
    names = ["".join(random.choices(string.ascii_letters, k=2)) for _ in range(50)]
    name_entry.delete(0, "end")
    name_entry.insert(0, ",".join(names))

Where it says for _ in range(50) change 50 to your desired number

📖 Update 2.0 [coming soon]

  • Renamed to RSNTool
  • Complete UI change
  • Fixed DPI scalling on Windows
  • You can now send results to a discord webhook + store webhooks locally via a json file
  • Ability to check via RS3 Client on a fresh account (NOTE: BANNABLE OFFENCE) + chance of having rsn bound to the new account
  • New Discord Bot section that allows u to create your own discord bot so u can search rsn's instead of using the GUI
  • Search improvements

Note: a public discord bot will be available and will have new features for testing before it gets released to github

👀 Preview Image

Image

Todo

  • Create GUI part for Discord bot
  • Improve checking via RS3 Client (currently uses pyautogui by checking images)
  • Complete settings GUI
  • Add links to new buttons
  • Automatic theming depending on system preferences

❤️ Credits

About

Open source project that searches OSRS/RS3 Hiscores for availability of a RSN.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%