1
Scripting / Re: Adding informationtext to excisting Theme
« Last post by JJTheKing on June 28, 2025, 07:36:31 PM »# Info Played Count
local playx = fe.add_text ("[!PlayedCount]", 1185, 1020, 300, 25);
playx.set_rgb (255,255,255);
playx.charsize = 15;
playx.align = Align.Left;
playx.alpha = 120;
playx.zorder = 6;
function PlayedCount (ioffset) {
local played = fe.game_info (Info.PlayedCount,ioffset);
if (played != "0") {
return "Played: "+ played + " x";
}
else {
return "Never Played !";
}
}
local playx = fe.add_text ("[!PlayedCount]", 1185, 1020, 300, 25);
playx.set_rgb (255,255,255);
playx.charsize = 15;
playx.align = Align.Left;
playx.alpha = 120;
playx.zorder = 6;
function PlayedCount (ioffset) {
local played = fe.game_info (Info.PlayedCount,ioffset);
if (played != "0") {
return "Played: "+ played + " x";
}
else {
return "Never Played !";
}
}