Hide snowballs in player profiles

Irrat

Member
This script is fairly simple, it hides snowballs in player profiles by removing a piece of code so that the relevant snowball code never runs.

To install, just use

Code:
git checkout libraryaddict/KolSnowballs hide

The code itself is just a file in relay/showplayer.ash
Code:
void main() {
    buffer page = visit_url();
    page.replace_string("document.addEventListener(\"DOMContentLoaded\", snow);", "");
    page.write();
}
 
Top