Game Development Community

ChutHud Greeting message

by Nancy Lee · in Technical Issues · 10/31/2008 (4:28 am) · 2 replies

In the FPSstartKit, there is a greeting message shown in the CHatHud "Welcome to Torque Demo app..."

Do you know in which file I can change this message?

Thanks very much.

#1
10/31/2008 (6:23 am)
Look in common/server/clientConnection.cs for function GameConnection::onConnect(), at about line# 85.
// Inform the client we've joined up
messageClient(%client,
      'MsgClientJoin', '\c2Welcome to the Torque demo app %1.', 
      %client.name, 
      %client,
      %client.sendGuid,
      %client.score,
      %client.isAiControlled(), 
      %client.isAdmin, 
      %client.isSuperAdmin);
#2
10/31/2008 (6:33 am)
/common/Serverscripts/ClientConnection.cs line 85

EDIT: Aaah... beaten!