2011-08-05, 05:14
11.12.2014
So i finally got around to, hopefully, fixing the script; should work fine now... the following skin strings are available:
Download: Script.XBoxLive.Gamercard
XBLGamercard.Gamertag
XBLGamercard.Picture
XBLGamercard.Avatar
XBLGamercard.Score
XBLGamercard.Location
XBLGamercard.Motto
XBLGamercard.Bio
XBLGamercard.RecentlyPlayed.Title.(1-5)
XBLGamercard.RecentlyPlayed.Icon.(1-5)
XBLGamercard.RecentlyPlayed.LastPlayed.(1-5)
XBLGamercard.RecentlyPlayed.EarnedGamerscore.(1-5)
XBLGamercard.RecentlyPlayed.AvailableGamerscore.(1-5)
XBLGamercard.RecentlyPlayed.EarnedAchievements.(1-5)
XBLGamercard.RecentlyPlayed.AvailableAchievements.(1-5)
XBLGamercard.RecentlyPlayed.PercentageComplete.(1-5)
XBLGamercard.LastUpdated
Do let me know if any issues arise; thanks!
=================================
I got the opportunity to modifying the script to work with the latest xbmc nightly. To make it easier for those of you that want to add this in your mods, i've created a sample that works as of 5 minutes ago (14:04 - 09.17.2011). I used Hitcher's foundation and changed the home.xml and added a folder labeled "extras", which is where the "xbox.gamertag.py" script is located.
VERY IMPORTANT!
This is only a SAMPLE where only the HOME.XML screen is changed, this is NOT a full skin; don't ask me for it, and if you're going to ask a question, please be detailed as I will NOT reply to dumb or short questions/statements such as; "it dont work, what do i do?", "where is the rest of the skin?" or anything remotely close.
You have a problem or a question, be detailed, use pastebin to post debug logs and i will try my best to assist.
For this to work the profile name MUST be the same as your xbox live gamertag or it will not do anything. To update the gamertag info, simply click the avatar channel.
Please look at the home.xml for other details and how the information is called.
AVAILABLE DATA
Gamer-Avatar (image)
Gamer-Picture (image)
Gamer-Score (label)
Games: Recently Played Titles (label)
Games: Recently Played Available Game Score (label)
Games: Recently Played Earned Game Score (label)
Games: Recently Played Available Achievements (label)
Games: Recently Played Earned Achievements (label)
Games: Recently Played Percent Completed (label)
Games: Recently Played Game Icon (image)
ToDo
- games: recently played last played
- zone (underground, etc)
- type (silver, gold)
- rep
SCREENSHOT
good luck!
So i finally got around to, hopefully, fixing the script; should work fine now... the following skin strings are available:
Download: Script.XBoxLive.Gamercard
XBLGamercard.Gamertag
XBLGamercard.Picture
XBLGamercard.Avatar
XBLGamercard.Score
XBLGamercard.Location
XBLGamercard.Motto
XBLGamercard.Bio
XBLGamercard.RecentlyPlayed.Title.(1-5)
XBLGamercard.RecentlyPlayed.Icon.(1-5)
XBLGamercard.RecentlyPlayed.LastPlayed.(1-5)
XBLGamercard.RecentlyPlayed.EarnedGamerscore.(1-5)
XBLGamercard.RecentlyPlayed.AvailableGamerscore.(1-5)
XBLGamercard.RecentlyPlayed.EarnedAchievements.(1-5)
XBLGamercard.RecentlyPlayed.AvailableAchievements.(1-5)
XBLGamercard.RecentlyPlayed.PercentageComplete.(1-5)
XBLGamercard.LastUpdated
Do let me know if any issues arise; thanks!
=================================
I got the opportunity to modifying the script to work with the latest xbmc nightly. To make it easier for those of you that want to add this in your mods, i've created a sample that works as of 5 minutes ago (14:04 - 09.17.2011). I used Hitcher's foundation and changed the home.xml and added a folder labeled "extras", which is where the "xbox.gamertag.py" script is located.
VERY IMPORTANT!
This is only a SAMPLE where only the HOME.XML screen is changed, this is NOT a full skin; don't ask me for it, and if you're going to ask a question, please be detailed as I will NOT reply to dumb or short questions/statements such as; "it dont work, what do i do?", "where is the rest of the skin?" or anything remotely close.
You have a problem or a question, be detailed, use pastebin to post debug logs and i will try my best to assist.
For this to work the profile name MUST be the same as your xbox live gamertag or it will not do anything. To update the gamertag info, simply click the avatar channel.
Please look at the home.xml for other details and how the information is called.
AVAILABLE DATA
Gamer-Avatar (image)
PHP Code:
<texture>$INFO[Skin.String(XBoxLive.Gamer.Avatar)]</texture>
PHP Code:
<texture>$INFO[Skin.String(XBoxLive.Gamer.Picture)]</texture>
PHP Code:
<label fallback="0">$INFO[Skin.String(XboxLive.Gamer.Score)]</label>
PHP Code:
// where x is the index of the game (0 - 4)
<label>$INFO[Skin.String(XboxLive.Gamer.RecentlyPlayed.Title(x))]</label>
PHP Code:
// where x is the index of the game (0 - 4)
<label>$INFO[Skin.String(XboxLive.Gamer.RecentlyPlayed.AvailableGamescore(x))]</label>
PHP Code:
// where x is the index of the game (0 - 4)
<label>$INFO[Skin.String(XboxLive.Gamer.RecentlyPlayed.EarnedGamescore(x))]</label>
PHP Code:
// where x is the index of the game (0 - 4)
<label>$INFO[Skin.String(XboxLive.Gamer.RecentlyPlayed.AvailableAchievements(x))]</label>
PHP Code:
// where x is the index of the game (0 - 4)
<label>$INFO[Skin.String(XboxLive.Gamer.RecentlyPlayed.EarnedAchievements(x))]</label>
PHP Code:
// where x is the index of the game (0 - 4)
<label>$INFO[Skin.String(XboxLive.Gamer.RecentlyPlayed.PercentComplete(x))]</label>
PHP Code:
// where x is the index of the game (0 - 4)
<texture>$INFO[Skin.String(XboxLive.Gamer.RecentlyPlayed.Icon(x))]</texture>
ToDo
- games: recently played last played
- zone (underground, etc)
- type (silver, gold)
- rep
SCREENSHOT
good luck!