Module:WikiStats2: Difference between revisions
Jump to navigation
Jump to search
(Created page with "local p = {} local capiunto = require 'capiunto' --[ Thecow275's Profile Infobox Updater Module V2 ] --[ Nicknamed: UUID and J-Village Update] local function preprocessArg(s) if not s then return nil end s = s:match('^%s*(.-)%s*$') --trim whitespace if s == '' then return nil else return s end end function p.main(frame) local args = frame.args local input = preprocessArg(args[1]) local datatype = preprocessArg(args[2]) -- currently u...") |
m (Thecow275 moved page Module:ProfileInfoboxUpdaterExperimental3 to Module:WikiStats2 without leaving a redirect: Release 1.0.0) |
||
| (40 intermediate revisions by the same user not shown) | |||
| Line 3: | Line 3: | ||
--[ Thecow275's Profile Infobox Updater Module | --[ Thecow275's WikiStats 2 1.0.0 formerly Thecow275's Profile Infobox Updater Module V1 ] | ||
local function preprocessArg(s) | local function preprocessArg(s) | ||
| Line 23: | Line 22: | ||
function p.main(frame) | function p.main(frame) | ||
local args = frame.args | local args = frame.args | ||
local | local username = preprocessArg(args[1]) | ||
local datatype = preprocessArg(args[2]) -- currently unused will be used whenever I implement more datatypes | local datatype = preprocessArg(args[2]) -- currently unused will be used whenever I implement more datatypes | ||
-- local secretcreators = false | |||
if not username then -- check for blank username | |||
return 'USERNAME NOT VALID OR API ERROR' | |||
end | |||
if username == '' then | |||
return 'NO USERNAME INPUT' | |||
end | |||
if username == '{{{username}}}' then | |||
return 'TEMPLATE NOTICED' | |||
end | |||
if username == '{{{1}}}' then | |||
username = 'thecow275' | |||
end | |||
-- if username == 'thecow275_secret' then --[[or 'alephcake_secret' ]] | |||
-- secretcreators = true | |||
-- username = 'thecow275' | |||
-- else | |||
-- secretcreators = false | |||
-- end | |||
if | if username then | ||
local data = mw.ext.externalData.getExternalData({ | local data = mw.ext.externalData.getExternalData({ | ||
url = "https://api.ashcon.app/mojang/v2/user/" .. | url = "https://api.ashcon.app/mojang/v2/user/" .. username, | ||
format = 'json' | format = 'json' | ||
}) | }) | ||
if not data.uuid then --check for blank uuid (if this happens hell has broken lose) | |||
if not uuid then --check for blank uuid (if this happens hell has broken lose) | |||
return 'NO VALID UUID FOUND' | return 'NO VALID UUID FOUND' | ||
end | end | ||
if uuid then --if uuid is valid then get data from johnymuffin jstats api | if data.uuid then --if uuid is valid then get data from johnymuffin jstats api | ||
local userdata = mw.ext.externalData.getExternalData({ | local userdata = mw.ext.externalData.getExternalData({ | ||
url = "https://statistics.johnymuffin.com/api/v1/getUser?serverID=0&uuid=" .. uuid, | url = "https://statistics.johnymuffin.com/api/v1/getUser?serverID=0&uuid=" .. data.uuid, | ||
data = {deaths='playerDeaths',pkilled='playersKilled',joins='joinCount',traveled='metersTraveled',blocksplaced='blocksPlaced',itemsdropped='itemsDropped',trustlevel='trustLevel',blocksdestroyed='blocksDestroyed',groups = 'Groups', creatureskilled = 'creaturesKilled', balance='money'}, | data = {deaths='playerDeaths',pkilled='playersKilled',joins='joinCount',traveled='metersTraveled',blocksplaced='blocksPlaced',itemsdropped='itemsDropped',trustlevel='trustLevel',blocksdestroyed='blocksDestroyed',groups = 'Groups', creatureskilled = 'creaturesKilled', balance='money'}, | ||
format = 'json' | format = 'json' | ||
| Line 95: | Line 78: | ||
local plusstyle = 'icr-t-4 icr-data' | local plusstyle = 'icr-t-4 icr-data' | ||
local plus = '' | local plus = '' | ||
local backgroundstyle = 'icr-WandererBodyStyle' | |||
if userdata.groups then | if userdata.groups then | ||
if string. | if string.match(userdata.groups, "wanderer") then | ||
rank = 'Wanderer' | rank = 'Wanderer' | ||
bracketstyle = 'icr-t-8 icr-data' | bracketstyle = 'icr-t-8 icr-data' | ||
rankstyle = 'icr-t-7 icr-data' | rankstyle = 'icr-t-7 icr-data' | ||
backgroundstyle = 'icr-WandererBodyStyle' | |||
end -- RANKLIST START -- | end -- RANKLIST START -- | ||
if string. | if string.match(userdata.groups, "admin") then --ADMIN | ||
rank = 'Admin' | rank = 'Admin' | ||
bracketstyle = 'icr-t-f icr-data' | bracketstyle = 'icr-t-f icr-data' | ||
rankstyle = 'icr-t-4 icr-data' | rankstyle = 'icr-t-4 icr-data' | ||
backgroundstyle ='icr-AdminBodyStyle' | |||
end | end | ||
if string. | if string.match(userdata.groups, "trial") then -- Trial Helper | ||
rank = 'Trial Helper' | rank = 'Trial Helper' | ||
bracketstyle = 'icr-t-f icr-data' | bracketstyle = 'icr-t-f icr-data' | ||
rankstyle = 'icr-t-a icr-data' | rankstyle = 'icr-t-a icr-data' | ||
backgroundstyle = 'icr-TrialBodyStyle' | |||
end | end | ||
if string. | if string.match(userdata.groups, "moderator") then -- Moderator | ||
rank = 'Moderator' | rank = 'Moderator' | ||
bracketstyle = 'icr-t-f icr-data' | bracketstyle = 'icr-t-f icr-data' | ||
rankstyle = 'icr-t-6 icr-data' | rankstyle = 'icr-t-6 icr-data' | ||
backgroundstyle = 'icr-ModeratorBodyStyle' | |||
end | end | ||
if string. | if string.match(userdata.groups, "helper") then -- Helper | ||
rank = 'Helper' | rank = 'Helper' | ||
bracketstyle = 'icr-t-f icr-data' | bracketstyle = 'icr-t-f icr-data' | ||
rankstyle = 'icr-t-3 icr-data' | rankstyle = 'icr-t-3 icr-data' | ||
backgroundstyle = 'icr-HelperBodyStyle' | |||
end | end | ||
if string. | if string.match(userdata.groups, "developer") then -- Developer | ||
rank = 'Developer' | rank = 'Developer' | ||
bracketstyle = 'icr-t-f icr-data' | bracketstyle = 'icr-t-f icr-data' | ||
rankstyle = 'icr-t-c icr-data' | rankstyle = 'icr-t-c icr-data' | ||
backgroundstyle = 'icr-DeveloperBodyStyle' | |||
end | end | ||
if string. | if string.match(userdata.groups, "diamondcitizen") then -- Diamond Citizen | ||
rank = 'Diamond Citizen' | rank = 'Diamond Citizen' | ||
bracketstyle = 'icr-t-b icr-data' | bracketstyle = 'icr-t-b icr-data' | ||
rankstyle = 'icr-t-a icr-data' | rankstyle = 'icr-t-a icr-data' | ||
backgroundstyle = 'icr-DiamondCitizenBodyStyle' | |||
elseif string.match(userdata.groups, "citizen") then -- Citizen | |||
rank = 'Citizen' | rank = 'Citizen' | ||
bracketstyle = 'icr-t-f icr-data' | bracketstyle = 'icr-t-f icr-data' | ||
rankstyle = 'icr-t-a icr-data' | rankstyle = 'icr-t-a icr-data' | ||
backgroundstyle = 'icr-CitizenBodyStyle' | |||
end | end | ||
if string. | if string.match(userdata.groups, "trusted") then -- Gold Citizen | ||
rank = 'Gold Citizen' | rank = 'Gold Citizen' | ||
bracketstyle = 'icr-t-6 icr-data' | bracketstyle = 'icr-t-6 icr-data' | ||
rankstyle = 'icr-t-a icr-data' | rankstyle = 'icr-t-a icr-data' | ||
backgroundstyle = 'icr-TrustedBodyStyle' | |||
end | end | ||
if string. | if string.match(userdata.groups, "hero") then -- Hero | ||
rank = 'Hero' | rank = 'Hero' | ||
bracketstyle = 'icr-t-f icr-data' | bracketstyle = 'icr-t-f icr-data' | ||
rankstyle = 'icr-t-2 icr-data' | rankstyle = 'icr-t-2 icr-data' | ||
backgroundstyle = 'icr-HeroBodyStyle' | |||
end | end | ||
if string. | if string.match(userdata.groups, "legend") then -- Legend | ||
rank = 'Legend' | rank = 'Legend' | ||
bracketstyle = 'icr-t-f icr-data' | bracketstyle = 'icr-t-f icr-data' | ||
rankstyle = 'icr-t-9 icr-data' | rankstyle = 'icr-t-9 icr-data' | ||
backgroundstyle = 'icr-LegendBodyStyle' | |||
end | end | ||
if string. | if string.match(userdata.groups, "mystic") then -- Mystic | ||
rank = 'Mystic' | rank = 'Mystic' | ||
bracketstyle = 'icr-t-f icr-data' | bracketstyle = 'icr-t-f icr-data' | ||
rankstyle = 'icr-t-b icr-data' | rankstyle = 'icr-t-b icr-data' | ||
backgroundstyle = 'icr-MysticBodyStyle' | |||
end | end | ||
if string. | if string.match(userdata.groups, "donator") then -- Donator | ||
rank = 'Donator' | rank = 'Donator' | ||
bracketstyle = 'icr-t-8 icr-data' | bracketstyle = 'icr-t-8 icr-data' | ||
rankstyle = 'icr-t-c icr-data' | rankstyle = 'icr-t-c icr-data' | ||
backgroundstyle = 'icr-DonatorBodyStyle' | |||
end | end | ||
if string. | if string.match(userdata.groups, "donatorplus") then -- Donator+ | ||
rank = 'Donator' | rank = 'Donator' | ||
bracketstyle = 'icr-t-8 icr-data' | bracketstyle = 'icr-t-8 icr-data' | ||
rankstyle = 'icr-t-c icr-data' | rankstyle = 'icr-t-c icr-data' | ||
plus = '+' | plus = '+' | ||
backgroundstyle = 'icr-DonatorPlusBodyStyle' | |||
end | end | ||
if string. | if string.match(userdata.groups, "donatorplusplus") then -- Donator++ | ||
rank = 'Donator' | rank = 'Donator' | ||
bracketstyle = 'icr-t-8 icr-data' | bracketstyle = 'icr-t-8 icr-data' | ||
rankstyle = 'icr-t-c icr-data' | rankstyle = 'icr-t-c icr-data' | ||
plus = '++' | plus = '++' | ||
backgroundstyle = 'icr-DonatorPlusPlusBodyStyle' | |||
end | end | ||
if string. | if string.match(userdata.groups, "trooper") then -- Trooper | ||
rank = 'Trooper' | rank = 'Trooper' | ||
bracketstyle = 'icr-t-f icr-data' | bracketstyle = 'icr-t-f icr-data' | ||
rankstyle = 'icr-t-d icr-data' | rankstyle = 'icr-t-d icr-data' | ||
backgroundstyle = 'icr-TrooperBodytyle' | |||
end | end | ||
if string. | if string.match(userdata.groups, "infrastructure") then -- Infrastructure (not used) | ||
rank = 'Infrastructure' | rank = 'Infrastructure' | ||
bracketstyle = 'icr-t-f icr-data' | bracketstyle = 'icr-t-f icr-data' | ||
rankstyle = 'icr-t-6 icr-data' | rankstyle = 'icr-t-6 icr-data' | ||
backgroundstyle = 'icr-InfrastructureBodyStyle' | |||
end | end | ||
-- RANKLIST END -- | -- RANKLIST END -- | ||
| Line 191: | Line 190: | ||
bracketstyle = 'icr-t-8 icr-data' | bracketstyle = 'icr-t-8 icr-data' | ||
rankstyle = 'irc-t-7 icr-data' | rankstyle = 'irc-t-7 icr-data' | ||
backgroundstyle = 'icr-WandererBodyStyle' | |||
end | end | ||
| Line 197: | Line 197: | ||
local styletop = 'background:#cfc;' | local styletop = 'background:#cfc;' | ||
if | --if username == 'JohnyMuffin' then --[[ Johny Muffin Easter EGG]] | ||
-- styletop = 'background:#5555FF; color:#FFFFFF;' | |||
-- else | |||
-- styletop = 'background:#cfc;' | |||
-- end | |||
if datatype == 'infobox' then | |||
-- local bypassluajank = 'icr-title' | |||
-- if secretcreators then | |||
-- bypassluajank = 'icr-title_easteregg' | |||
-- else | |||
-- bypassluajank = 'icr-title' | |||
--end | |||
end | |||
local args = frame:getParent().args | local args = frame:getParent().args | ||
| Line 239: | Line 216: | ||
local retval = capiunto.create({ | local retval = capiunto.create({ | ||
top = username, | |||
bodyClass = backgroundstyle, -- DO NOT EDIT HERE SEE THE if userdate.groups section for the values (Hint: they are css classes) | |||
--[[ AUTOMATE THIS WITH A LOCAL YOU CHANGE ABOVE IN THE if userdata.groups section | |||
topStyle = styletop | -- Add rank specific gradients to infobox_capiunto_recode.css | ||
-- make sure to have a default value for the bodyClass to prevent errors and page breakage | |||
-- { Custom Gradient Colors are being worked on by alephcake} | |||
--< THANK YOU alephcake for providing some of the color stuff for the infobox stuff > | |||
--maybe we should add a easter egg when you input username as alephcake | |||
--fix Johny Muffin easter egg <-- REMOVED | |||
--]] | |||
topClass = 'icr-title' | |||
--bodyStyle = 'background-color: #e67373; background-image: linear-gradient(160deg, #12c8f5 , rgb(255, 0, 221)); border: 2px solid #000; border-radius: 25px; padding: 10px; margin: 5px; box-shadow: 2px 2px 5px #AAAAAA;', | |||
--topStyle = styletop | |||
}) | }) | ||
| Line 249: | Line 244: | ||
--:addImage( args.image, args.caption ) | --:addImage( args.image, args.caption ) | ||
retval:addImage('https://minotar.net/armor/bust/'.. | retval:addImage('https://minotar.net/armor/bust/'..username..'.png','','icr-data icr-transparency2') | ||
--:addHeader(username, 'icr-title') | --:addHeader(username, 'icr-title') | ||
retval:addRow('','') | --retval:addRow('','') | ||
--:addWikitext('File:https://minotar.net/armor/bust'..username..'.png') | --:addWikitext('File:https://minotar.net/armor/bust'..username..'.png') | ||
retval:addRow( 'Username', username, '', 'icr-transparency1 icr-data' ) | |||
retval:addRow( 'UUID', data.uuid,'', 'icr-data icr-transparency2' ) | |||
retval:addHeader('General Stats', 'icr-header') | |||
--if rank == 'Wanderer' then | |||
-- retval:addRow('Rank', formattedrank, 'icr-w', 'icr-wanderer') | |||
--else | |||
retval:addRow( 'Rank', formattedrank, '', 'icr-data icr-transparency1' ) | |||
--end | |||
retval:addRow( 'Balance', string.format("%.2f", userdata.balance),'','icr-data icr-transparency2') | |||
retval:addHeader( 'Miscellaneous Stats', 'icr-header' ) | |||
retval:addRow( 'Join Count', userdata.joins,'', 'icr-transparency1 icr-data' ) | |||
retval:addRow( 'Trust Level', userdata.trustlevel, '', 'icr-data icr-transparency2') | |||
retval:addRow( 'Player Kills', userdata.pkilled,'', 'icr-transparency1 icr-data' ) | |||
retval:addRow( 'Mob Kills', userdata.creatureskilled, '', 'icr-data icr-transparency2' ) | |||
retval:addRow( 'Deaths', userdata.deaths,'', 'icr-transparency1 icr-data' ) | |||
retval:addRow( 'Blocks Traveled', userdata.traveled, '', 'icr-data icr-transparency2' ) | |||
retval:addRow( 'Blocks Placed', userdata.blocksplaced,'', 'icr-transparency1 icr-data' ) | |||
retval:addRow( 'Items Dropped', userdata.itemsdropped, '', 'icr-transparency2 icr-data' ) | |||
retval:addRow( 'Blocks Broken', userdata.blocksdestroyed,'', 'icr-transparency1 icr-data') | |||
return retval | return retval | ||
| Line 305: | Line 288: | ||
return 'something went horribly wrong' | return 'something went horribly wrong' | ||
end | end | ||
end | end | ||
return p | return p | ||
Latest revision as of 16:50, 22 December 2024
Documentation for this module may be created at Module:WikiStats2/doc
local p = {}
local capiunto = require 'capiunto'
--[ Thecow275's WikiStats 2 1.0.0 formerly Thecow275's Profile Infobox Updater Module V1 ]
local function preprocessArg(s)
if not s then
return nil
end
s = s:match('^%s*(.-)%s*$') --trim whitespace
if s == '' then
return nil
else
return s
end
end
function p.main(frame)
local args = frame.args
local username = preprocessArg(args[1])
local datatype = preprocessArg(args[2]) -- currently unused will be used whenever I implement more datatypes
-- local secretcreators = false
if not username then -- check for blank username
return 'USERNAME NOT VALID OR API ERROR'
end
if username == '' then
return 'NO USERNAME INPUT'
end
if username == '{{{username}}}' then
return 'TEMPLATE NOTICED'
end
if username == '{{{1}}}' then
username = 'thecow275'
end
-- if username == 'thecow275_secret' then --[[or 'alephcake_secret' ]]
-- secretcreators = true
-- username = 'thecow275'
-- else
-- secretcreators = false
-- end
if username then
local data = mw.ext.externalData.getExternalData({
url = "https://api.ashcon.app/mojang/v2/user/" .. username,
format = 'json'
})
if not data.uuid then --check for blank uuid (if this happens hell has broken lose)
return 'NO VALID UUID FOUND'
end
if data.uuid then --if uuid is valid then get data from johnymuffin jstats api
local userdata = mw.ext.externalData.getExternalData({
url = "https://statistics.johnymuffin.com/api/v1/getUser?serverID=0&uuid=" .. data.uuid,
data = {deaths='playerDeaths',pkilled='playersKilled',joins='joinCount',traveled='metersTraveled',blocksplaced='blocksPlaced',itemsdropped='itemsDropped',trustlevel='trustLevel',blocksdestroyed='blocksDestroyed',groups = 'Groups', creatureskilled = 'creaturesKilled', balance='money'},
format = 'json'
})
if userdata then -- if this doesn't trigger something has gone terribly wrong
local rank = 'Wanderer'
local bracketstyle = 'icr-t-8 icr-data'
local rankstyle = 'icr-t-7 icr-data'
local plusstyle = 'icr-t-4 icr-data'
local plus = ''
local backgroundstyle = 'icr-WandererBodyStyle'
if userdata.groups then
if string.match(userdata.groups, "wanderer") then
rank = 'Wanderer'
bracketstyle = 'icr-t-8 icr-data'
rankstyle = 'icr-t-7 icr-data'
backgroundstyle = 'icr-WandererBodyStyle'
end -- RANKLIST START --
if string.match(userdata.groups, "admin") then --ADMIN
rank = 'Admin'
bracketstyle = 'icr-t-f icr-data'
rankstyle = 'icr-t-4 icr-data'
backgroundstyle ='icr-AdminBodyStyle'
end
if string.match(userdata.groups, "trial") then -- Trial Helper
rank = 'Trial Helper'
bracketstyle = 'icr-t-f icr-data'
rankstyle = 'icr-t-a icr-data'
backgroundstyle = 'icr-TrialBodyStyle'
end
if string.match(userdata.groups, "moderator") then -- Moderator
rank = 'Moderator'
bracketstyle = 'icr-t-f icr-data'
rankstyle = 'icr-t-6 icr-data'
backgroundstyle = 'icr-ModeratorBodyStyle'
end
if string.match(userdata.groups, "helper") then -- Helper
rank = 'Helper'
bracketstyle = 'icr-t-f icr-data'
rankstyle = 'icr-t-3 icr-data'
backgroundstyle = 'icr-HelperBodyStyle'
end
if string.match(userdata.groups, "developer") then -- Developer
rank = 'Developer'
bracketstyle = 'icr-t-f icr-data'
rankstyle = 'icr-t-c icr-data'
backgroundstyle = 'icr-DeveloperBodyStyle'
end
if string.match(userdata.groups, "diamondcitizen") then -- Diamond Citizen
rank = 'Diamond Citizen'
bracketstyle = 'icr-t-b icr-data'
rankstyle = 'icr-t-a icr-data'
backgroundstyle = 'icr-DiamondCitizenBodyStyle'
elseif string.match(userdata.groups, "citizen") then -- Citizen
rank = 'Citizen'
bracketstyle = 'icr-t-f icr-data'
rankstyle = 'icr-t-a icr-data'
backgroundstyle = 'icr-CitizenBodyStyle'
end
if string.match(userdata.groups, "trusted") then -- Gold Citizen
rank = 'Gold Citizen'
bracketstyle = 'icr-t-6 icr-data'
rankstyle = 'icr-t-a icr-data'
backgroundstyle = 'icr-TrustedBodyStyle'
end
if string.match(userdata.groups, "hero") then -- Hero
rank = 'Hero'
bracketstyle = 'icr-t-f icr-data'
rankstyle = 'icr-t-2 icr-data'
backgroundstyle = 'icr-HeroBodyStyle'
end
if string.match(userdata.groups, "legend") then -- Legend
rank = 'Legend'
bracketstyle = 'icr-t-f icr-data'
rankstyle = 'icr-t-9 icr-data'
backgroundstyle = 'icr-LegendBodyStyle'
end
if string.match(userdata.groups, "mystic") then -- Mystic
rank = 'Mystic'
bracketstyle = 'icr-t-f icr-data'
rankstyle = 'icr-t-b icr-data'
backgroundstyle = 'icr-MysticBodyStyle'
end
if string.match(userdata.groups, "donator") then -- Donator
rank = 'Donator'
bracketstyle = 'icr-t-8 icr-data'
rankstyle = 'icr-t-c icr-data'
backgroundstyle = 'icr-DonatorBodyStyle'
end
if string.match(userdata.groups, "donatorplus") then -- Donator+
rank = 'Donator'
bracketstyle = 'icr-t-8 icr-data'
rankstyle = 'icr-t-c icr-data'
plus = '+'
backgroundstyle = 'icr-DonatorPlusBodyStyle'
end
if string.match(userdata.groups, "donatorplusplus") then -- Donator++
rank = 'Donator'
bracketstyle = 'icr-t-8 icr-data'
rankstyle = 'icr-t-c icr-data'
plus = '++'
backgroundstyle = 'icr-DonatorPlusPlusBodyStyle'
end
if string.match(userdata.groups, "trooper") then -- Trooper
rank = 'Trooper'
bracketstyle = 'icr-t-f icr-data'
rankstyle = 'icr-t-d icr-data'
backgroundstyle = 'icr-TrooperBodytyle'
end
if string.match(userdata.groups, "infrastructure") then -- Infrastructure (not used)
rank = 'Infrastructure'
bracketstyle = 'icr-t-f icr-data'
rankstyle = 'icr-t-6 icr-data'
backgroundstyle = 'icr-InfrastructureBodyStyle'
end
-- RANKLIST END --
else
rank = 'Wanderer'
bracketstyle = 'icr-t-8 icr-data'
rankstyle = 'irc-t-7 icr-data'
backgroundstyle = 'icr-WandererBodyStyle'
end
local formattedrank = string.format('<span class="%s">[</span><span class="%s">%s</span><span class="%s">%s</span><span class="%s">]</span>', bracketstyle,rankstyle,rank,plusstyle,plus,bracketstyle)
local styletop = 'background:#cfc;'
--if username == 'JohnyMuffin' then --[[ Johny Muffin Easter EGG]]
-- styletop = 'background:#5555FF; color:#FFFFFF;'
-- else
-- styletop = 'background:#cfc;'
-- end
if datatype == 'infobox' then
-- local bypassluajank = 'icr-title'
-- if secretcreators then
-- bypassluajank = 'icr-title_easteregg'
-- else
-- bypassluajank = 'icr-title'
--end
local args = frame:getParent().args
local retval = capiunto.create({
top = username,
bodyClass = backgroundstyle, -- DO NOT EDIT HERE SEE THE if userdate.groups section for the values (Hint: they are css classes)
--[[ AUTOMATE THIS WITH A LOCAL YOU CHANGE ABOVE IN THE if userdata.groups section
-- Add rank specific gradients to infobox_capiunto_recode.css
-- make sure to have a default value for the bodyClass to prevent errors and page breakage
-- { Custom Gradient Colors are being worked on by alephcake}
--< THANK YOU alephcake for providing some of the color stuff for the infobox stuff >
--maybe we should add a easter egg when you input username as alephcake
--fix Johny Muffin easter egg <-- REMOVED
--]]
topClass = 'icr-title'
--bodyStyle = 'background-color: #e67373; background-image: linear-gradient(160deg, #12c8f5 , rgb(255, 0, 221)); border: 2px solid #000; border-radius: 25px; padding: 10px; margin: 5px; box-shadow: 2px 2px 5px #AAAAAA;',
--topStyle = styletop
})
--:addImage( args.image, args.caption )
retval:addImage('https://minotar.net/armor/bust/'..username..'.png','','icr-data icr-transparency2')
--:addHeader(username, 'icr-title')
--retval:addRow('','')
--:addWikitext('File:https://minotar.net/armor/bust'..username..'.png')
retval:addRow( 'Username', username, '', 'icr-transparency1 icr-data' )
retval:addRow( 'UUID', data.uuid,'', 'icr-data icr-transparency2' )
retval:addHeader('General Stats', 'icr-header')
--if rank == 'Wanderer' then
-- retval:addRow('Rank', formattedrank, 'icr-w', 'icr-wanderer')
--else
retval:addRow( 'Rank', formattedrank, '', 'icr-data icr-transparency1' )
--end
retval:addRow( 'Balance', string.format("%.2f", userdata.balance),'','icr-data icr-transparency2')
retval:addHeader( 'Miscellaneous Stats', 'icr-header' )
retval:addRow( 'Join Count', userdata.joins,'', 'icr-transparency1 icr-data' )
retval:addRow( 'Trust Level', userdata.trustlevel, '', 'icr-data icr-transparency2')
retval:addRow( 'Player Kills', userdata.pkilled,'', 'icr-transparency1 icr-data' )
retval:addRow( 'Mob Kills', userdata.creatureskilled, '', 'icr-data icr-transparency2' )
retval:addRow( 'Deaths', userdata.deaths,'', 'icr-transparency1 icr-data' )
retval:addRow( 'Blocks Traveled', userdata.traveled, '', 'icr-data icr-transparency2' )
retval:addRow( 'Blocks Placed', userdata.blocksplaced,'', 'icr-transparency1 icr-data' )
retval:addRow( 'Items Dropped', userdata.itemsdropped, '', 'icr-transparency2 icr-data' )
retval:addRow( 'Blocks Broken', userdata.blocksdestroyed,'', 'icr-transparency1 icr-data')
return retval
end
end
end
else
return 'something went horribly wrong'
end
end
return p