Page 1 of 1

auto chan joins

Posted: Sat Apr 03, 2010 10:38 am
by blebla
Hallo. I need some help with creating a tld block.

I want every user who's coming from germany to join channel #germany if he is connecting to one of our servers. I try to solve this problem using a tld block, but every time I want to start unreal there is a error message and it seems I just forget one semicolon. But I don't see any mistake.
tld
{
mask *@*.de;
channel #germany;
};

That's my tld block. Do anyone see a mistake there? I'm working on this for maybe a few days and I don't know how to solve the problem....

Re: auto chan joins

Posted: Sat Apr 03, 2010 1:04 pm
by Jobe
Try:

Code: Select all

tld {
  mask "*@*.de";
  channel "#germany";
};

Re: auto chan joins

Posted: Fri Mar 18, 2011 2:43 pm
by TechSlayer
Jobe1986 wrote:Try:

Code: Select all

tld {
  mask "*@*.de";
  channel "#germany";
};
Jobe should be right, you cannot leave the character by itself or it won't be able to follow the command.