Re: [APP]Termy's server APP
Quote:
Originally Posted by
Termy
$name variable holds player name
event_kill 50 'say * "$name has $kills kills."'
woot. thanks :D I must've been blind to not have seen that variable before...
Quote:
Originally Posted by
Termy
Issue with players leaving server when somone enters is reallly strange, it never happened to me.
Next time try to check if players who left are on ip banlist, k?
PS:Can i see your event_joins?
Yeah.. about those, i'm still using more than one event join.. maybe that's it. Here you go though:
event_join 'wait 10000;say $n "{ITS} Clan - Dallas, TX (using SAPP by T3RM1N@T0R - http://xhalo.co.cc/ )";say $n "Press F2 for rules/custom map details."'
event_join 'wait 20000;say $n "Auto Kick - Ping consistently higher than 500";say $n "Auto Kick - AFK for more than 10 minutes"'
I added one more event join to warn people about the issue i'm having (which might possibly make things worse now that I think about it).
Anyhow, the weird thing about the times it's happened today is that it didn't kick everyone out. I'm not sure how often it happens since I haven't checked through all the server logs, but i'm sure it's been going on now and then.
Re: [APP]Termy's server APP
im having issues with the chat commands now, i got the admin list working, but now when i go to do the /pl or /k or those commands in the text box. it appears in the game. i dont know of any other issues. most works tho. just not the text commands for me.
Re: [APP]Termy's server APP
Yeah same, I added myself as an admin through rcon, restarted the server and tried the commands but it did not work. Are they enabled yet?
Re: [APP]Termy's server APP
its \ if your not using cmdstart /
Re: [APP]Termy's server APP
so In game I would type in the text box
Code:
say 1 \n "what's up?"
Also how do you use cmdstart i'm kinda lazy...
Re: [APP]Termy's server APP
Quote:
Originally Posted by
selentic
I wonder if it'll kick me if I nuke and switch!
I wonder if there is a command or part that immediately boots them for staying in one spot for 30:00 minutes. Damn snipers and their mountains....unlike some people I try to be epic and cross the entire plain and capture the flag....
Re: [APP]Termy's server APP
oops, lol guess i got to excited to use it i forgot to check what i was supposed to use, lol, works great now tho. unbanning the text ban shuts server down tho. testing all features now. see what crashes and what doesnt.
Re: [APP]Termy's server APP
Quote:
Originally Posted by
DarkHalo003
Damn snipers and their mountains....unlike some people I try to be epic and cross the entire plain and capture the flag....
those people, unlike you, prefer the defensive positions on the team http://kornnersoftware.com/trillian/mono.gif
Re: [APP]Termy's server APP
Would it be possible to add an event for administrators joining the server, something like "event_admin_join"? It would function just like "event_join" but it would only go off if someone in the admin index joins. If this were added then you could setup a command like:
Code:
event_admin_join 'wait 6000;say "Server Administrator: \n"'
Announce when server administrators join the game.
Also, what is the command to broadcast messages to everyone playing? For example, lets say that I want the server to say "**SERVER**: playername has 50 kills!" to everyone in the server. I know that if you use the following it won't work at all:
Code:
event_kill 50 'say "$name has $kills kills!"'
And if you use the next one it only sends it to the player who just got 50 kills:
Code:
event_kill 50 'say $n "$name has $kills kills!"'
So how do you send it to all the players in the server?
Re: [APP]Termy's server APP
Quote:
Originally Posted by
Freelancer
Also, what is the command to broadcast messages to everyone playing? For example, lets say that I want the server to say "**SERVER**: playername has 50 kills!" to everyone in the server. I know that if you use the following it won't work at all:
Code:
event_kill 50 'say "$name has $kills kills!"'
And if you use the next one it only sends it to the player who just got 50 kills:
Code:
event_kill 50 'say $n "$name has $kills kills!"'
So how do you send it to all the players in the server?
He actually mentioned this on the previous page (and it's also on top of this one).., but just replace n$ with an asterisk.
Code:
event_kill 50 'say * "$name has $kills kills."'
that should do the trick.