got bored. use this w/ tampermonkey to get cool nitro badge if u have nitro + vip.
// ==UserScript==
// @name Forum Nitro Badge Thing
// @namespace http://uwu.to/
// @version 1.0-alpha
// @description lol
// @author Rick Johnson
// @include https://*.zarpgaming.com/*
// @include https://zarpgaming.com/*
// @require http://code.jquery.com/jquery-3.3.1.min.js
// @grant none
// ==/UserScript==
var boostimg = "https://cdn.uwu.to/various/prismatic/misc/zarpboost.png"; //the booster badge image. you can change this to your own image. keep the dimensions around 148x32, though.
var boostindic = "/media/kunena/ranks/nitro-boost.png"; //the dot thingies used to find which users are Nitro Boosters. ignore.
var _boostindic = $('img[src="/media/kunena/ranks/nitro-boost.png"]'); //all ppl with nitro.
var x = _boostindic.parents('.kpost-profile'); //not important.
var badges = ['/components/com_kunena/template/blue_eagle/images/badges/zarpvip.png','/components/com_kunena/template/blue_eagle/images/badges/zarpvipgold.png','/components/com_kunena/template/blue_eagle/images/badges/zarpvipgoldenblue.png']; //ignore
for (var i = 0; i < badges.length; i++) {
x.find(`img[src="${badges[i]}"]`).attr('style','width: 95%;'); //size fix
x.find(`img[src="${badges[i]}"]`).attr('src',boostimg); //actually changes the badges
}
might do more small changes and create like a "Forum+" thing with extra features. no virus btw don't ban me thanks.
thats all.