Improved Build Queue Mod

DireAussie

Chieftain
Joined
Nov 12, 2005
Messages
60
This is a small mod to improve the build queue functionality until 1) Firaxis makes a better one or 2) someone makes something better.

Instructions: copy to your Documents\My Games\Sid Meier's Civilization 5\MODS directory, then when starting the game, install and enable the mod in the mods menu.

What it does:

- "Show Queue" checkbox is always on, if you change it it wont do anything
- all build screens now act like the add queue screen
- normal click will append to queue
- shift-click will clear entire queue and add the clicked item
- ctrl-click will insert item at beginning of queue
- ctrl-1 to 4 will save a queue
- 1-4 will restore a queue, overwriting current queue
- shift 1-4 will restore a queue, appending items at end of existing queue
- alt 1-4 will restore a queue, inserting items at start of existing queue

Update history

V 6 - updated for version 1.0.0.62

V 5 - ctrl and shift swapped around to bring it more in line with civ 4. However a normal click will still append to the list rather than change what you're currently building.

V 4 - fixed a bug with queuing when clicking "add to queue" from city screen

V 3 - Now comes with queue saving and restoring!!

- ctrl-1 to 4 will save a queue
- 1-4 will restore a queue, overwriting current queue
- shift 1-4 will restore a queue, inserting items at start of existing queue
- alt 1-4 will restore a queue, appending items at end of existing queue
- changed behaviour so build screen wont close automatically if you add 6 items

V 2
- fixed purchase issue.
- in 1.0.0.20 Firaxis changed the productionpopup.lua file to supposedly fix puppet build bug, but it didnt work and instead stops you from being able to continue with the game. My download includes a temporary workaround by removing their buggy fix until they fix the real problem (see thread here.
 

Attachments

  • Improved Build Queues (v 6).civ5mod
    21 KB · Views: 657
Instructions: save the zip file to your "sid meier's civilization v" directory, then unzip to that directory. Overwrite the 2 files CityView.lua and ProductionPopup.lua

Aaahhh...never do that.
There shoudl be somewhere a mods directory in the Civ5 folders, there you should be able to create a folder for your own mod.
But i don't have Civ5, so i can't be more precise, so i hope someone who's more familiar with Civ5 can give you some instructions.

-----
And nice to see that the people already begin to do something :goodjob:.
 
Aaahhh...never do that.
There shoudl be somewhere a mods directory in the Civ5 folders, there you should be able to create a folder for your own mod.
But i don't have Civ5, so i can't be more precise, so i hope someone who's more familiar with Civ5 can give you some instructions.

-----
And nice to see that the people already begin to do something :goodjob:.

There is not, it's all done through My Documents (At least as of this patch/no expansions)
 
There is not, it's all done through My Documents (At least as of this patch/no expansions)

Well, as of now, Valkrionn is taking mod packing requests, you just give him your files and tell him what you want as the name/description/version number/etc so that you won't have to overwrite important files in the Sid Meier's Civilization 5 directory. He'll PM you the files back and you can post them here.

@ The_J
The mod directory is under Documents/My Games/Sid Meier's Civilization 5/MODS
 
Well, as of now, Valkrionn is taking mod packing requests, you just give him your files and tell him what you want as the name/description/version number/etc so that you won't have to overwrite important files in the Sid Meier's Civilization 5 directory. He'll PM you the files back and you can post them here.

@ The_J
The mod directory is under Documents/My Games/Sid Meier's Civilization 5/MODS

.....
 
Aaahhh...never do that

If you know what you're doing it aint a problem..as I said you should back up the original files first. Until they release SDK/modbuddy I can't package it into a mod.
 
If you know what you're doing it aint a problem..as I said you should back up the original files first. Until they release SDK/modbuddy I can't package it into a mod.

Sure you can - just download one of the example mods and look at the format :)



^ all done as a mod, not modifying the game files :)
 
Aaahhh...never do that.
There shoudl be somewhere a mods directory in the Civ5 folders, there you should be able to create a folder for your own mod.
But i don't have Civ5, so i can't be more precise, so i hope someone who's more familiar with Civ5 can give you some instructions.

Seems like mods don't work if you didn't install civ 5 on C:\>

I have neither documents or civ installed on C... so overwriting is the only option for now.
 
I'm happy for you to include it but people might prefer their build queues done a different way! This was my personal preference.

Agree with the incompatibility. Changing the core .lua files and keeping them up to date is a pain - I had to redo the changes to the productionpopup.lua file because the most recent patch included new code to fix the puppet state exploit :(
 
Yeah. Adding new interface elements is quite easy, and you can use new lua files whenever you add things... But tweaking existing code is more problematic.

Just to give a summary of changes I've made thus far:
  • Bonus resources (non-luxury, non-strategic) grant higher yields when improved. This is liable to change, depends on when I get around to implementing something.
  • Building costs reduced by 20%.
  • Tech costs increased by 50%.
  • Wealth process buffed to 25% efficiency.
  • Engineer buffed to 2 hammers.
  • Workshop tile improvement added; 1 hammer, -1 food, +1 hammer with Steam Power, requires flatland, uses Manufactory (engineer improvement) art.
  • Your build queue mod, now.
  • Magus424's LuxuryResourceDisplay, granted he gives permission.

Many more changes planned, and I've got you listed in the 'Special Thanks' field. ;)
 
Hi there.

Any hints on what to do if the game does not recognize the civ5mod file in the proper mod folder?

Could you post the lua files too for me to overwrite? This method at least works for me :D

Thanks in advance,
Dani

Edit: Ok, the first file works, the second file is not being recognized, even when renamed without special characters in the filename. Strange.
 
Found a logic bug in your code (rather, people playing my mod did, and told me about it :lol:). Basically, you are counting purchased items twice.

First: I'm condensing it to just the logic issue, the rest of the code is fine (though I've tweaked somethings in mine, as the queue can be toggled again; Unimportant for this).

Your code:
Code:
if qMode then
    [I]Production Code[/I]    
else
    [I]Production Code[/I]
end 

if not g_IsProductionMode then
    [I]Purchase Code[/I]
end

Since qMode is only true if it is both Append AND ProductionMode (as opposed to purchase), when you buy things this becomes false, and pushes you into the else statement. Unfortunately, that else statement is still meant to be handling production, not purchasing, and it is located PRIOR to the purchase code, meaning it is added to the queue first... Meaning if it is something which requires a resource, you may be unable to buy it because of this bug (your last resource used by the instance placed in the queue).

Corrected code:
Code:
if qMode then
    [I]Queue Code[/I]
elseif gIsProductionMode then
    [I]Production Code[/I]
else
    [I]Purchase Code[/I]
end

As you can see, very small change. Just combined the conditionals. ;)
 
Edit: Ok, the first file works, the second file is not being recognized, even when renamed without special characters in the filename. Strange.

I think that's my fault, forgot to update md5's in the mod info file, civ 5 must check these.
 
Top Bottom