|
Clevix Newbie
Joined: 27 Feb 2002 Posts: 9 Location: USA
|
Posted: Fri Jun 07, 2002 3:48 pm
Output text to a txt file |
Simple (I hope) question:
I capture via an alias the amount of experience I gain per minute while out leveling. The output on the screen looks like
You killed 100 mobs worth a total of 100000 exp in 33 minutes. That's 1000 exp per minute.
Is there a way to save this to a txt file everytime this is displayed?
Thanks in Advance |
|
|
|
LightBulb MASTER
Joined: 28 Nov 2000 Posts: 4817 Location: USA
|
Posted: Fri Jun 07, 2002 4:53 pm |
Yes. You can just add the #WRITE command to the alias (or trigger) that produces the display. You might want to include the time also.
#FILE 1 exp.txt
#AL showexp {#SHOW {You killed @kills mobs worth a total of @killexp in @killtime minutes. That's %eval(@killexp/@killtime) exp per minute.};#WRITE 1 {You killed @kills mobs worth a total of @killexp in @killtime minutes. That's %eval(@killexp/@killtime) exp per minute. %time()}}
LightBulb
Vague questions get vague answers |
|
|
|
Clevix Newbie
Joined: 27 Feb 2002 Posts: 9 Location: USA
|
Posted: Fri Jun 07, 2002 9:03 pm |
Thanks a ton LightBulb!
Worked like a charm! |
|
|
|
|
|