Add-on PSN LeaderBoard

I'm glad to announce he actually gave me the exact details and code to do an individuals games and stuff O.O
Alright just gotta work on the port lol
Do you have any news? I am very interested in this to happen. I have a friend of mine who made Trophy Leaderboard for phpBB3 so with that code it can be done very soon.
 
If I were to do this I'd probably start fresh on 1.2
Meaning if I were to completely take this on it would likely be out after the official release of 1.2

Sorry if it's inconvenient to anyone :\

I'm not offended if anyone beats me to this. It's something we all want and need. The EzStats guy is pretty nice! He won't make the add-on but he'll certainly provide you with help/answers if needed.
 
I'm glad to announce he actually gave me the exact details and code to do an individuals games and stuff O.O
Alright just gotta work on the port lol
I am not sure if I got you right here. Did he provide you the code for the PSN Trophy Leaderboard he had on www.psvitaforum.com? Or just a part of it? In what stage it is now? That was 3 months ago. Did you manage to do anything with it? Do you mind to share that info he provided to you?

If I were to do this I'd probably start fresh on 1.2
Meaning if I were to completely take this on it would likely be out after the official release of 1.2

Sorry if it's inconvenient to anyone :\

I'm not offended if anyone beats me to this. It's something we all want and need. The EzStats guy is pretty nice! He won't make the add-on but he'll certainly provide you with help/answers if needed.
I am not sure where is the problem now. You Started to work on this more than a year ago. And with the speed of development leading nowhere so far it can be at least one more year to actually have that leaderboard. I am no coder so have no idea how long it can take to do something like this.

And I am not sure what do you want to wait for. XenForo 1.2 Beta 5 was released which is the release just before the official stable release. Just read the announcement please. I don't think so there would be any changes that could affect the PSN Trophy Leaderboard.

As I said a friend of mine made PSN Trophy Leaderboard for phpBB3 but has no experience with XenForo so far. I have no idead how different it is to code for XenForo and how long it could take to develop (or port it) PSN Trophy Leaderboard for XenForo. So if you could share the details and code it could just speed up the process.

All of you, you can check out the PSN Trophy Leaderboard I have on my site at the moment. It has everything you can ask for I guess. Sorry for not to have in english, but I am sure you can see what is important.

Leaderboard: http://www.ps3mania.sk/safegt.php?action=psn

Games: http://www.ps3mania.sk/safegt.php?action=psngamesdb&sk=t&dk=a

User detail: http://www.ps3mania.sk/safegt.php?action=psnuser&u=180

Users Playing Game: http://www.ps3mania.sk/safegt.php?action=psngames&id=NPWR02322_00

Game Trophies: http://www.ps3mania.sk/safegt.php?action=psn_trophy&u=180&g=NPWR02322_00

Users Earned Trophy: http://www.ps3mania.sk/safegt.php?action=psn_trophydet&g=NPWR02322_00&t=25
 
So your friend owns this site? http://www.nipponart.org/ the script is PSN Safe Gamertag?
I was pretty much new to MVC when I got my XF. If he knows how to code just set-up a sub-account for him here and have him go through the developer's tutorials/examples. That's where I've learned most of my stuff and I've gone a fair distance with it on my limited knowledge. I imagine he'll need to learn how routes and controllers work. He might already be familiar with an MVC.
This is the script I use - http://code.google.com/p/ezstats/

I was going to explain a basic process for getting started, but I'm a noob. Everything he needs to know *or most of it* will be located in the developer's tutorials/questions forums. Just give him an account here and access to your test install. Considering I had zero knowledge of MVC/XenForo and novice/intermediate knowledge of php, and was able to produce some add-ons, then he can probably go much further. Many many people here are helpful, so if he was here it would not be long before he has something to go on.
code provided
Code:
ezStats
Hi!
Yes, it is possible. But therefor you have to do some coding.
First you have to create a new column in the SQL table "player" with name "allGames" and type "longtext".
Then you have to modify the file "classes/player.php". Enter this in line 103:
if (isset($games)) $this->sql->query('UPDATE `'.$this->sql->prefix.'player` SET `allGames` = "'.$this->convert($games).'" WHERE `id` = "'.$playerid.'"');
At last modify the file "index.php" and goto line 152. Replace
$result = $stats->get('player', 'custom1');
with
$result = $stats->get('player', 'allGames');
You can check the content of the variable with print_r($result), and make some action with it.
Don't forget to activate the custom column in the customize menu in the adminpanel of ezStats.
Regards, ezzemm
Any advanced developer could probably get this done within a week or so. Maybe less. I on the other hand have to learn as I go. Check back on what I've done. Remove redundant code. DO things very slow AND that's when I have time to do this. Unfortunately learning to code is not my actual job XD so my life outside of XF comes first and that has been very busy. Any time I'm online I'm spending it being an admin on my 2 sites and then being a moderator on 2 other sites.
The only reason I do any of this is because I am a curious person and I like applying what I learn. I'm also doing it because my sites need it. All the projects I've done are because it's something I needed and someone else wasn't doing it fast enough/or they weren't interested.
 
Thanks for the info. He registered here 1 day ago as @Soshen. The only problem that can happen is that his english is not that good as he is from Italy. Oh and also he is quite busy too I have to unfortunately say. We will see how it will goes. I will tell him to ask in the apropiate forums if he will have any problems as I am no help really. Just bought a license 1 week ago. Love the system, but still not comfortable with all the features and how things work on admin side :) But my fingers are crossed and I really hope for this to be finished until the end of summer.
 
Top Bottom