my outgoing messages are still sitting in my outbox, unviewed.
these two offsets are critical for operation of the bot. here is what's happening with them:
when a call is made to crafting_stepname() or crafting_stephealth() indexes 1-8, cpu util will max (on a 3ghz system) and the functions will each typically take between 0.5 and 1 sec to return, progressively higher the higher the index. Index 9 will cause VGExtreme to hang altogether.
Processing time results on a fairly high-end machine for crafting_stepname(index):
2008-05-30 14:43:35 index 1 returns 'Cloth' in 0.296875 seconds.
2008-05-30 14:43:36 index 2 returns 'Design' in 0.578125 seconds.
2008-05-30 14:43:37 index 3 returns 'Pattern' in 0.59375 seconds.
2008-05-30 14:43:37 index 4 returns 'Ornament' in 0.59375 seconds.
2008-05-30 14:43:38 index 5 returns 'Cleaner' in 0.890625 seconds.
2008-05-30 14:43:39 index 6 returns 'Strengthener' in 0.875 seconds.
2008-05-30 14:43:40 index 7 returns 'Embroider' in 1.203125 seconds.
2008-05-30 14:43:41 index 8 returns 'Material Strap' in 1.171875 seconds.
(9 never returned, had to close VGExtreme)
If I don't hear from someone soon, there is a workaround I can do, but will require some significant recoding in the craft logic. At this time, I use these two functions up to about 100 times per command, so even if index 9 worked properly, it would potentially take a minute or longer between clicks.
A workaround may still have some delays because as I said before, these functions are crucial, but doing so might disable some other features and I really don't want to have to do that when the problem likely can be easily fixed on the back end. Unfortunately, a lowly member like me doesn't have access to the source to try and figure out the problem
