SEOClerks

I need a "Xbox GamerTag" Script / Mod made or found?



Write the reason you're deleting this FAQ

I need a "Xbox GamerTag" Script / Mod made or found?

I have a Xbox gaming forum (phpBB software) and I want a script / mod so that my members can add their Xbox GamerTag into a field in their profile settings and this fetches their Xbox Gamer Profiles Stats such as their Gamerscore, the amount of achievements they have unlocked, what games they have recently played, etc.. I need a "Xbox GamerTag" Script / Mod made or found? I want these stats to show on their Profiles, under their posts, and some other places around my forum / website.

If anyone can help me out with this by either making one for me for a fee or by telling me where I can get one done / installed, it would be greatly appreciated. Thanks I need a "Xbox GamerTag" Script / Mod made or found?

XboxLiveFan.org

Comments

Please login or sign up to leave a comment

Join
jakemadness
If you know a bit about how to handle Json you could use this API.
[php]
$gamer_tag = 'xXjakemadnessXx';
$data = json_decode(file_get_contents("http://www.xboxleaders.com/api/profile.json?gamertag={$gamer_tag}"), true);
[/php]
And then grab the needed data like below.
[php]
echo 'gamer score - current: ' . $data['gamerscore']['current'];
echo 'gamer score - total: ' . $data['gamerscore']['total'];

echo 'achievements - current: ' . $data['achievements']['current'];
echo 'achievements - total: ' . $data['achievements']['total'];
[/php]



Are you sure you want to delete this post?

Sean101
Would you be up for hire to do some coding on: http://www.xboxlivefan.org/
Are you experienced in php / phpBB and I need some things / mods / scripts that get gaming content, data, info, etc..
I need a "Xbox GamerTag" Script / Mod made or found?



Are you sure you want to delete this post?

jakemadness
I have never worked with phpBB before I need a "Xbox GamerTag" Script / Mod made or found?



Are you sure you want to delete this post?

Sean101
I have never worked with phpBB before I need a "Xbox GamerTag" Script / Mod made or found?

alright, cool, no worries. I need a "Xbox GamerTag" Script / Mod made or found?



Are you sure you want to delete this post?