Gives chat tags to players that have building degrees from the bulletin discord
Supported Games
depends on
- Better Chat5.*
To learn what the degree system is and how to apply for one, you can join the bulletin discord server https://discord.com/invite/buildingbulletin
Configuration
{
"Bachelors tag color": "0061EE",
"Masters tag color": "00E3C0",
"PhD tag color": "C914BE",
"Professor tag color": "14E2EC",
"Only show highest degree": true
}
For Developers
The bulletin API is public for any use, and can be accessed with this link http://api.bbontop.com:5001/
The data is sent in json with this format
public class DegreeData
{
public ulong UserID { get; set; }
public List<Degrees> Degrees { get; set; }
}
public enum Degrees
{
Bachelors,
Masters,
PhD,
Professor
}
Example
webrequest.Enqueue("http://api.bbontop.com:5001/", null, (code, response) =>
{
if (code != 200 || response == null)
{
Puts($"Couldn't get an answer from the bulletin API!");
return;
}
var degreeData = JsonConvert.DeserializeObject<List<DegreeData>>(response);
}, this, RequestMethod.GET);
MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

