Curse Wep scroll crafter

Share your guides, how-tos, FAQs, and so forth. This is not for support -- post questions in General Discussion.
Post Reply
fluffhead321
Posts: 762

Curse Wep scroll crafter

Post by fluffhead321 »

Hey I was wondering if anyone had a script that stocks ingredients from a chest, put them in your pack, crafts curse wep scrolls, and puts them in a different chest
User avatar
medamaude
Posts: 187

Re: Curse Wep scroll crafter

Post by medamaude »

You gonna stop buying curse wep scrolls? :( I just made 4k of them...

JK, but seriously let me know if you start making your own so I know to stop making extras for a while.
User avatar
Tanya
Posts: 1796

Re: Curse Wep scroll crafter

Post by Tanya »

I am still buying :)
But as for crafting just use 'craft last' option so it works for every type of scroll. I'll show you my script later.
Peerless Hunter
Guide to Whammy - viewtopic.php?f=10&t=314
My youtube channel - /watch?v=sx5zGCbILtA
Weekly Bedlam Spawns - viewtopic.php?f=2&t=9131
User avatar
Tanya
Posts: 1796

Re: Curse Wep scroll crafter

Post by Tanya »

this is script I've wrote for crafting scroll
organizer 'take' takes 1 blank scroll and 1 pig iron
organizer 'put' puts all curse weapon scrolls
also it crafts tinker tools and pens when amount less then 2 (need to have some ingots)
it uses same chest as source and destination but you can easy modify it

Code: Select all

if not @findobject 'src'
  promptalias 'src'
endif
organizer 'take' 'src' 'backpack'
while organizing
endwhile
usetype '0xfbf'
waitforgump 0x38920abd 15000
replygump 0x38920abd 21
waitforgump 0x38920abd 15000
pause 2000
if @injournal 'The world will save in 10 seconds.' 'system'
  while not @injournal 'world save complete' 'system'
  endwhile
  @clearjournal
endif
//tinker tools
if counttype '0x1eb8' 'any' 'backpack' < '2'
  usetype! 0x1eb8
  waitforgump 0x38920abd 15000
  replygump 0x38920abd 23
  waitforgump 0x38920abd 15000
  pause 1000
endif
//pens
if counttype '0xfbf' 'any' 'backpack' < '2'
  usetype! 0x1eb8
  waitforgump 0x38920abd 15000
  replygump 0x38920abd 156
  waitforgump 0x38920abd 15000
  pause 1000
endif
organizer 'put' 'backpack' 'src'
while organizing
endwhile
pause 2000

Peerless Hunter
Guide to Whammy - viewtopic.php?f=10&t=314
My youtube channel - /watch?v=sx5zGCbILtA
Weekly Bedlam Spawns - viewtopic.php?f=2&t=9131
fluffhead321 likes this.
Top
fluffhead321
Posts: 762

Re: Curse Wep scroll crafter

Post by fluffhead321 »

medamaude wrote:You gonna stop buying curse wep scrolls? :( I just made 4k of them...

JK, but seriously let me know if you start making your own so I know to stop making extras for a while.

must be someone else, I've never bought them, just looking to further automate the process
User avatar
medamaude
Posts: 187

Re: Curse Wep scroll crafter

Post by medamaude »

fluffhead321 wrote:
medamaude wrote:You gonna stop buying curse wep scrolls? :( I just made 4k of them...

JK, but seriously let me know if you start making your own so I know to stop making extras for a while.

must be someone else, I've never bought them, just looking to further automate the process
Must be. My mistake, sorry, my memory is so crap :?:
Post Reply