Automatically selects professions for empty slots
< Feedback on Neverwinter gateway - Profession Automation
Train Assets
Gateway is still bugged but RU gateway works...
Train Assets works fine with gateway with english settings, but I think its not working with other languages....
This is original, (not train my assets on RU gateway), it point to "categories" where is different languages (Персона, could be RU)
var failedCrafter = failedAssets.filter(function(entry) { return entry.categories.indexOf("Person") >= 0; });
Switched it point to "icon" where is allways english words and train assets works in RU gateway,
var failedCrafter = failedAssets.filter(function (entry) { return entry.icon.indexOf("Follower") >= 0; });
, just now because gateway is bugged I cant test if it work properly, weird anyway that its still there after all these edits...
Sign in to post a reply.
Train Assets
Gateway is still bugged but RU gateway works...
Train Assets works fine with gateway with english settings, but I think its not working with other languages....
This is original, (not train my assets on RU gateway), it point to "categories" where is different languages (Персона, could be RU)
Switched it point to "icon" where is allways english words and train assets works in RU gateway,
, just now because gateway is bugged I cant test if it work properly, weird anyway that its still there after all these edits...