Well, i know how to do the Scores but now i need to set a limit there is any way to set it?
-Gohan
ID:273274
![]() Jan 4 2010, 8:41 am
|
|
![]() Jan 4 2010, 8:42 am
|
|
You limit the scores in-game so that scores beyond the limit are never sent to the hub.
|
Ok, how do i set the Limit in game?? Something Like This?
var/maxscores=50 -Gohan |
I'm not sure what you mean by limiting scores, so that's the real question. The code you have here will allow only the first 50 players to update their scores, and then it will stop updating altogether. If you have 11 players it would get through this routine only four full times and fail partway through the fifth. That probably isn't what you want.
Two side notes: In your HTML, avoid putting spaces between an attribute and the value. Use face=tahoma instead of face = tahoma. And for security, in SetScores() and similar procs I recommend not including your hub path and password at all; they will use the correct values by default. Lummox JR |