Stand/Server Software/keygen/gen_upgrade_regular_to_ultimate.php

14 lines
305 B
PHP
Raw Permalink Normal View History

2024-10-16 11:20:42 +08:00
<?php
require "common.php";
echo "--- Regular To Ultimate ---\n\n";
for($i = 0; $i < $argv[2]; $i++)
{
$key = generateKey(31);
$db->query("INSERT INTO `upgrades` (`key`, `privilege_from`, `privilege_to`, `note`) VALUES (?, 2, 3, ?)", "ss", $key, $argv[1]);
echo "Stand-Upgrade-$key\n";
}
echo "\n";