Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

多人局BUG

A topic by willowBySword created Jun 06, 2024 Views: 111 Replies: 5
Viewing posts 1 to 5

第一:多人局时,增加1张遭遇卡的图标,应该只给起始玩家加1张,而不是所有玩家都1张;

第二:多人局时,marvel-lcg-v0.5.7.18这个版本请求(ask)其他玩家协防的时候,防御不起效果。 

第三:多人局时,摸到其他玩家 的重担卡时,不是交给其他玩家处理,如是否选择翻第二身份,是否横置以移除重担,现在是谁翻开不管是谁的卡,谁选择。

第四 :多人局时,Drax的19007卡牌:Payback,Hero Response (attack): After the villain attacks you, deal X damage to the villain, where X is equal to your ATK. 在反派攻击其他玩家时,它也能响应。

第五:如果在launch.json里角色只有一人,如

"player_names": ["captain_america_leadership_ally"],

那么在http://127.0.0.1:2345/scene里就算选择了两个人,也没办法正常开始,http://127.0.0.1:2345/可以连接上,但http://127.0.0.1:2346/无法连接。

如果在launch.json里角色有两个,如 

    "player_names": ["ant_man_Justiciera_v0","captain_america_leadership_ally"],

那么在http://127.0.0.1:2345/scene里配置两个人,就算是换人了,也能正常启用。

Developer (1 edit)

Hi @willowBySword,

Thank you for your detailed bug report. We have successfully reproduced these issues by following your steps.

  1. The additional encounter cards will be dealt in player order, not all players.
  2. We have identified the issue with the 'ASK' function. Ask other players to defend will now work as intended.
  3. For obligations, the player who is given the card will be prompted to make decisions.
  4. We have updated the logic for "After the villain attacks you", "19007" will now only trigger after the villain attacks you, not when the villain attacks other players.

We plan to fix these in the next version. Thank you once again for helping us improve the game!

Developer

Hi @willowBySword,

Regarding bug #5, we are unable to reproduce the issue following your steps.

Please clear your launch.json file and try again. The default launch.json should look like this:

{
    "ip": "127.0.0.1",
    "port": 2345,
    "time_out": 30,
    "image_folders": ["./assets/images/"],
    "sound_folders": ["./assets/sounds/"],
    "//": "Scenario name must matches a file name in the './scenes/scenario/' directory",
    "//": "e.g. zola, ultron, venom_goblin",
    "campaign_name": "rhino",
    "//": "Hero name must matches a file name in the './scenes/heroes/' directory",
    "//": "e.g. spider_man, iron_man",
    "//": "Append another names for multiple player",
    "player_names": ["captain_america"],
    "//": "Engine will try to load this savedate when start",
    "replay": "",
    ",": ""
}

If the issue persists, could you please provide the following:

  1. Your log when you encounter this bug (the log is the output from the marvel-lcg.exe console).
  2. Your launch.json file.

Thank you for your cooperation.

Thank you for your replay.

Thank you for yourreply