Add: send mail test

This commit is contained in:
2018-09-18 14:48:05 +09:00
parent ba5336795a
commit 697265ee29
5 changed files with 195 additions and 10 deletions
@@ -0,0 +1,44 @@
<?php
function get_max_player_count($accountType) {
switch($accountType) {
case 0:
case 1:
case 100:
case 101:
return 20;
case 2:
return 50;
case 3:
return 100;
case 4:
return 500;
case 5:
return 1000;
}
return 0;
}
function get_price($accountType) {
switch($accountType) {
case 1:
return "10,000";
case 2:
return "20,000";
case 3:
return "30,000";
case 4:
return "40,000";
case 5:
return "50,000";
}
return 0;
}
?>