Closed alexrp closed 6 years ago
Sadly I won't implement this. The reason why is that you don't need don't need to do both to play the game. only 1. wich is depending on the client you decide to play with.
But I sure do understand, it's to save user time and not having to create two patches or ticking 2 boxes.
Hello,
I've been writing a few addons to make my life easier whenever a new patch is deployed. One thing that results in a lot of repetition, though, is the fact that I have to write two separate files for the 32-bit and 64-bit client. For example, to disable Nagle in arena for both 32-bit and 64-bit, I need these files:
I'm wondering if a special variable, e.g.
${bits}
, could be introduced, so I could just write a single file like this:When BnS Buddy sees that an addon uses
${bits}
in itsFileName
component, it would know that this addon should be applied to both 32-bit and 64-bit clients. When applying it to the 64-bit client,${bits}
would be replaced with64
, and for the 32-bit client, it would just be replaced with the empty string, so the above would expand toconfig64.dat.files\\system.config2.xml
andconfig.dat.files\\system.config2.xml
.Would this be feasible to implement?