Author Topic: [DELETE PLEASE]  (Read 1011 times)

0 Members and 3 Guests are viewing this topic.

Offline shay

  • Major(1)
  • Posts: 21
[DELETE PLEASE]
« on: April 09, 2013, 03:05:35 pm »
???
« Last Edit: May 29, 2013, 05:43:15 am by shay »

Offline TheOne

  • Soldier
  • **
  • Posts: 208
Re: Climb Idea
« Reply #1 on: April 09, 2013, 03:08:12 pm »
Semicolon after that:

const
Color = $FFFFFF;

Offline shay

  • Major(1)
  • Posts: 21
Re: Climb Idea
« Reply #2 on: April 09, 2013, 03:15:01 pm »
Semicolon after that:

const
Color = $FFFFFF;

Yes,true :D

Code: [Select]
const
Color = $FFFFFF;

var

Continue you...

Offline GhostRiderSwiss

  • Camper
  • ***
  • Posts: 294
  • Scripting beginner, mapper&owner of BCB servers.
    • BCB-Forum
Re: Climb Idea
« Reply #3 on: April 09, 2013, 03:35:51 pm »
Code: [Select]
const
  ClimbVersion = '1.0';{version of script}
  Color1 = $FFFFFF;{may add here for you to know later the color}
  Color2 = $ffff3333;{Red}
  Color3 = $FFFFFFFF;{White}
  Color4 = $7CFC00;{Sexy Green}
  Color5 = $00AA00;{bit darker Green}
  Color6 = $AA00AA;{Purple<3}
  Color7 = $ff999999;{Gray}

var

procedure ActivateServer();
begin
  writeln('> ClimbMode v' + ClimbVersion + ' loaded! ');
end;

now you got some more colors and it will show on ActivateServer the script version ^^

 ;D
« Last Edit: April 09, 2013, 03:37:42 pm by GhostRiderSwiss »
BCB-Clan Page
You also can find clan BCB on our servers.

BCB-Soldier till i die!

Offline shay

  • Major(1)
  • Posts: 21
Re: Climb Idea
« Reply #4 on: April 09, 2013, 03:43:14 pm »
;D just 1 color.

My next:
We need a quick read

Code: [Select]
function Explode(Source: string; const Delimiter: string): array of string;
var
    TempStr: string;
begin
    Source := Source + Delimiter;
repeat
    TempStr := GetPiece(Source, Delimiter, 0);
    SetArrayLength(Result, GetArrayLength(Result) + 1);
    Result[GetArrayLength(Result) - 1] := TempStr;
    Delete(Source, 1, Length(TempStr) + Length(Delimiter));
    until Length(Source) = 0;
end;

Continue you...
« Last Edit: April 09, 2013, 03:54:27 pm by shay »

Offline GhostRiderSwiss

  • Camper
  • ***
  • Posts: 294
  • Scripting beginner, mapper&owner of BCB servers.
    • BCB-Forum
Re: Climb Idea
« Reply #5 on: April 10, 2013, 07:39:55 am »
;D just 1 color.

My next:
We need a quick read

Code: [Select]
function Explode(Source: string; const Delimiter: string): array of string;
var
    TempStr: string;
begin
    Source := Source + Delimiter;
repeat
    TempStr := GetPiece(Source, Delimiter, 0);
    SetArrayLength(Result, GetArrayLength(Result) + 1);
    Result[GetArrayLength(Result) - 1] := TempStr;
    Delete(Source, 1, Length(TempStr) + Length(Delimiter));
    until Length(Source) = 0;
end;

Continue you...

Why just one color =)?
You should consider that you maybe need a color type for negative messages (Red color) and some for positive messages (Green color).

So atleast 2 Colors you should always add in my opinion  :)

And if you want people to keep on work here, maybe add always all the new stuff to the new code post you do, so its more obvious what is "added" or "done" yet in that script^^

And you should propably add on first post a description on how your climb mode should be working etc, so people can easily dip in and continue if they feel so  ;) (for example how many players are supposed to play it, what team is used? both? etc)

Regards
BCB-Clan Page
You also can find clan BCB on our servers.

BCB-Soldier till i die!

Offline TheOne

  • Soldier
  • **
  • Posts: 208
Re: Climb Idea
« Reply #6 on: April 11, 2013, 03:33:06 am »
Will there be checkpoints, commands to switch teams, saving of best-score-times for maps and players, a !nextmap vote, a system to judge maps..

Offline skrX

  • Soldier
  • **
  • Posts: 112
  • x ye.
Re: Climb Idea
« Reply #7 on: April 11, 2013, 03:11:06 pm »
You can add the time cap flags on a specific map :D