Showing Posts For xanthic.9478:

API Key isn't listing my inventory

in API Development

Posted by: xanthic.9478

xanthic.9478

I’m using gw2crafts.net and my crafting mats in my inventory aren’t being shown in the already bought list. Am i doing something wrong or is there a problem with the site?

Which inventory? My API request only pulls from bank and storage.

“Clicking the button will update the quantities of all items in your bank and material storage that are used in this guide.”

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

How to get area and merchant names?

in API Development

Posted by: xanthic.9478

xanthic.9478

Thanks. That completely solves the first half.

Hopefully that NPC list can be realized some day. While I’m after localization of names, I’m sure there is a use case for knowing if an NPC is a conditional spawn, their type(heart/generic vendor/etc), and what sector(s) they could appear in.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

How to get area and merchant names?

in API Development

Posted by: xanthic.9478

xanthic.9478

From what I am able to find in the current v2 api I can get:
continent -> region -> map name(In api supported languages)

I would like to be able to go one further to area names, such as
Tyria -> Shiverpeak Mountains -> Snowden Drifts -> Dragon’s Rising (In API supported languages)

Additionally I would like a list of all merchants(vendors) that could be retrieved with the lang flag for localization. Although this request looks like it would be handled by an as yet unreleased vendors endpoint?

Are either of these things available in the current API and I am missing them?

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Determining correct recipe/item id?

in API Development

Posted by: xanthic.9478

xanthic.9478

They are both valid, you can/could get both items in game. I don’t know what your script is supposed to do, but why not show all items unlocking a recipe?

I’m currently rewriting the code that generates gw2crafts.net and attempting to make as much of it as possible automated(for if/when anet updates recipes). This is post was probably more of a sanity check than anything as the api still lists recipes for things that were removed from the game(such as wooden sword) and recipe sheets that are unneeded(such as ascalon herb dressing or w/e and some meat plate that can be discovered if you don’t use the recipe) so I was just making sure that this is intentional behaviour without anything that I am missing.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Determining correct recipe/item id?

in API Development

Posted by: xanthic.9478

xanthic.9478

If you grab the entire items endpoint there are a few items that have the same name/details:recipe_id etc. How am I supposed to know which entry is valid/correct?

EG “Recipe: Strawberry Ghost” (recipe id 6474) is used by two difference instances of the “Recipe: Strawberry Ghost” item.

https://api.guildwars2.com/v2/items?id=36102 (appears on TP)
https://api.guildwars2.com/v2/items?id=36120 (Account bound/etc, does not appear on TP)

And the recipe entry does not indicate which one is the correct one:
https://api.guildwars2.com/v2/recipes/6474

Are both entries ‘valid’? And then I should just code my recipe parser to choose the one that is least restricted?

Specific Recipe IDs that appear on more than 1 items:
Dupe item 6472.
Dupe item 6474.
Dupe item 6475.
Dupe item 7287.
Dupe item 7288.
Dupe item 7293.
Dupe item 7294.
Dupe item 7290.
Dupe item 7291.
Dupe item 11809.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

API Scribes and update old craft

in API Development

Posted by: xanthic.9478

xanthic.9478

Whenever output_upgrade_id is present, output_item_id is not used.

Thanks for the followup.

https://api.guildwars2.com/v2/guild/upgrades/352 A vendor item that goes immediately into the guild inventory with an item_id on its page that is valid for the items endpoint

https://api.guildwars2.com/v2/guild/upgrades/291 a crafted item that differs only in where it enters the guild inventory from that does not have an item_id on its page (although the recipe that creates it lists one)

I realize you are talking about recipes, so this discrepant behaviour doesn’t apply. However needing to juggle two item lists(because they have overlapping id numbers so they can’t be merged) just to get all the relevant item names(in multiple languages) is too expensive for me(in terms of development time). If the item_id on the recipe page is “invalid” anyways(as in it is superseded by output_upgrade_id) and won’t be added to the items endpoint, it would be nice if it was removed outright (from that recipe) or the items endpoint gave a useful error message.

Either way I’ll leave it to someone else to created automated scribe guides.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

API Scribes and update old craft

in API Development

Posted by: xanthic.9478

xanthic.9478

Actually, there are gaps that break things for me.

This recipe creates an item http://api.guildwars2.com/v2/recipes.json?ids=10510

This item “doesn’t exist” in https://api.guildwars2.com/v2/items.json?ids=76707

But it exists in https://api.guildwars2.com/v2/guild/upgrades/291

