uploading help

Subscribe to uploading help 9 posts

avatar for phore_eyes phore_eyes 427 posts
Flag Post

how would i make it so that you can switch the highscores from variable to variable because when i use different statistics it doesn’t work

 
avatar for phore_eyes phore_eyes 427 posts
Flag Post

any help here

 
avatar for IndieFlashArcade IndieFlashAr... 433 posts
Flag Post

Can you be more specific?

 
avatar for phore_eyes phore_eyes 427 posts
Flag Post

i want to have three different hihg score modes score,time,buttonsclicked

 
avatar for pel6413 pel6413 74 posts
Flag Post

like this:

_root.kongregateServices.connect();
_root.kongregateScores.setMode(“Normal”);
_root.kongregateScores.submit(1000); // Will submit a score of 1000 for normal mode
_root.kongregateScores.setMode(“Hard”);
_root.kongregateScores.submit(500); // Will submit a score of 500 for hard mode

quoted from “High Scores API” it is the first post in the forum!!!

 
avatar for phore_eyes phore_eyes 427 posts
Flag Post

ya but how doi make it say a certain variable not a set score

 
avatar for pel6413 pel6413 74 posts
Flag Post

you mean:
_root.kongregateScores.submit(yourVariable);

 
avatar for Cloud_9ine Cloud_9ine 2448 posts
Flag Post

lets say yer variable needs to be “score”, use

_root.kongregateServices.connect();
_root.kongregateScores.setMode("Normal");
_root.kongregateScores.submit(score); 
_root.kongregateScores.setMode("Hard");
_root.kongregateScores.submit(score);

there

 
avatar for phore_eyes phore_eyes 427 posts
Flag Post

kk thanks