summaryrefslogtreecommitdiff
path: root/being.py
diff options
context:
space:
mode:
Diffstat (limited to 'being.py')
-rw-r--r--being.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/being.py b/being.py
index 52a2e1b..e5d0b95 100644
--- a/being.py
+++ b/being.py
@@ -1,3 +1,12 @@
+#!/usr/bin/python
+"""
+ Copyright 2011, Dipesh Amin <yaypunkrock@gmail.com>
+ Copyright 2011, Stefan Beller <stefanbeller@googlemail.com>
+
+ This file is part of tradey, a trading bot in the mana world
+ see www.themanaworld.org
+"""
+
def job_type(job):
if (job <= 25 or (job >= 4001 and job <= 4049)):
return "player"
@@ -28,3 +37,6 @@ class Being:
self.job = job
self.target = 0
self.type = job_type(job)
+
+if __name__ == '__main__':
+ print "Do not run this file directly. Run main.py"