SamB Posted July 13, 2006 Share Posted July 13, 2006 neither of them work. have a look.. on *:SIGNAL:mta.talk:{ if $3 == !site mta.say $1 www.xendot.com } } on *:SIGNAL:mta.join: { if $mta.nick($1,$2) == Player) { mta.text $1 The nickname $mta.nick($1,$2) is not allowed on this server mta.kick $1 $2 } } Link to comment
CoZ Posted July 13, 2006 Share Posted July 13, 2006 on *:SIGNAL:mta.text:{ if (site isin $3-) { mta.text $1 www.xendot.com } } this will spam when someone types the word "site" but you probably meant it to respond to the command " !site " on *:SIGNAL:mta.command: { if ($3 == !site) { mta.text $1 www.xendot.com } on *:SIGNAL:mta.join: { if ($mta.nick($1,$2) == Player) { !.timer 1 5 mta.text $1 Player, please change nickname ! !.timer 1 20 mta.text $1 Player, press ESCAPE click SETTINGS and change the name !! } } or on *:SIGNAL:mta.join: { if ($mta.nick($1,$2) == Player) { !.timer 1 5 mta.text $1 Nickname player is not allowed !.timer 1 10 mta.kick $1 $2 } } Link to comment
SamB Posted July 13, 2006 Author Share Posted July 13, 2006 they both work fine only prob is if someone changes their name back to player it doesnt kick them. do u have to put on.mta:name or something Link to comment
Jani Posted July 13, 2006 Share Posted July 13, 2006 Why would someone change their name to Player? Link to comment
CoZ Posted July 13, 2006 Share Posted July 13, 2006 they both work fine only prob is if someone changes their name back to player it doesnt kick them. do u have to put on.mta:name or something on *:SIGNAL:mta.nick: { Link to comment
Recommended Posts