ID:272609
 
ok, im trying to add 3 different outputs to my game, ones View, Player Says: hi. and ones World, Player Says to the world: Hi. and System, Player hits Monster for 5 damage

i added the panes to my interface and i try

Login()
World << system("[usr.name] Logs in!")

it says

loading Game.dme
loading Interface.dmf
World.dm:11:error:system:undefined proc

Game.dmb - 1 error, 0 warnings (double-click on an error to jump to it)

how do i fix it?
It's 'world' not 'World'.

world<<output("Play Says to World: [msg]","PaneNameHere")
In response to Mizukouken Ketsu
ohh thank you.
Of course, all you really need to do is world<<"[name] logs in!"

output() is used only for interface controls. Normal text outputting(<<) sends the text to the "Default" output control.
In response to Kaiochao
Yes, but he has multiple output controls and wants to send text to a specific one, so he does need the output() call and as such.