Couple Of Questions

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

Comments

  • SuicideDogSuicideDog Join Date: 2002-11-10 Member: 8104Members
    Tcquest78 wrote this nice litte plugin that allows you to do tsays in NS.. it works by turning on the autohelp.. messaging them and turning off autohelp. The only problem is that newb will have their autohelp turned off after the first time I do a tsay. I don't know about you .. but the first thing I turned off was the autohelp.. it got real anoyning reall quick. You could prolly use the code from it and modify one of the existing plugins for amx.

    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.
  • SuicideDogSuicideDog Join Date: 2002-11-10 Member: 8104Members
    new and improved version this has all the stuff in last on and now it has welcome msg and motd the syntax is:

    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!
Sign In or Register to comment.