AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   game text messages list (https://forums.alliedmods.net/showthread.php?t=58147)

kp_uparrow 07-20-2007 00:04

game text messages list
 
where can i get a list of game / sourd messages like %!MRAD_FIREINHOLE #Weapon_Cannot_Be_Dropped #Game_radio #Fire_in_the_hole?

Greenberet 07-20-2007 06:11

Re: game text messages list
 
modfolder/titles.txt

kp_uparrow 07-20-2007 13:59

Re: game text messages list
 
more of in the counter strike.gfc

its not exact like there is no "#Weapon_Cannot_Be_Dropped"

what about the sound msgs?

%!MRAD_FIREINHOLE

Arkshine 07-20-2007 14:22

Re: game text messages list
 
I don't know but you can create a plugin for that.

Something like :

Code:
#include <amxmodx> #define PLUGIN  "New Plugin" #define VERSION "1.0" #define AUTHOR  "Author" public plugin_init() {     register_plugin( PLUGIN, VERSION, AUTHOR  );         register_message( get_user_msgid( "SendAudio" ),"message_sendaudio" );     register_message(  get_user_msgid( "TextMsg" )  ,"message_textmsg"   ); } public message_textmsg( msg_id, msg_dest, msg_entity ) {     static message[32];     get_msg_arg_string(  2, message, sizeof message - 1  );         log_amx( "text: %s", message ); } public message_sendaudio( msg_id, msg_dest, msg_entity ) {     static message[32];     get_msg_arg_string( 2, message, sizeof message - 1 );         log_amx( "audio: %s", message ); }

Then plays & see. :)

kp_uparrow 07-20-2007 18:10

Re: game text messages list
 
client_print(0,print_chat,"%s",message) :P


All times are GMT -4. The time now is 21:27.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.