Map Picker

thumb
Identhardloop.map_picker
Typelibrary
Created
Updated
Latest Version 31864 28.3 KB ~2 -1
Links s&box
Summary
Description
About Map Picker Easily add a map vote at the end of your game (or whenever you wish) with the map picker library. Supports both user defined map lists, and Asset.Party! Usage Guide public static async Task EndGame() { // Define maps - The background ImageURL is optional. List maps = new List() { new MapPicker.MapInfo(){ Name = "Dust II", Id = "dust2", ImageURL="https://source.unsplash.com/random/200x200?sig=1" }, new MapPicker.MapInfo(){ Name = "Inferno", Id = "inferno" }, new MapPicker.MapInfo(){ Name = "Nuke", Id = "nuke" } }; // Assign user maps. Vote.AddMapsFromList( maps ); // Add maps from asset party. await Vote.AddAssetPartyMapsUsingSearchString( "surf" ); await Vote.AddAssetPartyMapsFromCollectionName( "xenthio.coolmaps" ); // Begin vote when you're ready, providing the time in seconds you wish the vote to run for. // This will display map vote UI on all connected clients. Vote.BeginVote( 10 ); } // Subscribe to completion event to retrieve the map ID that was top voted. [Event( "MapPicker.VoteFinished" )] public void OnVoteFinished( string Id ) { Log.Info( $"MapPicker.VoteFinished: {Id}" ); } Roadmap - Add scrollbar (scroll works, but no scrollbar is visible) - Add optional "Replay" or "Random" buttons. - Add maps on the fly as admin via CMD. - Add "disabled" flag for a map (perhaps they have been recently played, but you still want them shown in list). - Ability to scale vote depending on client ID (useful for VIP, or scaling based on player level). Contribute Check out the source and contribute @ https://github.com/TomYeoman/map-picker
About Map Picker Easily add a map vote at the end of your game (or whenever you wish) with the map picker library. Supports both user defined map lists, and Asset.Party! Usage Guide public static async Task EndGame() { // Define maps - The background ImageURL is optional. List maps = new List() { new MapPicker.MapInfo(){ Name = "Dust II", Id = "dust2", ImageURL="https://source.unsplash.com/random/200x200?sig=1" }, new MapPicker.MapInfo(){ Name = "Inferno", Id = "inferno" }, new MapPicker.MapInfo(){ Name = "Nuke", Id = "nuke" } }; // Assign user maps. Vote.AddMapsFromList( maps ); // Add maps from asset party. await Vote.AddAssetPartyMapsUsingSearchString( "surf" ); await Vote.AddAssetPartyMapsFromCollectionName( "xenthio.coolmaps" ); // Begin vote when you're ready, providing the time in seconds you wish the vote to run for. // This will display map vote UI on all connected clients. Vote.BeginVote( 10 ); } // Subscribe to completion event to retrieve the map ID that was top voted. [Event( "MapPicker.VoteFinished" )] public void OnVoteFinished( string Id ) { Log.Info( $"MapPicker.VoteFinished: {Id}" ); } Roadmap - Add scrollbar (scroll works, but no scrollbar is visible) - Add optional "Replay" or "Random" buttons. - Add maps on the fly as admin via CMD. - Add "disabled" flag for a map (perhaps they have been recently played, but you still want them shown in list). - Ability to scale vote depending on client ID (useful for VIP, or scaling based on player level). Contribute Check out the source and contribute @ https://github.com/TomYeoman/map-picker
Votes 5 0 2
Error Rate0%
Data
{}