mirror of
https://github.com/hypervortex/VH-Bombsquad-Modded-Server-Files
synced 2025-11-07 17:36:08 +00:00
12 lines
384 B
Python
12 lines
384 B
Python
import ba
|
|
import ba.internal
|
|
|
|
import setting
|
|
import random
|
|
setti=setting.get_settings_data()
|
|
|
|
def showScoreScreenAnnouncement():
|
|
if setti["ScoreScreenAnnouncement"]["enable"]:
|
|
color=((0+random.random()*1.0),(0+random.random()*1.0),(0+random.random()*1.0))
|
|
msgs = setti["ScoreScreenAnnouncement"]["msg"]
|
|
ba.screenmessage(random.choice(msgs), color = color)
|