diff options
| author | jason | 2006-07-24 20:39:43 +0000 |
|---|---|---|
| committer | jason | 2006-07-24 20:39:43 +0000 |
| commit | c8a737e7e673db646a35819dab6aa560eea88a53 (patch) | |
| tree | 2ba03a74333ad890260dcac90b1bccf289e4f9d4 /actions/devoice.py | |
| parent | 862840e980954fd86a4dd675a158ec03f52e5d7f (diff) | |
| download | warmachine-c8a737e7e673db646a35819dab6aa560eea88a53.tar.gz warmachine-c8a737e7e673db646a35819dab6aa560eea88a53.zip | |
steve's initial framework
git-svn-id: svn://svn.zzq.org/warmachine/trunk@2 3ede8657-8418-0410-873f-eb3fb5a66eab
Diffstat (limited to 'actions/devoice.py')
| -rw-r--r-- | actions/devoice.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/actions/devoice.py b/actions/devoice.py new file mode 100644 index 0000000..9539634 --- /dev/null +++ b/actions/devoice.py | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | class devoice: | ||
| 2 | |||
| 3 | def __init__(self): | ||
| 4 | self = [] | ||
| 5 | |||
| 6 | def getAction(self, data): | ||
| 7 | input = data.split(' ') | ||
| 8 | return 'MODE ' + input[5] + ' -v ' + input[6] | ||