What is the intended behaviour here? Should I be able to find item ids that don’t exist in the items endpoint that map to an item that actually exists and would have that id if it was in the items endpoint?

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

(edited by xanthic.9478)

API Scribes and update old craft

in API Development

Posted by: xanthic.9478

xanthic.9478

To the best of my knowledge there are not gaps in my guides related to items missing from the API. My current issue is items that exist as non-TP-able items, such as Crystalline Vials, that need to be manually added on my end.

http://gw2crafts.net/scribe.html (for current status)

I haven’t had the time until today(since the introduction of scribe) to do the context switch necessary to track down issues.

[edit] Actually I have a problem with how “guild_ingredients” were added to recipes as well. Now I need to create a lookup table so I can find the item_id from an upgrade_id. Having to check for this new field and not having the item_id of the guild ingredient in the “ingredients” section is >.> as it also means the recipe list needs to be processed at least twice.

[edit2] nm looks like there is an item id on things that have them https://api.guildwars2.com/v2/guild/upgrades/352 that I can work backwards from.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

(edited by xanthic.9478)

New Scribe discipline in API:2/Characters

in API Development

Posted by: xanthic.9478

xanthic.9478

Are the recipes for this profession(scribe) hooked up anywhere yet?

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

API errors & bugs

in API Development

Posted by: xanthic.9478

xanthic.9478

Whatever these new patch items are (EG id 71225) they are not hooked up to the API.

https://api.guildwars2.com/v2/items/71225 (currently returns {"text":“no such id”} )

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

API errors & bugs

in API Development

Posted by: xanthic.9478

xanthic.9478

Some items are now appearing with “/n” (newline) as part of their name. Specific examples being:
https://api.guildwars2.com/v2/items/24863?lang=de
https://api.guildwars2.com/v2/items/24864?lang=de
https://api.guildwars2.com/v2/items/24865?lang=de

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Item IDs Omitted from API?

in API Development

Posted by: xanthic.9478

xanthic.9478

Not sure how feasible it is, but a vendor endpoint is definitely on the backlog.

That would be most welcome. Was trying to correct recipe names recently for my guides(to remove some confusion) and realized all the account bound ones were missing.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

v2 item_details and recipe_details?

in API Development

Posted by: xanthic.9478

xanthic.9478

Currently the only way to find and update changed items is to retrieve the info for each and every item over and over. So the only advantage of v2 will be the bulk request which may speed up this process (which currently takes about a day).

The bottleneck here at the moment is the completion of the request. If you thread your requests it goes significantly faster. The script that builds the recipe list for my website grabs every individual recipe(num_recipes/10_x_num_procs at a time), and (currently 7228) craftable item details in 4 languages. And completes in about 3-5 minutes depending on network traffic.

https://github.com/xanthics/gw2craft/blob/master/Create_recipes.py

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

why so hard to reach 500 in a profession?

in Crafting

Posted by: xanthic.9478

xanthic.9478

Buy the recipe:
http://www.gw2tp.com/item/38297-recipe-givers-orichalcum-imbued-inscription (3 copper at the time of this post)

Not the item:
http://www.gw2tp.com/item/38434-givers-orichalcum-imbued-inscription (7gold at the time of this post)

It’s even in the recipe section and has an additional hint to buy the recipe.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Crafting Booster doesn't affect discovery?

in Crafting

Posted by: xanthic.9478

xanthic.9478

Discoveries are always critical, so having a higher crit chance on crafting (such as the booster gives) has no effect on discoveries.

Wrong. These are all the sources of bonus experience on a craft, and they are additive.

Masterwork + 100%
Rare + 225%
Discovery + 100%
Critical + 50%

A discovery will double the experience from an exotic craft, aka give you 200% cxp, while an exotic discovery that criticals will give you 250% cxp, or 25% more // + 50%. A discovery of a rare item will give you (100+225+100) 425% cxp, meaning the discovery only increased cxp by ~31%. A critical of a rare discovery would give you 475% cxp, or an increase of ~12% for the crit.

Also note that exotic items have different base cxp and ranges that they are valid than all other items.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Crafting Booster doesn't affect discovery?

in Crafting

Posted by: xanthic.9478

xanthic.9478

Craft booster only affects your chance to get a critical while crafting. A critical can occur at any time, even during a discovery, while your chance to critical is greater than 0%.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Armorsmith 450-500

in Crafting

Posted by: xanthic.9478

xanthic.9478

