Page 1 of 1 1
Digan
Posts: 3
|
2008-01-02 12:04 am
on my status bar i wild like to see
EXPTNL Practice Quest QP
Can someone help me with this |
Dragonburner
Posts: 35
|
2008-01-02 12:35 am
#CLASS {StatusBar}
#VAR StatusBarQuestPoints {}
#VAR StatusBarExperience {}
#VAR StatusBarPractices {}
#VAR StatusExp {}
#VAR StatusBarQuestsDone {}
#TRIGGER {~* You have %1 experience points and need %2 to advance.} {@StatusBarExperience = %replace( "%2", ",")}
#TRIGGER {Hit Points: %1/%2 Practices: %3} {#VAR StatusBarPractices {%3}}
#TRIGGER {Spell Points: %1/%2 Quest Points: %3 ~((%4) %5~)} {
#VAR StatusBarQuestPoints %3
#VAR StatusBarQuestsDone %4
}
#TRIGGER {You gain %1 practices!} {#ADD StatusBarPractices %1}
#TRIGGER {You recieve (*) experience points.} {
@StausExp = %replace( "%1", ",")
#MATH StatusBarExperience (@StatusBarExperience-@StatusExp)
}
#STAT {EXP TNL: @StatusBarExperience %ansi( blue)QuestPoints @StatusBarQuestPoints %ansi( green)Quests Completed: @StatusBarQuestsDone %ansi( red)Practices: @StatusBarPractices}
#CLASS 0
Last edited on January 1, 2008 06:45pm. |
Dragonburner
Posts: 35
|
2008-01-02 12:37 am
I dont quest so i dont have the messages from completing a quest, post those here and i’ll update it to add to the qp/quests completed/practices every time you complete a quest instead of just when you type score |
Chorin
Posts: 7
|
2008-01-02 09:02 am
Possible to add Kills TNL to that? I had a script like this a while back but was lost.
Essentially it took the EXP earned from a kill and calculated how many kills at that EXP it would take to reach the EXP to level.
Simply put: EXP to advance / EXP earned per kill = Kills TNL |
Page 1 of 1 1