uh oh.....have used this great script in the past and loved it, but just tried it again today to build up some spellbooks and I have a problem, when it grabs the blank scrolls, it grabs one at a time, so I have to pause it, put 300 in my pack press resume and then it goes till it needs more, then it grabs 1 at a time again I have no idea how to fix this...hope u can help me.....I Appreciate each and every one of you guys that make scripts for us to use...Have a great day
Umm, are you at or very near your max weight? The script drags the amount of scrolls based on your weight... actually, its your Maxweight - your current weight = drag amount. See the following code
set %dragamount ( #maxweight - #weight )
Exevent Drag #findid %dragamount
Sounds like you are 1 stone away from your max weight, thus you drag one scroll at a time. Although it is possible to overload your self, this script does not take into account for that.
You can however hardcode in a specific %dragamount if you so desire. It would look similar to the following
set %dragamount 300
Exevent Drag #findid %dragamount
This is located inside the sub GetScroll and is on line 526.
JaF