Ahliannanyte
Posts: 2
|
Thank you, Ahli |
would it be possible to get an updated script that will post into ct …something small…just qp/pp and will log into a capture window so i can keep track of how many quests i have done and what i have recieved for them…and is it possible to add something that will show my qp/pp on my status bar?
Saker
Posts: 13
|
#CLASS {quest_capture} #VAR quest_qp {0} #VAR quest_pp {0} #REGEX {[a-zA-Z ]+tells you, ‘As a reward for thy valor, I am awarding you ([0-9]+) quest points, ([0-9]+) practices, and [0-9,]+ gold pieces.’} {#capture quests;#send {ct I received %1 qp, %2 pp from my quest.};#add quest_qp {%1};#add quest_pp {%2}} #CLASS 0 And add the variables quest_qp and quest_pp to your status bar. |
First off, I don’t see any purpose in clantalking quest rewards or viewing your qp/pp in your status bar. They’re already in your score. Second, you most likely want to log/capture your tells, so these should already be captured there. But if you still wanted to do all this, you might end up with something similar to this:
Ahliannanyte
Posts: 2
|
Thank you |