// FILE: z0dd_msgbox.cs // VERSION: 1.01 // DATE: 1/20/01 // AUTHOR: Paul "z0dd" Paella // EMAIL: z0dd@adelphia.net // WEBPAGE: http://home.adelphia.net/~z0dd/ // ////////////////////////////////////////////////////////////////////////////// //////////////////////////////// DESCRIPTION: //////////////////////////////// ////////////////////////////////////////////////////////////////////////////// // // This script allows clients to change the size of the message box. // It allows sizes of 1-10. The dafult keys CONTROL+1 to CONTROL+0 // are mapped to sizes 1 to 10. // ////////////////////////////////////////////////////////////////////////////// ////////////////////////////// VERSION HISTORY: ////////////////////////////// ////////////////////////////////////////////////////////////////////////////// // // 1.0 Initial version. // // 1.01 - Added: editActionMap("playMap.sae"); to prevent config.cs // problems. // ////////////////////////////////////////////////////////////////////////////// /////////////////////////////// INSTALLATION: //////////////////////////////// ////////////////////////////////////////////////////////////////////////////// // // INSTALLATION: // Put z0dd_msgbox.cs into your: // ...\tribes\config // directory and insert this line into your autoexec.cs: // exec("z0dd_msgbox.cs"); // // This script is configured by editing the area labeled: // USER CONFIGURATION SECTION // ////////////////////////////////////////////////////////////////////////////// /////////////////////////////////// NOTES: /////////////////////////////////// ////////////////////////////////////////////////////////////////////////////// // // This script does not require Presto Pack and will not conflict with it. // // Don't edit the following line editActionMap("playMap.sae"); ////////////////////////////////////////////////////////////////////////////// ///////////////////////// USER CONFIGURATION SECTION ///////////////////////// ////////////////////////////////////////////////////////////////////////////// // // Keys that change the msg box size. The dafaults are CONTROL+1 to CONTROL+0 bindAction(keyboard0, make, control, "1", TO, IDACTION_CHAT_DISP_SIZE, 1.000000); bindAction(keyboard0, make, control, "2", TO, IDACTION_CHAT_DISP_SIZE, 2.000000); bindAction(keyboard0, make, control, "3", TO, IDACTION_CHAT_DISP_SIZE, 3.000000); bindAction(keyboard0, make, control, "4", TO, IDACTION_CHAT_DISP_SIZE, 4.000000); bindAction(keyboard0, make, control, "5", TO, IDACTION_CHAT_DISP_SIZE, 5.000000); bindAction(keyboard0, make, control, "6", TO, IDACTION_CHAT_DISP_SIZE, 6.000000); bindAction(keyboard0, make, control, "7", TO, IDACTION_CHAT_DISP_SIZE, 7.000000); bindAction(keyboard0, make, control, "8", TO, IDACTION_CHAT_DISP_SIZE, 8.000000); bindAction(keyboard0, make, control, "9", TO, IDACTION_CHAT_DISP_SIZE, 9.000000); bindAction(keyboard0, make, control, "0", TO, IDACTION_CHAT_DISP_SIZE, 10.000000);