Copy and paste link, forum redirect does weird things to the ampersands.

http://www.gw2spidy.com/crafting/4?sort_cost=asc&min_level=80&max_level=&min_rating=400&max_rating=400&min_supply=&max_supply=

Keep discovering the cheapest armor you haven’t discovered yet, until you are 500. Unfortunately the guides can’t automatically know what recipes you used to get to 450. If you click each item on that link it will give you the recipe. Skip Celestial since they require a time gated account bound item.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Help leveling Artificer from 450 to 500

in Crafting

Posted by: xanthic.9478

xanthic.9478

Copy and paste link, forum redirect does weird things to the ampersands.

http://www.gw2spidy.com/crafting/2?sort_cost=asc&min_level=80&max_level=&min_rating=400&max_rating=400&min_supply=&max_supply=

Keep discovering the cheapest weapon you haven’t discovered yet, until you are 500. Unfortunately the guides can’t automatically know what recipes you used to get to 450. If you click each item on that link it will give you the recipe. Skip the potions as they won’t give xp. Probably skip Celestial too since they require a time gated account bound item.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

(edited by xanthic.9478)

Looking for full compiled list of recipes.

in Crafting

Posted by: xanthic.9478

xanthic.9478

Your best bet is parsing the API :: http://wiki.guildwars2.com/wiki/API:Main#Items

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Crafting booster not work?

in Crafting

Posted by: xanthic.9478

xanthic.9478

Crafting boosters give you a +50%, additive with wvw bonus, chance to critical while doing a craft. Max bonus of 70%. What a critical does while crafting is give you 50% bonus crafting experience that is additive with other crafting bonuses(discovery, masterwork and rare crafts).

The following was my answer a similar question:

Because critical crafts are not uniformly distributed there isn’t a good way to do that. This should give you a rough estimate if you want to guess though.
Assuming 100% critical rate:
For normal, uncommon and exotic, a crit(discovery) results in 150%(250%) bonus xp for a reduction of 1/3(1/5) total mats
For masterwork, a crit(discovery) results in 250%(350%) bonus xp for a reduction of 1/5(1/7) total mats
For rare, a crit(discovery) results in 375%(425%) bonus xp for a reduction of 2/15(2/17) total mats
For 50% crit rate you would double the denominator, eg normal item non-discovery crits would reduce material by 1/6 on average.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

JC 500 Collecting List

in Crafting

Posted by: xanthic.9478

xanthic.9478

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Any guide on Huntsman or Leatherworking.

in Crafting

Posted by: xanthic.9478

xanthic.9478

My site updates with current tp prices every 30 minutes. Had a recent hosting downtime issue today but everything is back to normal now.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Crafting Cost website

in Crafting

Posted by: xanthic.9478

xanthic.9478

For non-legendary weapons, gw2spidy.com is good.

EG for Chorben’s Bastion (Ascended Soldier Shield) http://www.gw2spidy.com/recipe/7642

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Mystic Forge - unknown recipe?

in Crafting

Posted by: xanthic.9478

xanthic.9478

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

(edited by xanthic.9478)

All the Materials you need (Crafting 400-500)

in Crafting

Posted by: xanthic.9478

xanthic.9478

xanthic are rabid/dire/soldier etc. insignias included in those? (although they don’t exist yet)

Not yet. Recipes for the guides are controlled by the public gw2 api.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

All the Materials you need (Crafting 400-500)

in Crafting

Posted by: xanthic.9478

xanthic.9478

500 Armorcraft
500 Leatherwork
500 Tailor


Been updating those since September. Prices were ~50-70 before Gossamer spiked.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

(edited by xanthic.9478)

Bug: items.json only lists a few entries

in API Development

Posted by: xanthic.9478

xanthic.9478

Seeing the same thing. Looks like they reset the cache since it is still missing a lot of Destroyer, Sentinel, Givers and other items that are rarely crafted.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

PSA: Toxic Recipes

in Crafting

Posted by: xanthic.9478

xanthic.9478

I assume you mean these recipes: http://dulfy.net/2013/10/30/gw2-tower-of-nightmares-patch-recipes/

Are you saying you can learn them at 400 instead of the 450 they are supposed to be learned at and they are giving xp for more than 40 crafting xp levels? or do you mean other recipes?

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Crafting lvling

in Crafting

Posted by: xanthic.9478

xanthic.9478

It should, and you should get a level roughly every 57 crafting levels.

Character levels per crafting levels are non-linear.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Recipe: Cavalier's Oric Imbued Inscription

