Neverwinter gateway - Profession Automation

Automatically selects professions for empty slots

< Feedback on Neverwinter gateway - Profession Automation

Question/comment

Rotten_mindPembuat
§
Posted: 03 April 2015
Edited: 03 April 2015

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...

Post reply

Sign in to post a reply.