Kodi Community Forum
[Script] Xbox Live Gamercard - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Skin Archive (https://forum.kodi.tv/forumdisplay.php?fid=179)
+----- Forum: Xperience More (https://forum.kodi.tv/forumdisplay.php?fid=128)
+----- Thread: [Script] Xbox Live Gamercard (/showthread.php?tid=106991)

Pages: 1 2 3


- Kertis - 2011-08-20

Dom DXecutioner, no doubts, i respect the work you done, but before you say something there is two words for your marks:
spell check
i don't made you write step-by-step manual, i'm talking about something common, from anyone can start

binBD, thanks dude, i will


- Dom DXecutioner - 2011-09-17

Script has been updated! Sample has been provided! See first page! For assistance, I kindly ask that you'd be detailed and post debug logs at pastebin!

Thanks!


- k1m0s - 2011-09-18

Cool Dom Thanks, Working fine Smile


- Dom DXecutioner - 2011-09-18

k1m0s Wrote:Cool Dom Thanks, Working fine Smile

Great... It'd be nice to see a screenshot of the gamertag/avatar being used Smile Either way, glad someone can confirm it works.

Thanks!


- k1m0s - 2011-09-18

Image


- Dom DXecutioner - 2011-09-18

kool... interesting avatar; thanks for sharing Big Grin


- beachkid - 2011-09-20

how do i get into my xbox live with this? im confused


- k1m0s - 2011-09-21

Hey dom I added a gamerscore icon to the code rather than the (G), got the icon from http://www.grandtheftwiki.com/images/Gamerscore_icon.png
Code:
            <!-- Label.GamerScore -->
            <control type="label">
                <posy>8</posy>
                <posx>260</posx>
                <width>256</width>
                <height>64</height>
                <label fallback='0' >$INFO[Skin.String(XboxLive.Gamer.Score),, ]</label>
                <align>right</align>
                <textcolor>white</textcolor>
                <font>Small</font>
            </control>
        <!-- Label.GamerScoreIcon -->
        <control type="image">
            <posy>33</posy>
            <posx>256</posx>
            <width>21</width>
            <height>21</height>
            <texture>gamerscore.png</texture>
            <aspectratio>stretch</aspectratio>
        </control>

Been trying to get rid of the [' '] around the gamerscore to have had no luck. This is great Dom enjoying it very much Thank you


- binBD - 2011-09-25

guess im the second person to confirm that it works
it is now in my mod
you may notice the name is missing, i have'nt added the labels yet

Image


- k1m0s - 2011-09-25

Thats cool binBD, Hope to see what others have been doing with it, Heres what I have been working on, still in progress.
Image


- binBD - 2011-09-26

Dom i wanted to know what's the code to show the titles of the recent games

i added 4 items already as you see at the bottom but i want the recent games to pop up automaticly how yours did when you updated your gamertag in this video http://www.youtube.com/watch?v=6hGwyH2eVQ8&feature=related
Image


- Dom DXecutioner - 2011-09-27

beachkid Wrote:how do i get into my xbox live with this? im confused
you can't, if you want to navigate xbox live, i suggest you use your xbox 360; this will only display gamercard info about your gamertag (ie. avatar, picture, gamerscore and recently played data)
k1m0s Wrote:Hey dom I added a gamerscore icon to the code rather than the (G), got the icon from http://www.grandtheftwiki.com/images/Gamerscore_icon.png
Nice and thanks
k1m0s Wrote:Been trying to get rid of the [' '] around the gamerscore to have had no luck. This is great Dom enjoying it very much Thank you
Open the xbox.gamertag.py file; about line #86, replace:
PHP Code:
    GamerScore "" 
with:
PHP Code:
    GamerScore = [] 
Then proceed to about line #129, replace:
PHP Code:
    xebi('XBMC.Skin.SetString(XboxLive.Gamer.Score,' str(GamerScore) + ')'
with:
PHP Code:
    xebi('XBMC.Skin.SetString(XboxLive.Gamer.Score,' str(GamerScore[0]) + ')'
This will take care of that...
binBD Wrote:Dom i wanted to know what's the code to show the titles of the recent games

i added 4 items already as you see at the bottom but i want the recent games to pop up automaticly how yours did when you updated your gamertag in this video http://www.youtube.com/watch?v=6hGwyH2eVQ8&feature=related
Add more items and get the information as described in the first post....


- beachkid - 2011-09-27

the gamercard thats what im talking about


- k1m0s - 2011-09-27

Thanks Dom Smile


- binBD - 2011-09-29

Dom,do you know of a source code or can you create a source that gets the gamertag's friend avatar.png to pop up, the image below should explain why i asked.

Image