in Crafting

Posted by: xanthic.9478

xanthic.9478

No recipe. You get the Insignia from salvaging exotic Cavalier’s weapons.

http://wiki.guildwars2.com/wiki/Cavalier%27s_Orichalcum_Imbued_Inscription

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

450-475 Period

in Crafting

Posted by: xanthic.9478

xanthic.9478

Here is a list of the first 300 refines, starting at 450.
Format: refine#, level, % of level


1 450 30%
2 450 60%
3 450 90%
4 451 20%
5 451 48%
6 451 77%
7 452 6%
8 452 34%
9 452 61%
10 452 89%
11 453 16%
12 453 43%
13 453 69%
14 453 96%
15 454 22%
16 454 47%
17 454 72%
18 454 98%
19 kitten 23%
20 kitten 47%
21 kitten 71%
22 kitten 95%
23 456 19%
24 456 42%
25 456 64%
26 456 87%
27 457 10%
28 457 32%
29 457 53%
30 457 75%
31 457 96%
32 458 18%
33 458 38%
34 458 59%
35 458 79%
36 459 0%
37 459 19%
38 459 38%
39 459 57%
40 459 76%
41 459 96%
42 460 15%
43 460 33%
44 460 51%
45 460 69%
46 460 87%
47 461 5%
48 461 22%
49 461 38%
50 461 55%
51 461 72%
52 461 89%
53 462 6%
54 462 21%
55 462 37%
56 462 52%
57 462 68%
58 462 84%
59 462 99%
60 463 15%
61 463 29%
62 463 44%
63 463 58%
64 463 72%
65 463 87%
66 464 1%
67 464 14%
68 464 28%
69 464 41%
70 464 54%
71 464 67%
72 464 80%
73 464 94%
74 465 7%
75 465 19%
76 465 31%
77 465 43%
78 465 55%
79 465 67%
80 465 79%
81 465 91%
82 466 3%
83 466 14%
84 466 25%
85 466 35%
86 466 46%
87 466 57%
88 466 68%
89 466 79%
90 466 89%
91 467 0%
92 467 10%
93 467 19%
94 467 29%
95 467 39%
96 467 48%
97 467 58%
98 467 67%
99 467 77%
100 467 87%
101 467 96%
102 468 6%
103 468 14%
104 468 23%
105 468 31%
106 468 39%
107 468 48%
108 468 56%
109 468 65%
110 468 73%
111 468 81%
112 468 90%
113 468 98%
114 469 7%
115 469 14%
116 469 21%
117 469 28%
118 469 35%
119 469 43%
120 469 50%
121 469 57%
122 469 64%
123 469 71%
124 469 79%
125 469 86%
126 469 93%
127 470 0%
128 470 6%
129 470 12%
130 470 18%
131 470 24%
132 470 30%
133 470 36%
134 470 42%
135 470 48%
136 470 54%
137 470 60%
138 470 66%
139 470 72%
140 470 78%
141 470 84%
142 470 90%
143 470 96%
144 471 2%
145 471 7%
146 471 12%
147 471 17%
148 471 21%
149 471 26%
150 471 31%
151 471 36%
152 471 41%
153 471 45%
154 471 50%
155 471 55%
156 471 60%
157 471 65%
158 471 70%
159 471 74%
160 471 79%
161 471 84%
162 471 89%
163 471 94%
164 471 98%
165 472 3%
166 472 7%
167 472 10%
168 472 14%
169 472 18%
170 472 21%
171 472 25%
172 472 28%
173 472 32%
174 472 36%
175 472 39%
176 472 43%
177 472 46%
178 472 50%
179 472 54%
180 472 57%
181 472 61%
182 472 64%
183 472 68%
184 472 72%
185 472 75%
186 472 79%
187 472 82%
188 472 86%
189 472 90%
190 472 93%
191 472 97%
192 473 0%
193 473 3%
194 473 5%
195 473 8%
196 473 10%
197 473 12%
198 473 15%
199 473 17%
200 473 20%
201 473 22%
202 473 24%
203 473 27%
204 473 29%
205 473 32%
206 473 34%
207 473 36%
208 473 39%
209 473 41%
210 473 44%
211 473 46%
212 473 48%
213 473 51%
214 473 53%
215 473 56%
216 473 58%
217 473 60%
218 473 63%
219 473 65%
220 473 68%
221 473 70%
222 473 72%
223 473 75%
224 473 77%
225 473 80%
226 473 82%
227 473 84%
228 473 87%
229 473 89%
230 473 92%
231 473 94%
232 473 96%
233 473 99%
234 474 1%
235 474 3%
236 474 4%
237 474 5%
238 474 6%
239 474 7%
240 474 9%
241 474 10%
242 474 11%
243 474 12%
244 474 13%
245 474 15%
246 474 16%
247 474 17%
248 474 18%
249 474 19%
250 474 21%
251 474 22%
252 474 23%
253 474 24%
254 474 25%
255 474 27%
256 474 28%
257 474 29%
258 474 30%
259 474 31%
260 474 33%
261 474 34%
262 474 35%
263 474 36%
264 474 37%
265 474 39%
266 474 40%
267 474 41%
268 474 42%
269 474 43%
270 474 45%
271 474 46%
272 474 47%
273 474 48%
274 474 49%
275 474 51%
276 474 52%
277 474 53%
278 474 54%
279 474 55%
280 474 57%
281 474 58%
282 474 59%
283 474 60%
284 474 61%
285 474 63%
286 474 64%
287 474 65%
288 474 66%
289 474 67%
290 474 69%
291 474 70%
292 474 71%
293 474 72%
294 474 73%
295 474 75%
296 474 76%
297 474 77%
298 474 78%
299 474 79%
300 474 81%

