Raised This Month: $ Target: $400
 0% 

game text messages list


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
kp_uparrow
Penalized Member
Join Date: Jun 2006
Location: 192.168.0.1
Old 07-20-2007 , 00:04   game text messages list
Reply With Quote #1

where can i get a list of game / sourd messages like %!MRAD_FIREINHOLE #Weapon_Cannot_Be_Dropped #Game_radio #Fire_in_the_hole?
__________________
I USED A SECOND ACCOUNT TO DO MORE KARMA UPS AND DOWNS UNTIL GREENTRYST CAUGHT ME
kp_uparrow is offline
Greenberet
AMX Mod X Beta Tester
Join Date: Apr 2004
Location: Vienna
Old 07-20-2007 , 06:11   Re: game text messages list
Reply With Quote #2

modfolder/titles.txt
__________________
Greenberet is offline
Send a message via ICQ to Greenberet Send a message via MSN to Greenberet
kp_uparrow
Penalized Member
Join Date: Jun 2006
Location: 192.168.0.1
Old 07-20-2007 , 13:59   Re: game text messages list
Reply With Quote #3

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
__________________
I USED A SECOND ACCOUNT TO DO MORE KARMA UPS AND DOWNS UNTIL GREENTRYST CAUGHT ME
kp_uparrow is offline
Arkshine
AMX Mod X Plugin Approver
Join Date: Oct 2005
Old 07-20-2007 , 14:22   Re: game text messages list
Reply With Quote #4

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.
__________________

Last edited by Arkshine; 07-20-2007 at 14:25.
Arkshine is offline
kp_uparrow
Penalized Member
Join Date: Jun 2006
Location: 192.168.0.1
Old 07-20-2007 , 18:10   Re: game text messages list
Reply With Quote #5

client_print(0,print_chat,"%s",message)
__________________
I USED A SECOND ACCOUNT TO DO MORE KARMA UPS AND DOWNS UNTIL GREENTRYST CAUGHT ME
kp_uparrow is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


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


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