[TF] Status line
Brought to you by:
kenkeys
|
From: kevin at sb.o. (K. Ballard) - 2003-05-03 03:53:52
|
On Thursday, May 1, 2003, at 07:20 PM, Frank Vendolsky wrote: > i'm trying to modify my status line. I accomplished it now to display > my HP's, but tf generates an error message: > > > test.tf, line 33: set: Only one variable width field is allowed. > > The line: /set status_fields=@more:8:Br :1 @world :1 TP :3 :1 ZP :3 :1 > MANA :4 :1 insert:6 :1 @clock:5 > > TP,ZP and MANA are my own variables... so something is wrong with > it.... does it anybody know ? The error means you have multiple fields with variable widths. It has nothing to do with the type of the fields. The problem is you have extra spaces, so instead of setting the width to, for example, the TP field to 3, you made it a variable width field and added a 3-width padding after it. The status line should look like /set status_fields=@more:8:Br :1 @world :1 TP:3 :1 ZP:3 :1 MANA:4 :1 insert:6 :1 @clock:5 -- Kevin Ballard ke...@sb... http://www.tildesoft.com |