" is displayed in the chat hud. I can't for the life of me figure out how to change the join message to something differnet. Is the Torque Demo App part even in the script files, or is it in"> Chat Hud Text | Torque Game Engine | Forums | Community | GarageGames.com

Game Development Community

Chat Hud Text

by Taylor Petrick · in Torque Game Engine · 06/14/2008 (8:45 am) · 2 replies

When I load a mission, the "Welcome to the Torque Demo app " is displayed in the chat hud. I can't for the life of me figure out how to change the join message to something differnet. Is the Torque Demo App part even in the script files, or is it in the source code?

#1
06/14/2008 (11:15 am)
What you seek is in "common/server/clientConnection.cs" around line 83

// Inform the client we've joined up
   messageClient(%client,
      'MsgClientJoin', '\c2Welcome to the Torque demo app %1.',

the %1 is the client connecting adding the name the person chose, or the default name set in a function above this one.
#2
06/14/2008 (11:25 am)
Thanks Mike!