Skip to content
This repository has been archived by the owner on Sep 3, 2022. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
Initial project commit
  • Loading branch information
MythicManiac committed Apr 10, 2016
0 parents commit 20c70ac
Show file tree
Hide file tree
Showing 2 changed files with 107 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules
.DS_Store
*.log
*.codekit
*.sublime-*
src/built
101 changes: 101 additions & 0 deletions README.md
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}",
}
]
}
```

0 comments on commit 20c70ac

Please sign in to comment.