Skip to content

daanhaitsma/skribblr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Skribblr

A cheating helper tool for Skribbl.io

Creation of the word list

The word list is a modified version of https://github.com/skribbliohints/skribbliohints.github.io/blob/master/words.json

The list contains all words from the list linked above that contain uppercase characters. Since these are names, they might also show up in the Dutch version of Skribbl.

This was created using the following simple bit of JS:

const results = Object.keys(/* copy/paste of json */)
    .filter(word => /[A-Z]/.test(word))
    .map(word => "'" + word + "',").join('<br>');

document.write(results);

This creates a nicely formatted list which can be copied straight into a javascript array.

'Vin Diesel',
'Daffy Duck',
'Batman',
'Patrick',
'Darwin',
'William Wallace',
...

TODO

  • Add Dutch words
  • Watch the chat to remove any suggestions that have already been guessed by other players
  • Upgrade the guesser to a backend or something with proper storage, so the word list can easily be expanded whenever a drawn word was not known yet
  • If there is only one guess left, automatically submit that one

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published