Akhilesh S

Results 8 comments of Akhilesh S

In order to keep up to date with upstream fixes, this needs to be done.

Works on interactive mode, though

The 'inventory' plugin has event listeners that listen to events that occur when windows are opened or closed, and that triggers some callback function. However, the window that shows inventory...

So basically, I'm going to listen for the 'set_slot' event in the SpockControl.py plugin and convert the incoming data (which will have a window_id, slot_nr and slot_data) into a msg....

Oh, also I'm going to check if the window_id of the incoming data is INV_WINID_PLAYER (the inventory plugin sets this to -1, representing player's inventory window), then I'll be sure...

Thanks! Also, could you briefly explain INV_SLOT_NR_CURSOR and INV_WINID_CURSOR?

Thanks! In the messenger plugin's, setMessage() function: ``` def setMessage(self, msg, data): for key in data: if hasattr(msg, key): if isinstance(data[key], dict): pass elif isinstance(data[key], list): pass else: setattr(msg, key,...