mob_data = {
'id': self.mob_id,
'position':"("+ str(self.position.x)+","+str(self.position.y)+","+str(self.position.z)+")",
'rotation':"("+ str(self.rotation.x)+","+str(self.rotation.y)+","+str(self.rotation.z)+")",
'health': self.health
}
message = {
'type': 'mobs_data',
'mobs': mob_data
}
Hello, I'm having an issue and I'm looking for a solution. Essentially, I need to send a message containing information about 12 mobs to the players every hour, with a delay of 0.01 seconds between each message.