This commit is contained in:
aozhiwei 2022-08-28 21:13:13 +08:00
parent ffd9faad74
commit 294ccbe97d
5 changed files with 13 additions and 6 deletions

View File

@ -83,9 +83,7 @@ void Android::GiveEquip()
void Android::SetAiLevel(int ai_level)
{
if (ai) {
if (room->GetRoomMode() == kChiJiMode) {
((AndroidAI*)ai)->SetAiLevel(ai_level);
}
((AndroidAI*)ai)->SetAiLevel(ai_level);
}
}

View File

@ -1340,6 +1340,7 @@ void Room::UpdateGasInactivePve()
ClearPostBattleAutoFreeList();
OnBattleStart();
NotifyGameStart();
InitAndroidAI();
}
void Room::UpdateGasWaiting()

View File

@ -23,10 +23,10 @@ def main():
help = "account info")
(options, args) = parser.parse_args()
ws_url = args if args else 'ws://192.168.100.21:7501/websocket'
ws_url = args if args else 'ws://192.168.100.21:7601/websocket?server_id=2'
accounts = options.accounts.split(',')
accounts = []
for i in range(5):
for i in range(1):
accounts.append('test' + str(i))
for account in accounts:
ioloop.IOLoop.current().spawn_callback(createVirtualClient, account, ws_url)

View File

@ -177,7 +177,7 @@ class Simulate(object):
buff = self.getBuffByUniId(entity, pb_buff.buff_uniid)
if buff:
entity.buff_list.remove(buff)
entity.buff_list.append(pb_buff)
#entity.buff_list.append(pb_buff)
def _entityRemoveBuff(self, entity, pb_buff):
buff = self.getBuffByUniId(entity, pb_buff.buff_uniid)

View File

@ -75,6 +75,14 @@ class VirtualClient(object):
msg.server_id = 2
msg.account_id = self.account
#msg.baseskin = 14001
msg.team_uuid = '10000'
msg.show_team_ui = 1
msg.auto_fill = 1
msg.team_mode = 1
member = msg.team_members.add()
member.account_id = self.account
member.rank = 1
msg.pve_instance_id = 10001
self.sendMsg(conn, msg)
def parsePacket(self, conn, recv_buf):