Skip to content

Instantly share code, notes, and snippets.

@thomasleveil
Created October 30, 2011 17:29
Show Gist options
  • Save thomasleveil/1326153 to your computer and use it in GitHub Desktop.
Save thomasleveil/1326153 to your computer and use it in GitHub Desktop.
BF3 881071 mapList.runNextRound loading next map when there are more rounds to play on current map
> version
['OK', 'BF3', '881071']
> mapList.clear
['OK']
> mapList.list
['OK', '0', '3']
> mapList.add MP_001 SquadRush0 10
['OK']
> mapList.add MP_003 SquadRush0 10
['OK']
> mapList.add MP_011 SquadRush0 10
['OK']
> mapList.list
['OK', '3', '3', 'MP_001', 'SquadRush0', '10', 'MP_003', 'SquadRush0', '10', 'MP_011', 'SquadRush0', '10']
> mapList.setNextMapIndex 0
['OK']
> serverInfo
['OK', 'BigBrotherBot #2 (USA)', '0', '8', 'SquadRush0', 'MP_003', '0', '1', '0', '0', '', 'true', 'true', 'false', '97883', '585']
> mapList.runNextRound
['OK']
> serverInfo
['OK', 'BigBrotherBot #2 (USA)', '0', '8', 'SquadRush0', 'MP_001', '0', '10', '', 'true', 'true', 'false', '97896', '0']
> mapList.runNextRound
['OK']
> serverInfo
['OK', 'BigBrotherBot #2 (USA)', '0', '8', 'SquadRush0', 'MP_001', '1', '10', '0', '0', '', 'true', 'true', 'false', '97908', '1']
> mapList.runNextRound
['OK']
> serverInfo
['OK', 'BigBrotherBot #2 (USA)', '0', '8', 'SquadRush0', 'MP_001', '2', '10', '', 'true', 'true', 'false', '97912', '0']
> mapList.setNextMapIndex 1
['OK']
> mapList.runNextRound
['OK']
> serverInfo
['OK', 'BigBrotherBot #2 (USA)', '0', '8', 'SquadRush0', 'MP_003', '0', '10', '', 'true', 'true', 'false', '97933', '0']
> mapList.runNextRound
['OK']
> serverInfo
['OK', 'BigBrotherBot #2 (USA)', '0', '8', 'SquadRush0', 'MP_003', '1', '10', '', 'true', 'true', 'false', '97946', '0']
> mapList.runNextRound
['OK']
> serverInfo
['OK', 'BigBrotherBot #2 (USA)', '0', '8', 'SquadRush0', 'MP_003', '2', '10', '0', '0', '', 'true', 'true', 'false', '97955', '0']
> mapList.setNextMapIndex 0
['OK']
> mapList.runNextRound
['OK']
> serverInfo
['OK', 'BigBrotherBot #2 (USA)', '0', '8', 'SquadRush0', 'MP_001', '0', '10', '', 'true', 'true', 'false', '97968', '0']
>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment