Raised This Month: $32 Target: $400
 8% 

MessageMode


Post New Thread Reply   
 
Thread Tools Display Modes
Plugin Info:     Modification:   ALL        Category:   Admin Commands        Approver:   devicenull (200)
[CCC]Taz-Devil
Junior Member
Join Date: Apr 2004
Old 04-26-2004 , 10:30   MessageMode
Reply With Quote #1

it's function avaible with adminmod and converted to use with amx.
tape messagemode on your console
after tape on console amx_messagemode <AMX FUNCTION>
and say <variable>.
amx_nomessagemode

Exemple :
messagemode (optionnal but more easy)
amx_messagemode amx_slay

if you say
"Player"
the player is slayed
after if you say
"Taz-devil" taz-devil is slayed
amx_nomessagemode to deactivate

you can do this with all amx command.
If you want to see all your "say" with amx_tsay format and green color.
Bind sample:
bind "z" "amx_messagemode amx_tsay green;messagemode"
bind "x" "amx_nomessagemode"
Attached Files
File Type: sma Get Plugin or Get Source (messgemode.sma - 3876 views - 1.6 KB)
[CCC]Taz-Devil is offline
FlyingMongoose
Veteran Member
Join Date: Mar 2004
Old 04-26-2004 , 10:46  
Reply With Quote #2

you just have to add the sma file, it'll make a compiled download link for you
__________________
Please do NOT PM for support.

Only ask for support in plugin threads.

TunedChaos.com - Precision Tuned Game Servers
FlyingMongoose is offline
[CCC]Taz-Devil
Junior Member
Join Date: Apr 2004
Old 04-26-2004 , 10:47  
Reply With Quote #3

Ok thx
[CCC]Taz-Devil is offline
Johnny got his gun
Veteran Member
Join Date: Jan 2004
Location: Tokyo
Old 04-26-2004 , 11:02  
Reply With Quote #4

Please read rules before posting plugins.
(include <amxmodx>)
Johnny got his gun is offline
RPRaiden
Member
Join Date: Apr 2004
Location: UK
Old 04-26-2004 , 14:00  
Reply With Quote #5

nice plugin, This plugin was on our server before amx x didnt relise what it was used for until now !
__________________
RPRaiden is offline
Send a message via ICQ to RPRaiden Send a message via AIM to RPRaiden Send a message via MSN to RPRaiden Send a message via Yahoo to RPRaiden
pendragon
Senior Member
Join Date: Mar 2004
Location: In a bubble
Old 04-26-2004 , 14:32   JUST AN FYI
Reply With Quote #6

FYI - i use this plugin in conjunction with :

amx_msgmodemenu.amx
http://www.tcwonline.org/~amxmodx/fo...pic.php?t=1136

&

amx_ejl_adminchat.amx
http://www.tcwonline.org/~amxmodx/fo...opic.php?t=895

to make admin chatting and (x)says be bindable to keys such as the following schema:

Quote:
Admin Messagemode
Provides bindable wrapper commands for admin chat messages (inspired by plugin_sank_chatmode from sank for AdminMod).

Just bind one of the commands to a key, e.g.
  • bind "o" "amx_tsaymode"
You can use that key like the normal "say"-command and type your message directly to the "say-line" without pulling down the console. Your message will be displayed as the corresponding admin chat message (e.g. amx_tsay).

A default color can be set in the clients local variable "_mcol", e.g. by "setinfo _mcol red". This color will be used if none is specified in the first word of the message.

Usage:
amx_saymode
amx_chatmode
amx_psaymode
amx_tsaymode
amx_csaymode
amx_fsaymode
amx_scrollsaymode
amx_tsayymode
amx_csayymode
amx_fsayymode
amx_scrollsayymode


------------------Admin Reference------------------------------------------

Link: http://amxmod.net/amx-showplugin.php?id=36659

Plugin: admin_messagemode.amx


_____________________________________________ _____________________________________________ ________________

amx_ejl_adminchat.amx
This is a replacement for the default adminchat plugin. All credit
for orginal coding goes to OLO below. Added are a few features
to make this "Deluxe Admin Chat".
  • Usage (console)

    amx_say <message>
    amx_chat <message>
    amx_psay <player> <message>
    amx_tsay <optional color> message
    amx_csay <optional color> <message>
    amx_fsay <x postion> <y postion> <optional color> <message>
    amx_scrollsay <optional color> <message>
    amx_myhudcolor

Also supports clanmod method of issuing these types of hudmessages
from the chat:
  • Usage (say):
    say @@@ <optional color> <message> is amx_scrollsay from chat
    say @@ <optional color> <message> is amx_csay from chat
    say @ <optional color> <message> is amx_tsay from chat
    say ## <message> is amx_chat from chat
    say # <player> <message> is amx_psay from chat

Some of those feaures include new commands like fsay and scrollsay.
Also added we the repeat of the csay/tsay etc message in the console,
in case you missed reading it before it disappeared or got over-
written by another csay/tsay so you can still catch what was said.
Additionally, messages no longer need to be enclosed in quotation
marks.
Lastly, added are shortcuts for all commands. You may use them
without the "amx_" extension at the beginning. Instead of "amx_fsay",
just do "fsay". By default the message includes the admins name so
everyone knows where its from, but if you add an extra "y" to the
end of the command, the admins name will not appear in the on screen
message. To make separate lines in your message, use the standard
carriage return, "^n" (no quotes) between your lines -- up to
10 lines allowed. You may use thse comamnds through the console
or rcon as well. They are serverside and clientside commands.

Updated to include 16,777,216 colors for tsay,csay,fsay, and scrollsay.
You can use the original colors: white,red,green,blue,yellow,magenta,
and cyan. You can also specify a custom color by making one out of the
3 primary colors red, green, and blue. Preceed your color # with an
exclaimation point, then without any spaces type three 3 digit numbers
ranging from 0-255. First is red, then green, then blue. If you dont
want to type the numbers again, the server will remeber the last custom
color you did for the duration of the map. Simply put the excaimation
mark and no number.

Custom color examples:

amx_tsay !255010189 message (thats 255 red, 10 green, 189 blue)
amx_tsay ! message (that repeats previous custom color)


The command amx_myhudcolor sets your default hudmessage color as
whatever your current hud color is and writes it to file so that it
is permanently saved and loaded each map until you set a new one for
yourself.


----------------------------Admin Info----------------------------------------
file: amx_ejl_adminchat.amx

link: http://www.tcwonline.org/~amxmodx/fo...opic.php?t=895
Hope this wasnt too confusing.. the key part of this is using the amx_messagemode <AMX FUNCTION> which lets my admins bind keys to their tsays, csays, amx_chat, etc by doing the following: bind "o" "amx_tsaymode" either in console or in their config.cfg file.
__________________
pendragon is offline
Send a message via ICQ to pendragon
SniperBeamer
AMX Mod X Founder
Join Date: Jun 2003
Location: Good Old Europe
Old 04-26-2004 , 16:23  
Reply With Quote #7

choose a category
__________________
SniperBeamer is offline
kramesa
Veteran Member
Join Date: Feb 2011
Location: Brazil
Old 11-21-2011 , 15:42   Re: MessageMode
Reply With Quote #8

nice plugin
__________________
kramesa 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 11:17.


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