And <3 that 4_5_5 is filtered.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

450-475 Period

in Crafting

Posted by: xanthic.9478

xanthic.9478

A few posts here mention crafting mats to get from 450-475 and I wanted some details I couldn’t find in the other threads.

1) Why isn’t this mentioned in any craft guides like here http://gw2crafts.net/weaponcraft_400.html

Good to see that other site still hasn’t updated their copy of my guides, thus leaving in old errors.

Anyways, my guides assume that you only have access to materials that can be purchased from the TP or from a Master Craftsman(except for Renown Heart cooking). I added the 400-450 guides for people that want to go farm account bound material from chests/champs/etc.

While it certainly makes sense to refine mats from 450~475, the 15 refines that are actually required and can’t be purchased from the TP barely give 4 levels if you did them exactly at 450(2.5 levels if you did at 460, etc), which comes out to 11g25s(75s*15).

Assuming you started at 450 for both examples and there are 0 critical crafts, discovery prices are based off current guide and TP prices.
1 exotic discovery = 11 refines. Or 5g98s9c(discovery) vs 8g25s (refine)
2 exotic discoveries = 21 refines. Or 12g18s24c vs 15g75 s (refine)

The focus of my guides is and will be on lowest initial gold costs of materials for normal guides while making sure the materials used are readily available to everyone for gold.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Crafting is terrible in this game.

in Crafting

Posted by: xanthic.9478

xanthic.9478

I can’t follow any sort of guide because Anet seem to change the recipes all the time.

What? Going to need more details here.. Their recipes rarely change, except for translation strings.

I’m using gw2crafts.net atm. Is there a better up to date guide?

Define better. And my guides update based on current prices every 30 minutes.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Easy lvling up from 400 to 500

in Crafting

Posted by: xanthic.9478

xanthic.9478

Rare and lower Item recipes are supposed to have a span of 40, meaning if you learned them at 375, you can still get xp up to 415. If they are still giving xp after 415 then something is not behaving correctly.

Edit: I can confirm that recipes learned at 350 and 375 are still giving xp at 437. I will wait a few days to see if it is intended behavior, if so I’ll add it to the site.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

(edited by xanthic.9478)

Always current crafting guides

in Community Creations

Posted by: xanthic.9478

xanthic.9478

The new addition of 400>500 weapon crafting has as the first recipe to buy as the Giver’s Orichalcum Imbued Inscription. The source of this recipe is from trading in christmas 2012 gifts into a holiday trade vendor… So not only are they not available on the TP, if they were , they would cost more than the entire guide probably. Anyone got a work around?

Click the recipe at the beginning of the guide. It tells you how to acquire it (buy from tp).

http://www.guildwarstrade.com/item/38297-recipe-givers-orichalcum-imbued-inscription

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Always current crafting guides

in Community Creations

Posted by: xanthic.9478

xanthic.9478

what happened to the traditional guides?

Traditional guides were disabled with the addition of 400-450 and 400-500 guides due to lack of space in the nav bar. They were also disabled so that the guides took less than a certain time to generate.

While the second issue has been dealt with the first issue still exists. When I have more time away from school I’ll try to figure something out.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Crafting Guides?

