function print_r ( t )
local print_r_cache={}
local function sub_print_r(t,indent)
if (print_r_cache[tostring(t)]) then
print(indent…"*"…tostring(t))
else
print_r_cache[tostring(t)]=true
if (type(t)==“table”) then
for pos,val in pairs(t) do
if (type(val)==“table”) then
print(indent…"["…pos…"] => “…tostring(t)…” {")
sub_print_r(val,indent…string.rep(" “,string.len(pos)+8))
print(indent…string.rep(” “,string.len(pos)+6)…”}")
elseif (type(val)==“string”) then
print(indent…"["…pos…’] => “’…val…’”’)
else
print(indent…"["…pos…"] => “…tostring(val))
end
end
else
print(indent…tostring(t))
end
end
end
if (type(t)==“table”) then
print(tostring(t)…” {")
sub_print_r(t," “)
print(”}")
else
sub_print_r(t," ")
end
print()
end
[/lua]
put that function near the top of your program and then inside the event handler do:
print_r(event)
and see what all it’s returning. It may not be response, but result or some other variable.
Ok Rob, I got it to work, but I’m still trying to figure out a way to get the players current position in the leaderboards.
I had figured one way out, but I’ve just read that requesting for the scores in a leaderboard will only retrieve the top 25, which makes my method useless.
I REALLY need a way to do this as we are already past our launch day for one of our games and I’m not being able to find docs about this anywhere.
Many people are asking for enhanced leaderboard functionality. At this point I don’t know what is or is not on the leaderboard. The best thing to do is to go to:
Ok Rob, I got it to work, but I’m still trying to figure out a way to get the players current position in the leaderboards.
I had figured one way out, but I’ve just read that requesting for the scores in a leaderboard will only retrieve the top 25, which makes my method useless.
I REALLY need a way to do this as we are already past our launch day for one of our games and I’m not being able to find docs about this anywhere.
Many people are asking for enhanced leaderboard functionality. At this point I don’t know what is or is not on the leaderboard. The best thing to do is to go to: