summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-05-20 11:53:49 -0300
committerJesusaves <cpntb1@ymail.com>2020-05-20 11:53:49 -0300
commitac23fcb8d059db8e73aff7f4dae83b65af54c472 (patch)
treee4e51b3d20a01cc564ecadee90e54cf6e9af96fd /client
parent50a40b977afe8ef55916a68cec04892b53ecf780 (diff)
downloadtools-ac23fcb8d059db8e73aff7f4dae83b65af54c472.tar.gz
tools-ac23fcb8d059db8e73aff7f4dae83b65af54c472.tar.bz2
tools-ac23fcb8d059db8e73aff7f4dae83b65af54c472.tar.xz
tools-ac23fcb8d059db8e73aff7f4dae83b65af54c472.zip
Update
Diffstat (limited to 'client')
-rwxr-xr-xclient/aurora.py12
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