This repository has been archived by the owner on Sep 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial project commit
- Loading branch information
0 parents
commit 20c70ac
Showing
2 changed files
with
107 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
node_modules | ||
.DS_Store | ||
*.log | ||
*.codekit | ||
*.sublime-* | ||
src/built |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# LobyServer | ||
|
||
## GameMode listing | ||
``` | ||
{ | ||
"gameModes": { | ||
"LeagueSandbox-Default": [ | ||
"Dev", | ||
"1.0.2", | ||
"1.0.1", | ||
"1.0.0" | ||
], | ||
"Mythic-Dev": [ | ||
"Dev" | ||
], | ||
"SomeGuy-SomeMode": [ | ||
"0.0.2", | ||
"0.0.1" | ||
] | ||
} | ||
} | ||
``` | ||
|
||
## Input definitions | ||
``` | ||
{ | ||
"hostSettings": [ | ||
{ | ||
"name": "Gold generation rate", | ||
"help": "How much gold is generated per 5 seconds in game", | ||
"field": "text", | ||
"type": "float", | ||
"default": "5" | ||
}, | ||
{ | ||
"name": "Enable gold generation", | ||
"help": "Should gold generation be enabled?", | ||
"field": "checkbox", | ||
"type": "boolean", | ||
"default": "true" //should allow "true" and "false" only | ||
}, | ||
{ | ||
"name": "Lives", | ||
"help": "How many times a player can respawn (-1 for unlimited)", | ||
"field": "text", | ||
"type": "integer" | ||
"default": "-1", | ||
}, | ||
{ | ||
"name": "Damage multiplier", | ||
"help": "Global damage multiplier", | ||
"field": "select", | ||
"type": "integer", | ||
"options": [ | ||
"1x": "1", | ||
"2x": "2", | ||
"4x": "4", | ||
"8x": "8" | ||
] | ||
"default": "1" // index of selected option | ||
}, | ||
{ | ||
"name": "Map", | ||
"help": "The map the game is to be played on", | ||
"field": "mapSelect", | ||
"options": "*" | ||
}, | ||
{ | ||
"name": "Enabled champions", | ||
"help": "Allowed champions", | ||
"field": "championSelectMulti", | ||
"options": "*", | ||
"default": "*", | ||
"binding": "enabled-champions" | ||
}, | ||
{ | ||
"name": "Enabled summoner spells", | ||
"help": "Allowed summoner spells", | ||
"field": "spellSelectMulti", | ||
"options": "*", | ||
"default": "*", | ||
"binding": "enabled-spells" | ||
} | ||
], | ||
"playerSettings": [ | ||
{ | ||
"name": "Champion", | ||
"help": "Champion you want to play", | ||
"field": "championSelect", | ||
"type": "championSelect", | ||
"options": "{enabled-champions}" | ||
}, | ||
{ | ||
"name": "Summoner spells", | ||
"help": "The summoner spells you want to use", | ||
"field": "summonerSpellSelect", | ||
"options": "{enabled-spells}", | ||
} | ||
] | ||
} | ||
``` |