ID:158182
 
I have a seperate window with an ouput I DON'T want to be the default, the thing is, how do I send data to that output?

I've tried things such as:

thisoutput<<"hello"

Which I'm sure is 100% INCORRECT, but I can't seem to find any other way.
Any ideas?


Here is my code:
var/output = winget(null,"stats","statsoutput")

mob
var
str = 4
dex = 4
luk = 4
int = 4
verb
Roll_Stats()
output<<pick(4,5,6,7,8,9(str))
output<<pick(4,5,6,7,8,9(dex))
output<<pick(4,5,6,7,8,9(luk))
output<<pick(4,5,6,7,8,9(int))
You'd use the second arg in output() to pick which control you want to output to.

client << output("you rolled a 9!", "stats.statsoutput")