Work orders on 10/02/2016 12:12 PM CDT
Links-arrows 1
Reply Reply


I have a question on work orders when asking for a work order is it random, like in tailoring I knit will I get knitting work or would it be random leather or cloth, the same with engineering I work with bones. I have stored to capacity all the tools I can and do not really feel like carrying excess tools for tailoring and stone carving or wood working.
Reply Reply
Re: Work orders on 10/02/2016 01:38 PM CDT
Links-arrows 2
Reply Reply
Which front end do you use?






"Game balance is sobbing over in the corner as it considers the ramifications of AoE Blufmor Garaen. Your spell slots send their condolences." - GM Raesh
Reply Reply
Re: Work orders on 10/02/2016 03:26 PM CDT
Links-arrows 3
Reply Reply
Two things. First, the system prioritizes giving you items you have the techniques for. So if you have techniques for knit items but no leather or cloth techniques, you'll get knitting orders. Second, if you don't like the order you were given, you can just ask for a new one. There's no penalty or timer on doing so.
Reply Reply
Re: Work orders on 10/02/2016 05:13 PM CDT
Links-arrows 4
Reply Reply
>>Two things. First, the system prioritizes giving you items you have the techniques for. So if you have techniques for knit items but no leather or cloth techniques, you'll get knitting orders. Second, if you don't like the order you were given, you can just ask for a new one. There's no penalty or timer on doing so.

Not exactly true, but close. If you are able to complete a work order then it will assign it to you, techniques or not. Higher levels and technique specialization tend to prevent you from getting odd workorders later, but it can happen, with higher frequency at lower skill.






"Game balance is sobbing over in the corner as it considers the ramifications of AoE Blufmor Garaen. Your spell slots send their condolences." - GM Raesh
Reply Reply
Re: Work orders on 10/02/2016 06:33 PM CDT
Links-arrows 5
Reply Reply


stormfront
Reply Reply
Re: Work orders on 10/02/2016 07:28 PM CDT
Links-arrows 6
Reply Reply
>>Stormfront

I use this in genie but it should work for you, Stormfront supports regular expressions.
If you need different crafting types, just copy one of the variable groups and create a new one.
The "boss" variable is currently set to Master, change it to match wherever you do crafting.




#Script syntax : .work <profession>

put get logbook

goto %1


###### Variable groups

# Tailoring: change material to preferred (currently leather)
tail:
tailoring:
setvariable boss Master
setvariable work tailoring
setvariable material leather
goto ask


#Shaping (wood)
shap:
shaping:
setvariable boss Master
setvariable work shaping
setvariable material material
goto ask


#Alchemy rememdies
rem:
remedies:
setvariable boss Master
setvariable work Remedies
setvariable material material
goto ask


#Forging - weaponsmithing

weap:
weapons:
weaponsmithing:
setvariable boss Master
setvariable work weaponsmithing
setvariable material material
goto ask


##### Match table

ask:
pause 2
matchre end I need 6[^,]+, made from any %material
matchre ask I need (1|2|3|4|5)
matchre ask I need 6[^,]+, made from any (?!leather)
put ask %boss about hard %work work
matchwait

#### Final

end:
put stow logbook
echo Done!



"Game balance is sobbing over in the corner as it considers the ramifications of AoE Blufmor Garaen. Your spell slots send their condolences." - GM Raesh
Reply Reply
Re: Work orders on 10/02/2016 11:39 PM CDT
Links-arrows 7
Reply Reply
Thanks for posting that script Ashbomb.

For anyone using vanilla StormFront you just need to make a slight edit to the genie script and enclose the regular expression in slashes.

##### Match table

ask:
pause 2
matchre end /I need 6[^,]+, made from any %material/
matchre ask /I need (1|2|3|4|5)/
matchre ask /I need 6[^,]+, made from any (?!leather)/
put ask %boss about hard %work work
matchwait

#### Final



Vote:
http://www.topmudsites.com/vote-DragonRealms.html
Reply Reply
Re: Work orders on 10/03/2016 10:21 AM CDT
Links-arrows 8
Reply Reply


Ok cool thanks you two
Reply Reply