I tried running a script to respond to individual and group chats, but it only responds to individual chats
import Skype4Py
def commands(Message, Status):
if Status == 'SENT' or Status == 'RECEIVED':
if Message.Body == "ping":
cmd_ping(Message)
else:
pass
else:
pass
def cmd_ping(Message):
Message.Chat.SendMessage('pong')
print "Ping Command Received \n"
skype = Skype4Py.Skype();
skype.OnMessageStatus = commands
skype.Attach();
while True:
raw_input('')
I presume that you have created chat in new version of Skype.
Please try the following solution: create P2P chat (via
/createmoderatedchat
in any group or personal chat). We had the same issue in our project, so you can refer to our wiki page.