Author Topic: Help please  (Read 1481 times)

0 Members and 1 Guest are viewing this topic.

Offline Kredens

  • Major(1)
  • Posts: 4
Help please
« on: September 28, 2008, 09:14:38 am »
I have a question. Is there any possibility to change colors in ctf? I mean from red to black, and from blue to white. If it is possible, can anyone tell me how to do it?

Offline Espadon

  • Global Moderator
  • Rainbow Warrior
  • *****
  • Posts: 2606
  • GO BEAT CRAZY
    • Tabnir at deviantART
Re: Help please
« Reply #1 on: September 28, 2008, 09:16:34 am »
The closest you can get to that is by going into the config panel exe and turning on 'clanmatch' [in the others tab I think]. Bots take precedence so if you want a particular color be sure the first bot on your team has that particular color scheme.
CRYSO | HLT                        

    CRY0 | NAN0 2.1 | 0MEN 1.0 | PYR0 1.1M | B0RG 1.0

Offline Kredens

  • Major(1)
  • Posts: 4
Re: Help please
« Reply #2 on: September 28, 2008, 09:44:26 am »
I am not playing with bots... Only online. So there is no option to change somewhere these colors?

Offline miketh2005

  • Soldat Beta Team
  • Flagrunner
  • ******
  • Posts: 668
  • What's the URL for www.microsoft.com?
Re: Help please
« Reply #3 on: September 28, 2008, 12:26:51 pm »
the flags or the players?
Quote from: 'Ando.' pid='12999178' dateline='1309046898'
My new password is secure as shit :)
Mate, I am not sure Shit is even secured nowadays.

Offline Kredens

  • Major(1)
  • Posts: 4
Re: Help please
« Reply #4 on: September 28, 2008, 01:33:42 pm »
Players. I would like to have white shirt instead of red one, and black instead of blue one.

Offline Espadon

  • Global Moderator
  • Rainbow Warrior
  • *****
  • Posts: 2606
  • GO BEAT CRAZY
    • Tabnir at deviantART
Re: Help please
« Reply #5 on: September 28, 2008, 03:28:34 pm »
Only possible if the server is set to clanmatch and the first person in the team wears that color.

So no.
CRYSO | HLT                        

    CRY0 | NAN0 2.1 | 0MEN 1.0 | PYR0 1.1M | B0RG 1.0

Offline Lord Frunkamunch

  • Veteran
  • *****
  • Posts: 1418
  • DRR...DRR...DRR...
Re: Help please
« Reply #6 on: September 28, 2008, 08:35:58 pm »
I guess you could theoretically arrange for people to wear those colors.

Or possibly make a script where you would have a bot on the server with a white shirt which spectates after the next person joins and gets a white shirt.
I attend grammar school, last grade, and ignorance is all around me. Well, good for them. Ignorance is bliss.

Offline iDante

  • Veteran
  • *****
  • Posts: 1967
Re: Help please
« Reply #7 on: October 02, 2008, 01:58:43 am »
I guess you could theoretically arrange for people to wear those colors.

Or possibly make a script where you would have a bot on the server with a white shirt which spectates after the next person joins and gets a white shirt.
Code: [Select]
procedure ActivateServer();
begin
     Command('/addbot1 ALPHACOLORBOT');
     Command('/addbot2 BRAVOCOLORBOT');
end;
procedure OnJoinTeam(ID, Team: byte);
begin
     if Team = 1 then Command('/kick ALPHACOLORBOT');
     if Team = 2 then Command('/kick BRAVOCOLORBOT');
end;
procedure OnLeaveGame(ID, Team: byte;Kicked: boolean);
begin
     if (Team = 1) and (AlphaPlayers = 0) then Command('/addbot1 ALPHACOLORBOT');
     if (Team = 2) and (BravoPlayers = 0) then Command('/addbot1 BRAVOCOLORBOT');
end;
Not compile-tested, but the idea is there if anyone wants to use it... Replace ALPHA/BRAVOCOLORBOT with the name of the bots with the color.