Sid Meier's Civilization VI

Sid Meier's Civilization VI

快速交易
nwilmes 2022 年 12 月 19 日 上午 10:41
Hold Ctrl Key to Add More not working on Mac
Great mod, but this one feature has never worked for me. I've tried all the Mac modifier keys, but no matter what I do, I seem to only be able to add 1 resource at a time by clicking on it.

Anyone able to click to add a bunch of resources at once on MacOS systems?
< >
正在显示第 1 - 3 条,共 3 条留言
gdb.eth 2023 年 4 月 22 日 上午 5:36 
Same for me, very annoying ;(
最后由 gdb.eth 编辑于; 2023 年 4 月 22 日 上午 5:37
MeniliteZ 2024 年 1 月 23 日 下午 12:33 
Click to add the first 1, then click the 1 you added to type in an amount. That's what I do on Mac.
For anyone looking for a solution on Mac, you can alter the mod to accept Option and Shift keys.

  • While the game is not running, open up a terminal window (e.g. iTerm2 or Terminal)
  • Go to the mod's UI directory by running Command 1 below.
  • Then open this Lua file with Command 2 below
  • Near the bottom of the file, replace the original line with the two new lines (again see below)
  • Save. You should now be able to use the Shift or Option key to add 10 at a time.

Command 1:

cd "/Users/$USER/Library/Application Support/Steam/steamapps/workshop/content/289070/2460661464/ui/"

Command 2:

open -a TextEdit qd_popuptab_sale.lua

Original Line:

if pInputStruct:GetKey() == Keys.VK_CONTROL then

New Lines:

local currentKey = pInputStruct:GetKey() if currentKey == Keys.VK_CONTROL or currentKey == Keys.VK_ALT or currentKey == Keys.VK_SHIFT then
最后由 ThePlayerOfGames 编辑于; 3 月 7 日 下午 11:56
< >
正在显示第 1 - 3 条,共 3 条留言
每页显示数: 1530 50