Ah alright I think i got it. Atleast I think, but I don´t understand why this wont return the right thing.

Code:
{"summonerId":19669750,"games":[{"gameId":2008668968,"invalid":false,"gameMode":"CLASSIC","gameType":"MATCHED_GAME","subType":"NORMAL","mapId":11,"teamId":200,"championId":53,"spell1":14,"spell2":4,"level":30,"ipEarned":122,"createDate":1426085938698,"fellowPlayers":
[{"summonerId":27285317,"teamId":100,"championId":92},
{"summonerId":20454275,"teamId":200,"championId":131},
{"summonerId":22733251,"teamId":100,"championId":67},
{"summonerId":29588954,"teamId":200,"championId":222},
{"summonerId":21352251,"teamId":100,"championId":25},
{"summonerId":372146,"teamId":200,"championId":59},
{"summonerId":40872533,"teamId":100,"championId":31},
{"summonerId":27678276,"teamId":200,"championId":103},
{"summonerId":19106723,"teamId":100,"championId":114}],"stats":{"level":18,"goldEarned":14852,"numDeaths":4,"minionsKilled":37,"championsKilled":4,"goldSpent":13820,"totalDamageDealt":48325,"totalDamageTaken":29057,"team":200,"win":true,..."playerPosition":4}},{"gameId":...


I can get the gameId and teamId with no problem. ($json(hisAPI,games,0,teamId) and $json(hisAPI,games,0,gameId) )

but I got a problem that I want to see the "win" I have tried this
Code:
$json(hisAPI,games,0,stats,0,win)


But this displays nothing. It is the first index of games and the first index of stats(or am i wrong?)

Thanks again

edit hisAPI is ofc the json handle

Last edited by sumsar1812; 11/03/15 04:57 PM.