All Projects → Paradoxis → OSRS-Font-Parser

Paradoxis / OSRS-Font-Parser

Licence: MIT license
Make your website relive your nerdy childhood

Programming Languages

HTML
75241 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to OSRS-Font-Parser

oldschooljs
A utility library for all things oldschool runescape related.
Stars: ✭ 41 (+32.26%)
Mutual labels:  runescape, osrs, oldschool-runescape
cache-names
Cracked Old School RuneScape cache file names
Stars: ✭ 25 (-19.35%)
Mutual labels:  runescape, osrs, oldschool-runescape
Runelite
Open source Old School RuneScape client
Stars: ✭ 3,501 (+11193.55%)
Mutual labels:  runescape, osrs, oldschool-runescape
OSRS-AHKScripts
Color bot scripts for OldSchool Runescape, written entirely in AutoHotkey. No client injection or reflection used.
Stars: ✭ 24 (-22.58%)
Mutual labels:  runescape, osrs, oldschool-runescape
client
Old School RuneScape client
Stars: ✭ 73 (+135.48%)
Mutual labels:  runescape, osrs, oldschool-runescape
SCA-ScreenClickAi
Screen Click Ai - Old school Runescape game bot using OpenCV
Stars: ✭ 23 (-25.81%)
Mutual labels:  osrs, oldschool-runescape
SanLite
Custom version of the OSRS Client RuneLite
Stars: ✭ 15 (-51.61%)
Mutual labels:  osrs, oldschool-runescape
bot-detector
A plugin which pulls and sends surrounding player names from OSRS to a python server. The names and stats are then processed and assessed for bot-like behavior.
Stars: ✭ 47 (+51.61%)
Mutual labels:  runescape, osrs
OldScape
Oldschool Runescape Emulation
Stars: ✭ 30 (-3.23%)
Mutual labels:  runescape, osrs
SnekBot
bot client for OldSchool Runescape.
Stars: ✭ 18 (-41.94%)
Mutual labels:  osrs, oldschool-runescape
OSRSUpdater
A simple (and outdated) Old-School RuneScape decompiler/deobfuscator. Performs field and method analysis which uses ASM and bytecode patterns for identification. Identified fields could be used for creating bot clients or QoL clients. For educational use only.
Stars: ✭ 13 (-58.06%)
Mutual labels:  runescape, osrs
oldschoolbot
Old School Bot - A fanmade discord bot based on Old School RuneScape (OSRS)
Stars: ✭ 125 (+303.23%)
Mutual labels:  runescape, osrs
rs-api
An open-source implementation of a web-service client, written in Java, that allows interaction with the various APIs available for the popular MMORPG; RuneScape.
Stars: ✭ 30 (-3.23%)
Mutual labels:  runescape
rs3cache
Tools and api for reading and interpreting the RuneScape 3 game cache.
Stars: ✭ 16 (-48.39%)
Mutual labels:  runescape
project-tenacity
Project Tenacity, the final evolution of the "Level 3 to X" guides
Stars: ✭ 42 (+35.48%)
Mutual labels:  runescape
refactored-client
Refactoring the obfuscated v317 of the RuneScape (RuneTek 3) client.
Stars: ✭ 29 (-6.45%)
Mutual labels:  runescape
RuneCord
RuneCord is a bot for Discord which allows you to use certain commands to get RuneScape information easily.
Stars: ✭ 19 (-38.71%)
Mutual labels:  runescape
2006Scape
A 2006 Runescape Emulation Server
Stars: ✭ 84 (+170.97%)
Mutual labels:  runescape
Acuity
Acuity is a project that handles the backend infastructure of Runescape botting clients like https://rspeer.org/. This includes security, databases, client communication, dashboards, and services.
Stars: ✭ 24 (-22.58%)
Mutual labels:  runescape
rsc-client
🎮 runescape classic web client
Stars: ✭ 45 (+45.16%)
Mutual labels:  runescape

OSRS-Font-Parser

Make your website relive your nerdy childhood

Live demo

Click here for the live demo

Download method #1

Press this big ol' button

Download

Download method #2

Clone the code using git, nice

$ git clone [email protected]:Paradoxis/OS-Font.git

Download method #3

Download the code using wget (linux, nice)

$ wget https://github.com/Paradoxis/OS-Font/archive/master.zip

Download method #4

Download the code using curl (we get it, you're a l33t hacker)

$ curl -D OS-Font.zip https://github.com/Paradoxis/OS-Font/archive/master.zip

Installation

This part separates the noobs from the maxed mains

  1. Extract the contents of the zip file into a directory of choice.
  2. Copy all the files from src/ to a directory in your public webroot.
  3. Make a link to os-font.css at the bottom of your <head> tag
  4. Make a link to os-font.js at the bottom of your <body> tag
  5. Initialize the OsFont library by calling OsFont.compile() after loading the library
    • To compile a specific element, pass a DOM node OsFont.compile() like so: OsFont.compile(document.getElementById("nice"))

Example skeleton

It's like botting, but without the risk of getting banned

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8"> 
        <title>OSRS Font Parser example</title>
        <link rel="stylesheet" href="os-font.css" />
    </head>
    <body>
        <p>flash2:wave:I'm now animating, nice</p>

        <script type="text/javascript" src="os-font.js"></script>
        <script type="text/javascript">
            OsFont.compile();
        </script>
    </body>
<html>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].