1
0
www.mikescher.com/www/internals/highscores.php

12 lines
344 B
PHP
Raw Normal View History

2017-11-09 17:43:34 +01:00
<?php if(count(get_included_files()) ==1) exit("Direct access not permitted.");
class Highscores
{
public static function generateChecksum($rand, $player, $playerid, $points, $gamesalt)
{
if ($playerid >= 0)
return md5($rand . $player . $playerid . $points . $gamesalt);
else
return md5($rand . $player . $points . $gamesalt);
}
}