diff options
-rwxr-xr-x | client/aurora.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/client/aurora.py b/client/aurora.py index 95f356b..5d54f4c 100755 --- a/client/aurora.py +++ b/client/aurora.py @@ -1,20 +1,24 @@ #!/usr/bin/python2.7 # Setup -events=["Expo", "Fishing", "Kamelot", "Regnum"] +events=["Expo", "Fishing", "Kamelot", "Regnum", + "Anniversary", "Christmas", "Easter", "Patrick", "Thanksgiving", "Valentine", + "Worker"] # Functions def headers(val): return '\n\t<dialog name="aurora_%s" hideText="true">\n\t\t<menu>\n' % val def navigation(): - return '\t\t\t<button x="300" y="20" name="Close" value="Ok" />\n' + nav="" + nav+='\t\t\t<button x="300" y="20" name="Next" value="Ok" />\n' + return nav def tail(): - return '\n\t\t</menu>\n\t</dialog>\n' + return '\t\t</menu>\n\t</dialog>\n' def data(val): - bf='\t\t\t<image x="0" y="0" image="graphics/images/aurora/%s.png" />' % val + bf='\t\t\t<image x="0" y="0" image="graphics/images/aurora/%s.png" />\n' % val return bf # Begin |