Couple Of Questions
SpiffyJr
Join Date: 2002-12-06 Member: 10518Members
<div class="IPBDescription">...help would be great.</div> Got a couple of questions here... and yes I searched for answers first <!--emo&;)--><img src='http://www.unknownworlds.com/forums/html/emoticons/wink.gif' border='0' valign='absmiddle' alt='wink.gif'><!--endemo-->
1. I'm editing HLStats to appear like the rest of my site. I hate weapons being listed as bite, bite2, acidrocket etc... and I was wanting to use the in game sprites as pictures (the sprites that show on the right when someone dies). Any idea where to find them or am I going to have to make screenshots of all the variants.
2. I'm looking for an AMX plugin that will display a message on upon joining and will repeat another message in the center of the screen. Much like Adminmod's admin_welcome_message. The way the HUD messages work in NS requires cl_autohelp to be 1 and most vets don't use that so they miss my message. I'm wanting just plain jane text in the center. Anyone got one?
Thanks for your time,
SpiffyJr.
1. I'm editing HLStats to appear like the rest of my site. I hate weapons being listed as bite, bite2, acidrocket etc... and I was wanting to use the in game sprites as pictures (the sprites that show on the right when someone dies). Any idea where to find them or am I going to have to make screenshots of all the variants.
2. I'm looking for an AMX plugin that will display a message on upon joining and will repeat another message in the center of the screen. Much like Adminmod's admin_welcome_message. The way the HUD messages work in NS requires cl_autohelp to be 1 and most vets don't use that so they miss my message. I'm wanting just plain jane text in the center. Anyone got one?
Thanks for your time,
SpiffyJr.
Comments
btw the formats for the tsay is
in the console:
tsay (message) 'this will do a tsay with the senders name
tsayy (message) ' this will do a anon message
in the 'say' prompt
say:@ (message) 'this will do a tsay with the senders name
say:@@ (message) 'this will do a anon message
This plugin also has a nice little vote_slay (teammate name) section
it's works only every 3 mins.. and only your team members can vote for the slay .. it's got some other stuff in it for ungorging and kicking the cc .. but those aren't fully implemented.
Tweakable Stuff:
amx_welcome_hudmsg: CVar that holds welcome message.
You can use %hostname% / %name% to put in the server
name or the client name. Welcome is only displayed to
the client, not everyone.
amx_motd < message >: Command to add a new MOTD to the
cycle. Only text allowed, because we can't set color
or XY coordinates. More than one are allowed and are
cycled through
amx_motdtime: CVar that holds the amount in time in
between MOTD's.
amx_welcome_hudmsg defaults to Welcome %name% to
%hostname%
ex. Welcome Tcquest78 to D&S Server
To change this stuff:
Everything should go into admin.cfg.
So, if you wanted to cycle through "hello" and "hello
again!" every 5 minutes, add the following:
amx_motd hello
amx_motd hello again
amx_motdtime 5
To make the MOTD message "Enjoy your stay at
%hostname%, %name%", add the following:
amx_welcome_hudmsg "Enjoy your stay at %hostname%,
%name%"
Notice: amx_motd does not require quotes, while amx_welcome_hudmsg does!