Mercurial > traipse_dev
annotate plugins/xxsmiley.py @ 146:6cc9dd8ebcd4 beta
Traipse Beta 'OpenRPG' {091123-03}
Traipse is a distribution of OpenRPG that is designed to be easy to setup and go.
Traipse also makes it easy for developers to work on code without fear of
sacrifice. 'Ornery-Orc' continues the trend of 'Grumpy' and adds fixes to the
code. 'Ornery-Orc's main goal is to offer more advanced features and enhance the
productivity of the user.
Update Summary (Beta)
Added Bookmarks
Fix to Remote Admin Commands
Minor fix to text based Server
Fix to Pretty Print, from Core
Fix to Splitter Nodes not being created
Fix to massive amounts of images loading, from Core
Added 'boot' command to remote admin
Added confirmation window for sent nodes
Minor changes to allow for portability to an OpenSUSE linux OS
Miniatures Layer pop up box allows users to turn off Mini labels, from FlexiRPG
Zoom Mouse plugin added
Images added to Plugin UI
Switching to Element Tree
Map efficiency, from FlexiRPG
Added Status Bar to Update Manager
default_manifest.xml renamed to default_upmana.xml
Cleaner clode for saved repositories
New TrueDebug Class in orpg_log (See documentation for usage)
Mercurial's hgweb folder is ported to upmana
Pretty important update that can help remove thousands of dead children from your
gametree.
Children, <forms />, <group_atts />, <horizontal />, <cols />, <rows />, <height
/>, etc... are all tags now. Check your gametree and look for dead children!!
New Gametree Recursion method, mapping, and context sensitivity. !Infinite Loops
return error instead of freezing the software!
New Syntax added for custom PC sheets
Tip of the Day added, from Core and community
Fixed Whiteboard ID to prevent random line or text deleting. Modified ID's to
prevent non updated clients from ruining the fix.
author | sirebral |
---|---|
date | Mon, 23 Nov 2009 20:02:35 -0600 |
parents | c54768cffbd4 |
children |
rev | line source |
---|---|
0
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
1 import os |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
2 import orpg.pluginhandler |
66 | 3 from orpg.dirpath import dir_struct |
0
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
4 |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
5 class Plugin(orpg.pluginhandler.PluginHandler): |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
6 # Initialization subroutine. |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
7 # |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
8 # !self : instance of self |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
9 # !chat : instance of the chat window to write to |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
10 def __init__(self, plugindb, parent): |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
11 orpg.pluginhandler.PluginHandler.__init__(self, plugindb, parent) |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
12 |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
13 # The Following code should be edited to contain the proper information |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
14 self.name = 'Smilies!' |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
15 self.author = 'mDuo13' |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
16 self.help = "This plugin turns text smilies like >=) or :D into images. There are 15\n" |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
17 self.help += "images. Also, you can type '/smiley' to get a list of what emoticons are\n" |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
18 self.help += "converted to what images." |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
19 |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
20 self.smileylist = {} |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
21 |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
22 def plugin_enabled(self): |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
23 #This is where you set any variables that need to be initalized when your plugin starts |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
24 |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
25 self.plugin_addcommand('/smiley', self.on_smiley, '- [add|remove|help] The Smiley command') |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
26 |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
27 smlist = { |
66 | 28 '>:-(' : ' <img src="' + dir_struct['plugins'] + 'images/smiley7.gif" /> ', |
29 ':/' : ' <img src="' + dir_struct['plugins'] + 'images/smiley5.gif" /> ', | |
30 ':|' : ' <img src="' + dir_struct['plugins'] + 'images/smiley6.gif" /> ', | |
31 ':(' : ' <img src="' + dir_struct['plugins'] + 'images/smiley9.gif" /> ', | |
32 ' />:(' : ' <img src="' + dir_struct['plugins'] + 'images/smiley7.gif" /> ', | |
33 ' />=(' : ' <img src="' + dir_struct['plugins'] + 'images/smiley7.gif" /> ', | |
34 '=)' : ' <img src="' + dir_struct['plugins'] + 'images/smiley0.gif" /> ', | |
35 '=D' : ' <img src="' + dir_struct['plugins'] + 'images/smiley1.gif" /> ', | |
36 ';)' : ' <img src="' + dir_struct['plugins'] + 'images/smiley3.gif" /> ', | |
37 '=/' : ' <img src="' + dir_struct['plugins'] + 'images/smiley5.gif" /> ', | |
38 '=|' : ' <img src="' + dir_struct['plugins'] + 'images/smiley6.gif" /> ', | |
39 '=(' : ' <img src="' + dir_struct['plugins'] + 'images/smiley9.gif" /> ', | |
40 ':)' : ' <img src="' + dir_struct['plugins'] + 'images/smiley0.gif" /> ', | |
41 ':D' : ' <img src="' + dir_struct['plugins'] + 'images/smiley1.gif" /> ', | |
42 'B)' : ' <img src="' + dir_struct['plugins'] + 'images/smiley2.gif" /> ', | |
43 ':p' : ' <img src="' + dir_struct['plugins'] + 'images/smiley4.gif" /> ', | |
44 '=\\' : ' <img src="' + dir_struct['plugins'] + 'images/smiley5.gif" /> ', | |
45 ':P' : ' <img src="' + dir_struct['plugins'] + 'images/smiley4.gif" /> ', | |
46 '=P' : ' <img src="' + dir_struct['plugins'] + 'images/smiley4.gif" /> ', | |
47 '^_^' : ' <img src="' + dir_struct['plugins'] + 'images/smiley12.gif" /> ', | |
48 '^-^' : ' <img src="' + dir_struct['plugins'] + 'images/smiley12.gif" /> ', | |
49 '^.^' : ' <img src="' + dir_struct['plugins'] + 'images/smiley12.gif" /> ', | |
50 'n_n' : ' <img src="' + dir_struct['plugins'] + 'images/smiley12.gif" /> ', | |
51 'n.n' : ' <img src="' + dir_struct['plugins'] + 'images/smiley12.gif" /> ', | |
52 'n,n' : ' <img src="' + dir_struct['plugins'] + 'images/smiley12.gif" /> ', | |
53 'I-)' : ' <img src="' + dir_struct['plugins'] + 'images/smiley13.gif" /> ', | |
54 'n.n;' : ' <img src="' + dir_struct['plugins'] + 'images/smiley14.gif" /> ', | |
55 'n.n;;' : ' <img src="' + dir_struct['plugins'] + 'images/smiley14.gif" /> ', | |
56 'n_n;' : ' <img src="' + dir_struct['plugins'] + 'images/smiley14.gif" /> ', | |
57 ':-)' : ' <img src="' + dir_struct['plugins'] + 'images/smiley0.gif" /> ', | |
58 ':-D' : ' <img src="' + dir_struct['plugins'] + 'images/smiley1.gif" /> ', | |
59 ':-P' : ' <img src="' + dir_struct['plugins'] + 'images/smiley2.gif" /> ', | |
60 ':-p' : ' <img src="' + dir_struct['plugins'] + 'images/smiley4.gif" /> ', | |
61 ':-/' : ' <img src="' + dir_struct['plugins'] + 'images/smiley5.gif" /> ', | |
62 ':-|' : ' <img src="' + dir_struct['plugins'] + 'images/smiley6.gif" /> ', | |
63 ':-(' : ' <img src="' + dir_struct['plugins'] + 'images/smiley9.gif" /> ', | |
64 ':-\\' : ' <img src="' + dir_struct['plugins'] + 'images/smiley5.gif" /> ', | |
65 '-)' : ' <img src="' + dir_struct['plugins'] + 'images/icon_smile.gif" /> ', | |
66 ';-)' : ' <img src="' + dir_struct['plugins'] + 'images/icon_wink.gif" /> ', | |
67 ':->' : ' <img src="' + dir_struct['plugins'] + 'images/icon_smile2.gif" /> ', | |
68 ':-D' : ' <img src="' + dir_struct['plugins'] + 'images/icon_biggrin.gif" /> ', | |
69 ':-P' : ' <img src="' + dir_struct['plugins'] + 'images/icon_razz.gif" /> ', | |
70 ':-o' : ' <img src="' + dir_struct['plugins'] + 'images/icon_surprised.gif" /> ', | |
71 ':mrgreen:' : ' <img src="' + dir_struct['plugins'] + 'images/icon_mrgreen.gif" /> ', | |
72 ':lol:' : ' <img src="' + dir_struct['plugins'] + 'images/icon_lol.gif" /> ', | |
73 ':-(' : ' <img src="' + dir_struct['plugins'] + 'images/icon_sad.gif" /> ', | |
74 ':-|' : ' <img src="' + dir_struct['plugins'] + 'images/icon_neutral.gif" /> ', | |
75 ':-?' : ' <img src="' + dir_struct['plugins'] + 'images/icon_confused.gif" /> ', | |
76 ':-x' : ' <img src="' + dir_struct['plugins'] + 'images/icon_mad.gif" /> ', | |
77 ':shock:' : ' <img src="' + dir_struct['plugins'] + 'images/icon_eek.gif" /> ', | |
78 ':cry:' : ' <img src="' + dir_struct['plugins'] + 'images/icon_cry.gif" /> ', | |
79 ';_;' : ' <img src="' + dir_struct['plugins'] + 'images/icon_cry.gif" /> ', | |
80 ':oops:' : ' <img src="' + dir_struct['plugins'] + 'images/icon_redface.gif" /> ', | |
81 '8-)' : ' <img src="' + dir_struct['plugins'] + 'images/icon_cool.gif" /> ', | |
82 ':evil:' : ' <img src="' + dir_struct['plugins'] + 'images/icon_evil.gif" /> ', | |
83 ':twisted:' : ' <img src="' + dir_struct['plugins'] + 'images/icon_twisted.gif" /> ', | |
84 ':roll:' : ' <img src="' + dir_struct['plugins'] + 'images/icon_rolleyes.gif" /> ', | |
85 ':!:' : ' <img src="' + dir_struct['plugins'] + 'images/icon_exclaim.gif" /> ', | |
86 ':?:' : ' <img src="' + dir_struct['plugins'] + 'images/icon_question.gif" /> ', | |
87 ':idea:' : ' <img src="' + dir_struct['plugins'] + 'images/icon_idea.gif" /> ', | |
88 ':arrow:' : ' <img src="' + dir_struct['plugins'] + 'images/icon_arrow.gif" /> ', | |
89 ':ubergeek:' : ' <img src="' + dir_struct['plugins'] + 'images/icon_e_ugeek.gif" /> ', | |
90 ':geek:' : ' <img src="' + dir_struct['plugins'] + 'images/icon_e_geek.gif" /> ', | |
91 ':fairy:' : ' <img src="' + dir_struct['plugins'] + 'images/fairy.gif" /> ', | |
92 ':hood:' : ' <img src="' + dir_struct['plugins'] + 'images/hood.gif" /> ', | |
93 ':gnome:' : ' <img src="' + dir_struct['plugins'] + 'images/gnome.gif" /> ', | |
94 ':link:' : ' <img src="' + dir_struct['plugins'] + 'images/link.gif" /> ', | |
95 ':mummy:' : ' <img src="' + dir_struct['plugins'] + 'images/mummy.gif" /> ', | |
96 ':ogre:' : ' <img src="' + dir_struct['plugins'] + 'images/ogre.gif" /> ', | |
97 ':medusa:' : ' <img src="' + dir_struct['plugins'] + 'images/medusa.gif" /> ', | |
98 ':mimic:' : ' <img src="' + dir_struct['plugins'] + 'images/mimic.gif" /> ', | |
99 ':skull:' : ' <img src="' + dir_struct['plugins'] + 'images/skull.gif" /> ', | |
100 ':zombie:' : ' <img src="' + dir_struct['plugins'] + 'images/zombie.gif" /> ', | |
101 ':chocobo:' : ' <img src="' + dir_struct['plugins'] + 'images/chocobo.gif" /> ', | |
102 ':darkside:' : ' <img src="' + dir_struct['plugins'] + 'images/darkside.gif" /> ', | |
103 ':flyingspaghetti:' : ' <img src="' + dir_struct['plugins'] + 'images/flyingspaghetti.gif" /> ', | |
104 ':rupee:' : ' <img src="' + dir_struct['plugins'] + 'images/rupee.gif" /> ', | |
105 ':ros:' : ' <img src="' + dir_struct['plugins'] + 'images/ros.gif" /> ', | |
106 ':skeleton:' : ' <img src="' + dir_struct['plugins'] + 'images/skeleton.gif" /> ', | |
107 ':samurai:' : ' <img src="' + dir_struct['plugins'] + 'images/samurai.gif" /> '} | |
0
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
108 |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
109 self.smileylist = self.plugindb.GetDict("xxsmiley", "smileylist", smlist) |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
110 |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
111 def plugin_disabled(self): |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
112 #Here you need to remove any commands you added, and anything else you want to happen when you disable the plugin |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
113 #such as closing windows created by the plugin |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
114 |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
115 self.plugin_removecmd('/smiley') |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
116 self.plugindb.SetDict("xxsmiley", "smileylist", self.smileylist) |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
117 |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
118 def on_smiley(self, cmdargs): |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
119 #this is just an example function for a command you create create your own |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
120 if not len(cmdargs): |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
121 self.chat.InfoPost("Available Smilies:") |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
122 the_list = ' <table border="1">' |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
123 for key in self.smileylist.keys(): |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
124 the_list += ' <tr><td>' + key + ' </td><td>' + self.smileylist[key] + ' </td></tr>' |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
125 the_list += "</table>" |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
126 self.chat.InfoPost(the_list) |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
127 return |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
128 |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
129 args = cmdargs.split(None, -1) |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
130 |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
131 if args[0] == 'add' and len(args) == 3: |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
132 if args[2].find('http') > -1: |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
133 self.smileylist[args[1]] = ' <img src="' + args[2] + '" alt="' + args[1] + '" />' |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
134 else: |
66 | 135 self.smileylist[args[1]] = ' <img src="' + dir_struct["plugins"] + 'images/' + args[2] + '" />' + "\n" |
0
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
136 |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
137 self.chat.InfoPost('Added ' + args[1] + '    :    ' + self.smileylist[args[1]]) |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
138 |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
139 elif args[0] == 'remove' and len(args) == 2: |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
140 if self.smileylist.has_key(args[1]): |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
141 del self.smileylist[args[1]] |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
142 self.chat.InfoPost('Removed ' + args[1]) |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
143 else: |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
144 self.chat.InfoPost(args[1] + ' was not a smiley!') |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
145 |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
146 else: |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
147 self.chat.InfoPost('/smiley - Lists all avaliable smilies') |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
148 self.chat.InfoPost('/smiley add {smiley} {imagefile} - Add a smily to the list. The {smiley} can be any string of text that does not contain a space. The {imagefile} should be an image in the openrpg/plugins/images directory') |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
149 self.chat.InfoPost('/smiley remove {smiley} - Remove {smiley} from the list') |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
150 |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
151 self.plugindb.SetDict("xxsmiley", "smileylist", self.smileylist) |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
152 |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
153 def doSmiley(self, text): |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
154 for key, value in self.smileylist.iteritems(): |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
155 text = text.replace(key, value) |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
156 |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
157 return text |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
158 |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
159 def plugin_incoming_msg(self, text, type, name, player): |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
160 text = self.doSmiley(text) |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
161 |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
162 return text, type, name |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
163 |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
164 def post_msg(self, text, myself): |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
165 if myself: |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
166 text = self.doSmiley(text) |
4385a7d0efd1
Deleted and repushed it with the 'grumpy-goblin' branch. I forgot a y
sirebral
parents:
diff
changeset
|
167 |
66 | 168 return text |