Hello,
I have code there with some problem,
Arrange players with numbers and choose any number randomly on (CurrentJob) .
and how can I Set RandomNum with online players ?
Example: if there 8 players random will be between (1,8)
if there 15 random will be between (1,15)
thanks
I have code there with some problem,
CatchEvent OnLapperStart()
GlobalVar $player; $player = 0;
EndCatchEvent
CatchEvent OnConnect( $userName )
CountPlayer();
EndCatchEvent
Sub CountPlayer()
$ListP = getListOfPlayers();
WHILE($ListP[$player] != "" )
$player1 = $ListP[$player];
$player=$player+1;
$rr = round(ToNum(RandomNum(1,2)),0)."";
SetPlayerVar($ListP[ToNum($rr)],"CurrentJob", 4);
privmsg("^1".$player);
ENDWHILE
EndSub
Arrange players with numbers and choose any number randomly on (CurrentJob) .
and how can I Set RandomNum with online players ?
Example: if there 8 players random will be between (1,8)
if there 15 random will be between (1,15)
thanks