Add: maestro_info

This commit is contained in:
2018-07-19 18:27:11 +09:00
parent 54b8bdb3a2
commit 732c085309
8 changed files with 168 additions and 15 deletions
@@ -0,0 +1,16 @@
<?php
function get_max_player_count($accountType) {
switch($accountType) {
case 1:
return 20;
case 2:
return 50;
case 3:
return 100;
}
return 0;
}
?>