in Crafting

Posted by: xanthic.9478

xanthic.9478

Try www.gw2crafts.net
Works really well up to level 400. After that, it’s a little inaccurate.

Elaborate? There were a couple but fixes yesterday at about 4pm Pacific that should have removed all the inaccuracies from the 400+ guides.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Craft Math

in Crafting

Posted by: xanthic.9478

xanthic.9478

~16 assuming all discoveries and no crits.

You need 50×24028(1,201,400) crafting experience.

Each exotic gives you 24028*1.85*(1-(craft_level-400)/250 craft experience. *1.5 if just crit, *2 if just discovery, *2.5 if discovery + crit.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Sentinel Inscriptions and Insignias

in Crafting

Posted by: xanthic.9478

xanthic.9478

Guild Commendation trader has Sentinel’s Orichalcum Imbued Inscriptions available for 80 silver and 10 commendations.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Essence of Luck - Recipes?

in Crafting

Posted by: xanthic.9478

xanthic.9478

Less clicking. They hopefully learned from Karma drips.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Additional Ecto??? Why?

in Crafting

Posted by: xanthic.9478

xanthic.9478

The inscriptions that aren’t crafted, such as Rabid Orichalcum Imbued Inscription, require 5 ectos to use when making the exotics but not the ascended.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Guide 400-500

in Crafting

Posted by: xanthic.9478

xanthic.9478

<3 that gw2hub still just copy+pastes a random one of my guides and gussy up the output a little.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

6 Levels for Maxing Non Ascended Crafts

in Crafting

Posted by: xanthic.9478

xanthic.9478

They changed xp rewarded from crafts when they added 500 level crafting.
it used to be:
1% 0-99
2% 100-199
3% 200-299
4% 300-399

Now 400-499 is 4% and the first 400 is either 1,1,2,2 or 1,1,1,3.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

What are the updated % xp per craft level?

in Crafting

Posted by: xanthic.9478

xanthic.9478

It used to be(per level):

1% 0-100
2% 100-200
3% 200-300
4% 300-400.

What I know currently.
1% 1-100
?% 100-200
?% 200-300
?% 300-400
4% 400-500

Based on reports of people stating that 1-500 gives 10 levels, I expect the values to be 1,2,2 or 1,1,3 but lack the gold to test atm.

If you have any numbers to contribute and help fill this out, that would be great.

((end_xp-start_xp)/xp_for_level)/crafting_levels

end_xp = character xp after a craft level is gained(ie 401->402)
start_xp = starting character xp
xp_for_level = total experience needed to finish current level, ie 254,000 for an 80
crafting_levels = number of crafting levels gained, ie 405->408 = 3

Please only give numbers that don’t involve a character leveling.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

cheapest professions to 400

in Crafting

Posted by: xanthic.9478

xanthic.9478

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Overdue Messenger + invincible enemy

in Bugs: Game, Forum, Website

Posted by: xanthic.9478

xanthic.9478

Overdue messenger quest stuck attacking an invincible inquest that doesn’t fight back in sparkfly den. So you can’t reach the balloon.

Attachments:

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

How much gold to craft a level 11 to level 80

in Crafting

Posted by: xanthic.9478

xanthic.9478

Take a closer look at my site. Also be aware there are merchants for all the karma heart cooking ingredients in the new zone which halves cooking cost.

http://gw2crafts.net/total.html — you need 7 crafts. At the time of this post, 75g55s73c – 15g27s97c(wc)+1g76s3c(cooking) = 62g3s79c

From 15-80 going 0-400 in a craft gives you exactly 10 levels. 1-15 gives 30% more xp than expected. So you will need slightly less than 7 crafts.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

[API Bug] Cook items have non-zero vendor

in API Development

Posted by: xanthic.9478

xanthic.9478

NM, found the NoSell flag on an item. Guess that fixes that.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

[API Bug] Cook items have non-zero vendor

in API Development

Posted by: xanthic.9478

xanthic.9478

Cooking items list a vendor sell price, but you cannot sell items crafted by cooking to a vendor. I believe this was changed near release?

Can the API values be changed to reflect this fact?

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.

Leveling 1-80 crafting guide

in Crafting

Posted by: xanthic.9478

xanthic.9478

There are no foods that buff the xp you get while crafting. The xp booster does not affect the character xp you get while crafting either.

Always Current Crafting Guides: http://gw2crafts.net
Updated every 20 minutes based on current TP prices.