No class 03/01/2014 06:26 PM CST
So, aside from Raven's court (Raven court? Ravencourt?), what's the best, cheapest, easiest, way to learn scholarship, if I don't want to sit in classes?

I'm trying to RP as a scholar-type, but it's a bit thin when he only has 40 scholarship.
Reply
Re: No class 03/01/2014 06:31 PM CST
Buy a crafting book. Study each page till you lock.

My script starts like this:

put get weaponsmithing book
wait
Chapter1:
put turn book to chapter 1
wait

put turn book to page 1
wait
put study book
wait

put turn book to page 2
wait
put study book
wait

put turn book to page 3
wait
put study book
wait


continue for each page and then go to chapter 2.
______
Kertig Heart Magdar Bluefletch, Forging Guru of M'Riss
Reply
Re: No class 03/01/2014 06:54 PM CST
put .play

start:
setvariable chapter 2

put get blacksmith book
match turn_chapter You get a
match turn_chapter You are already
match end What were you referring to?
matchwait

turn_chapter:
put turn my book to chapter %chapter
match exp_done does not have a chapter
match start_page You turn your book to chapter
match start_page The book is already turned to
matchwait

start_page:
counter set 1
put turn my book to page %c

study_page:
put study my book
waitfor Roundtime

turn_page:
counter add 1
put turn my book to page %c
match study_page You turn your book to page
match exp_chapter This chapter does not have that many pages.
matchwait

next_chapter:
counter set %chapter
counter add 1
setvariable chapter %c
goto turn_chapter

exp_chapter:
put exp scholarship
match end enthralled
match end nearly locked
match end mind lock
match next_chapter EXP HELP
matchwait

exp_done:
put exp scholarship
match end enthralled
match end nearly locked
match end mind lock
match start EXP HELP
matchwait

end:
put stop hum
put put book in my toolbelt
exit



Uzmam! The Chairman will NOT be pleased to know you're trying to build outside of approved zones. I'd hate for you to be charged the taxes needed to have this place re-zoned. Head for the manor if you're feeling creative.
Reply
Re: No class 03/01/2014 10:02 PM CST
Compendiums are also decent, though I've never used them as a primary training method.


-- Player of Eyuve
Reply
Re: No class 03/06/2014 07:02 AM CST
my script is similar to Tevesh's, except, I have a match for exp SK Scholarship, instead of just exp scholarship, and I don't have any humming.


Dwarven Bard



<<If I can't cast thunderclap, you can't summon the dark lord of the abyss to devour the flesh of the innocent>>
Reply
Re: No class 03/06/2014 09:06 AM CST
>>Compendiums are also decent, though I've never used them as a primary training method.

I'd like compendiums more if they didn't have the timers they have. Honestly, I'm wondering if those timers should be removed, since they don't exactly give tons of exp.

Hey GMs, any chance chart timers could be removed? Those things are the worst and seem vestigial at this point. Plus, it would resolve my whole "since 3.0 started a year or so ago and bleeders were stun machines I barely trained FA and it moved from my primary survival to one of my last" issue.



Uzmam! The Chairman will NOT be pleased to know you're trying to build outside of approved zones. I'd hate for you to be charged the taxes needed to have this place re-zoned. Head for the manor if you're feeling creative.
Reply
Re: No class 03/23/2014 11:13 PM CDT
Don't need to change chapters when reading a book, you just can't use the same exact page repeatedly (not sure what the cooldown timer is, but it's fairly short). At 360's scholar, I locked in... [Script finished (In 804.3170043 seconds): book.cmd(23)]
I generally don't go out of my way to train scholar so haven't tried using the harder template chapters, might be faster, I dunno. I tend to just use this when waiting for something, it kills time without standing around being completely useless.

If you use genie, this is what I use (and of course the forums ruin the neat spacing):

action queue clear; send 1 $lastcommand when ^\.\.\.wait|^Sorry, you may

start:
send GET MY WEAPON BOOK
send TURN MY BOOK TO CHAPTER 1
waitforre ^You turn|^The book is already
start2:
send TURN MY BOOK TO PAGE 1
var page 1

study:
send STUDY MY BOOK
waitforre ^Roundtime
pause
math page add 1
if ("$Scholarship.LearningRate" = "34") then
{
send PUT MY BOOK IN MY THIGH BAG
echo
echo READING DONE.
echo
put #parse !BOOK DONE!
exit
}
send TURN MY BOOK TO PAGE %page
matchre study ^You turn
matchre start2 ^This chapter does not
matchwait
Reply