Hello again… now Im trying to read some data from database in PlayerIO:
client.BigDB.Load("Shared", "top10", delegate (DatabaseObject result){
print("sth");
if (result != null) {
print("yes");
}
if (result == null) print ("no");
},delegate (PlayerIOError error){
print(error.ToString());
}
);
console doesnt show any errors, but still after that line:
client.BigDB.Load("Shared", "top10", delegate (DatabaseObject result){
script stops
Does anyone know what’s wrong? Im connected to the server!