Greasy Fork is available in English.

Neverwinter Gateway - Professions Robot

Automatically selects professions for empty slots

< Spätná väzba na Neverwinter Gateway - Professions Robot

Otázka/komentár

§
Pridaný: 22.08.2014

Summer event professions

can someone please help add the summer profession?
thanks in advance

{
//Midsummer Provisioning
taskName:"SummerEvent",
level: {
3:["Event_Summer_Tier3_Sunite_Altar","Event_Summer_Tier2_Summerfeast","Event_Summer_Tier1_Caprese","Event_Summer_Tier1_Cornchowder","Event_Summer_Tier1_Watermelonsorbet"],
},
},

and

charSettings.push({name: 'SummerEvent'+i, title: 'Summer', def: '0', type:'text', tooltip:'Number of slots to assign to Summer'});

or use this command in console to find the task names, example:

var tasks = client.dataModel.model.craftinglist['craft_SummerEvent'].entries.filter(function(entry) {
return entry.def && entry.def.displayname == "Make Sunite Pants";
});
tasks[0].def.name;

§
Pridaný: 25.08.2014

thanks a lot. especially for the command since i can find out the new ones they added.

§
Pridaný: 18.09.2014

ok i have a question. tried to add new event with that command but i couldnt. how do i find out the name of the craft_event ? the other part of the task display name is easier. but please explain how to find out future event names

§
Pridaný: 20.09.2014

..first click in the gateway on the new profession(s) to get them loaded;
then just use

client.dataModel.model.craftinglist

and you're getting an output like

Object { craft_Leadership: Object, craft_Event_Siege: Object, craft_BlackIce: Object }

- those are the profession names in general;

To find out the name to be used, either check just the URI bar of your browser, eg

"http://gateway.playneverwinter.com/.../professions-tasks/Event_Siege"

(that's also my preferred way to get the task name for a specific task: ".../professions-tasks/Event_Siege/Event_Siege_Tier1_Donate_Altar_10" - just click on Details of the task in question...)
or inspect the displayname of the profession in question

client.dataModel.model.craftinglist['craft_Event_Siege'].displayname

-> "@Message[Itemassignmentcategories.Event_Siege]"

§
Pridaný: 21.09.2014

thanks a lot

Pridať odpoveď

Aby ste mohli pridať odpoveď, prihláste sa.