ID:1907045
 
So I currently have an output window in the interface where I want to print the player targets information such as "Name, Level, Strength"

You can get this information if you use usr.target.name or I think usr.target:name

But how do you print to the output window?

Read the output operator info in F1, it looks like this <<

But I think you're really thinking of the mob/Stat() proc.
BYOND supplies the output() procedure for when you want to send information to a certain output element.
Thanks guys
In response to LordAndrew
Also, how do you clear the window element?
In response to DaGilbert
If I recall correctly, outputting null to the element will clear it.
It specifically has to be output(null) or output(null, control) because the << operator will basically treat null as an empty string.
Sweet Thanks!