Added rdsp.py script
This commit is contained in:
parent
2def5bb209
commit
c65832d21b
12
scripts/python/rdsp.py
Normal file
12
scripts/python/rdsp.py
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# Random Spaces Weechat Script - Developed by Acidvegas in Python (https://git.acid.vegas/weechat)
|
||||||
|
|
||||||
|
import weechat
|
||||||
|
import random
|
||||||
|
|
||||||
|
def cmd_rdsp(data, buf, args):
|
||||||
|
num_spaces = random.randint(1, 100)
|
||||||
|
weechat.command(buf, '/input send \x03' + ' '*num_spaces + args)
|
||||||
|
return weechat.WEECHAT_RC_OK
|
||||||
|
|
||||||
|
if weechat.register('rdsp', 'acidvegas', '1.0', 'ISC', 'prefix a message with random spaces', '', ''):
|
||||||
|
weechat.hook_command('rdsp', 'Generate random spaces', '', '', '', 'cmd_rdsp', '')
|
Loading…
Reference in New Issue
Block a user