Add: send mail test
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user