[REL] Expansion Pack for Game Dev Tycoon

Which is?

What do you mean with ‘which is?’

The glitch. If I remove those 2 lines of code, which I don’t really know what I will remove, Will I be able to create custom computers?

Yes. You will be able to make them.
Open CC_AddOn.js in a text editor and search for textfill,
remove the part that uses it, and erase the word ‘Cost’ next to it.

So I remove this only "textfill({
            maxFontPixels : 20,
            maxHeightPts : 37
        });
        return cost"
I have put Quotes

remove
".textfill({
maxFontPixels : 20,
maxHeightPts : 37
})" (without semicolon pls.)
and before that there is a part “Cost {0}” or such, replace it with “{0}”

So, the whole thing is that:
    var updateComputerCost = function () {
        var modalContent = $(".simplemodal-data");
        var cost = 1E6;
        cost += getConsoleCosts();
        var value = modalContent.find(".budgetSlider").slider(“value”);
        var qACost = customEase(costSliderEase, 1, MAX_QA_BUDGET / 1E6, value / 100);
        qACost = Math.floor(qACost);
        qACost *= 1E6;
        cost += qACost;
        var costElement = modalContent.find(".windowCostLabel");
        costElement.empty().append($("{0}".format("{0}".localize().format(UI.getShortNumberString(cost)))))    
        ;
        return cost
    };
After removing things

I currently have

var updateComputerCost = function () {
var modalContent = $(".simplemodal-data");
var cost = 1E6;
cost += getConsoleCosts();
var value = modalContent.find(".budgetSlider").slider(“value”);
var qACost = customEase(costSliderEase, 1, MAX_QA_BUDGET / 1E6, value / 100);
qACost = Math.floor(qACost);
qACost *= 1E6;
cost += qACost;
var costElement = modalContent.find(".windowCostLabel");
costElement.empty().append($("{0}".format("{0}".localize().format(UI.getShortNumberString(cost)))));
return cost
};

Weird. Should I copy paste it to my file?

Don’t remove anything without any JavaScript knowledge.

I think what you currently have is good too.

but I have knowledge.

I’ll copy-paste. I’ll save a backup too.

I meant FireChaos lol.

Alright, starting gamedev causes an error. However it’s a small window which doesnt really help to read.

Replace it with this.

Perfect! it works! I can finally follow the path for computers! Thanks!

I hope this will be fixed, so others can play just fine! You’re the best!

You should say what level you would unlock custom computers.

What do you mean?
Do you mean “When does Custom Computers unllock?”