Add: maestro type 4, 5
This commit is contained in:
@@ -1,4 +1,25 @@
|
||||
function accoutType(accountType) {
|
||||
function accountTypePlayerCount(accountType) {
|
||||
switch(accountType) {
|
||||
case 1:
|
||||
return 20;
|
||||
|
||||
case 2:
|
||||
return 50;
|
||||
|
||||
case 3:
|
||||
return 100;
|
||||
|
||||
case 4:
|
||||
return 500;
|
||||
|
||||
case 5:
|
||||
return 1000;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
function accoutType(accountType) {
|
||||
switch(accountType) {
|
||||
case 1:
|
||||
return "20명 (1만원)";
|
||||
|
||||
Reference in New Issue
Block a user