Greasy Fork is available in English.

Neverwinter gateway - Profession Automation

Automatically selects professions for empty slots

< 脚本Neverwinter gateway - Profession Automation的反馈

提问/评论

Rotten_mind作者
§
发表于:2015-04-03
编辑于:2015-04-03

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

发表回复

登录以发表回复。