Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@2003scape/rsc-captcha
Advanced tools
generate runescape classic sleep screen words. players would enter the generated word during the fatigue system to continue gaining experience.
$ npm install @2003scape/rsc-captcha
const Captcha = require('./src/index');
const captcha = new Captcha();
const fs = require('fs');
(async () => {
await captcha.loadFonts();
for (let i = 0; i < 10; i += 1) {
const { word, image } = captcha.generate();
if (process.browser) {
document.body.appendChild(new Text(word));
document.body.appendChild(image);
document.body.appendChild(document.createElement('br'));
} else {
fs.writeFileSync(`${word}.png`, image.toBuffer());
}
}
})();
convert any canvas into a game client-compatible RLE byte array.
create a new captcha generator instance. words is an array of words to randomly select from (defaults to en-uk with lengths between 4-9).
load the main font image (font.png
). run before generating captchas.
generate a word and captcha associated with it. returns:
{
image: Canvas,
word: String
}
pick a random word from the dictionary.
create a Canvas with specified word.
Copyright 2020 2003Scape Team
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see http://www.gnu.org/licenses/.
FAQs
generate runescape classic sleep screen words
We found that @2003scape/rsc-captcha demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.