ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/maps/python/IPO/seen.py
Revision: 1.1.1.1 (vendor branch)
Committed: Sun Feb 5 00:02:09 2006 UTC (18 years, 3 months ago) by root
Content type: text/x-python
Branch: UPSTREAM, MAIN
CVS Tags: post_fixaltar, last_stable, post_fixaltar2, rel-2_82, rel-2_81, rel-2_80, pre_coinconvert, UPSTREAM_2006_03_15, rel-3_0, rel-2_6, rel-2_7, rel-2_4, rel-2_5, rel-2_2, rel-2_0, rel-2_1, rel-2_72, rel-2_73, rel-2_71, rel-2_76, rel-2_77, rel-2_74, rel-2_75, rel-2_54, rel-2_55, rel-2_56, rel-2_79, UPSTREAM_2006_02_01, rel-2_53, pre_material_cfarch_normalize_run, rel-2_32, pre_fixconverter, post_coinconvert, pre_fixaltar2, pre_map_rename, UPSTREAM_2006_02_22, rel-2_90, rel-2_92, rel-2_93, rel-2_78, post_fixconverter, pre_fixaltar, rel-2_61, rel-2_43, rel-2_42, rel-2_41, HEAD
Changes since 1.1: +0 -0 lines
Log Message:
Initial Import

File Contents

# Content
1 # Script for seen event
2 #
3 # Copyright (C) 2002 Joris Bontje
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 #
19 # The author can be reached via e-mail at jbontje@suespammers.org
20 #
21 #Updated to use new path functions in CFPython, and broken into tiny bits by -Todd Mitchell
22 #
23 # seen - tells player information from logger
24
25 import Crossfire
26 import string
27 import CFLog
28
29 activator=Crossfire.WhoIsActivator()
30 activatorname=activator.Name
31 whoami=Crossfire.WhoAmI()
32 isDM=activator.DungeonMaster
33 x=activator.X
34 y=activator.Y
35
36 log = CFLog.CFLog()
37 text = string.split(Crossfire.WhatIsMessage())
38
39 if text[0] == 'seen':
40 if len(text)==2:
41 record = log.info(text[1])
42 if record:
43 if isDM:
44 message = "I have seen '%s' %d times.\nI saw them last coming from\nIP: %s\non %s." % (text[1], int(record['Login_Count']), record['IP'], record['Last_Login_Date'])
45 else:
46 message = "I have seen '%s' %d times.\nI saw them last at %s." % (text[1], int(record['Login_Count']), record['Last_Login_Date'])
47 else:
48 message = "I have never seen '%s'." % text[1]
49 else:
50 message = 'Usage "seen <player>"'
51
52 elif text[0] == 'help' or text[0] == 'yes':
53 if isDM:
54 message = "How can I help you? Here is a quick list of commands:\nseen, info, muzzlecount, lastmuzzle, kickcount, lastkick"
55 else:
56 message = "I have seen just about everybody - go ahead and ask me."
57
58 elif text[0] == 'muzzlecount' and isDM:
59 if len(text)==2:
60 record = log.info(text[1])
61 if record:
62 message = "%s has been muzzled %d times" % (text[1],int(record['Muzzle_Count']))
63 else:
64 message = "I have no knowledge of '%s'." % text[1]
65 else:
66 message = 'Usage "muzzlecount <player>"'
67
68 elif text[0] == 'lastmuzzle' and isDM:
69 if len(text)==2:
70 record = log.info(text[1])
71 if record:
72 message = "%s was last muzzled on %s" % (text[1],record['Last_Muzzle_Date'])
73 else:
74 message = "I have no knowledge of '%s'." % text[1]
75 else:
76 message = 'Usage "muzzlestatus <player>"'
77
78 elif text[0] == 'kickcount' and isDM:
79 if len(text)==2:
80 record = log.info(text[1])
81 if record:
82 message = "%s has been kicked %d times" % (text[1],int(record['Kick_Count']))
83 else:
84 message = "I have no knowledge of '%s'." % text[1]
85 else:
86 message = 'Usage "kickcount <player>"'
87
88 elif text[0] == 'lastkick' and isDM:
89 if len(text)==2:
90 record = log.info(text[1])
91 if record:
92 message = "%s was last kicked out on %s" % (text[1],record['Last_Kick_Date'])
93 else:
94 message = "I have no knowledge of '%s'." % text[1]
95 else:
96 message = 'Usage "lastkick <player>"'
97
98 elif text[0] == 'info' and isDM:
99 if len(text)==2:
100 record = log.info(text[1])
101 if record:
102 message = "%s" % (record)
103 else:
104 message = "I have no knowledge of '%s'." % text[1]
105 else:
106 message = 'Usage "info <player>"'
107 else:
108 message = "Do you need help?"
109
110 whoami.Say(message)
111 Crossfire.SetReturnValue(1)