Results 1 to 8 of 8

Thread: Errors with First Script/Form

  1. #1
    Join Date
    Jun 2007
    Location
    Kentucky, United States of America
    Posts
    409
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Errors with First Script/Form

    I tried searching the forums, but couldn't find anything that would solve this.

    I keep getting an error saying that an identifier is expected in line 38. Not sure what it needs.

    Here's the script. Let me know if you see anything else that's extremely wrong.

    Edit: Here's the updated script without the identifier error. Read below for the new problem :\

    SCAR Code:
    {====================================================================|
    |      CrossBack7's Autotalker 0.1 - First Script                    |
    |       -Can Enter Up to Four Messages.                              |
    |       -If No Message Is Entered, It Will Not Type Anything for It. |
    |       -Just Fill In Form and Press Start.                          |
    |       -Hope to Include Autotrader in Later Version.                |
    | Suggestions are appreciated.  This is basically a little of a      |
    |variation on Bebemycat2's tut.  Thanks to her for her help.         |
    |I'd like to add more to this.                                       |
    |====================================================================|
    }



    program Gab;

    {.include srl/srl.scar}
    var
      Autotalker : TForm;
      FirstMessage : TLabel;
      SecondMessage : TLabel;
      ThirdMessage : TLabel;
      FourthMessage : TLabel;
      Label1 : TLabel;
      Button1 : TButton;
      Edit1 : TEdit;
      Edit2 : TEdit;
      Edit3 : TEdit;
      Edit4 : TEdit;
      Message1, Message2, Message3, Message4: String;


    procedure ButtonClick(Sender: TObject);

    begin
      Button1.ModalResult:=MrOk;
    end;


    procedure InitForm;

    begin

    Autotalker := CreateForm;
    Autotalker.Left := 250;
    Autotalker.Top := 114;
    Autotalker.Width := 696;
    Autotalker.Height := 480;
    Autotalker.Caption := 'Autotalker';
    Autotalker.Color := cl3DLight;
    Autotalker.Font.Color := clWindowText;
    Autotalker.Font.Height := -11;
    Autotalker.Font.Name := 'MS Sans Serif';
    Autotalker.Font.Style := [];
    Autotalker.ShowHint := True;
    Autotalker.Visible := False;
    Autotalker.PixelsPerInch := 96;
    FirstMessage := TLabel.Create(Autotalker);
    FirstMessage.Parent := Autotalker;
    FirstMessage.Left := 82;
    FirstMessage.Top := 29;
    FirstMessage.Width := 80;
    FirstMessage.Height := 18;
    FirstMessage.Caption := 'First Message';
    FirstMessage.Font.Color := clMaroon;
    FirstMessage.Font.Height := -16;
    FirstMessage.Font.Name := 'Perpetua';
    FirstMessage.Font.Style := [];
    FirstMessage.ParentFont := False;
    SecondMessage := TLabel.Create(Autotalker);
    SecondMessage.Parent := Autotalker;
    SecondMessage.Left := 82;
    SecondMessage.Top := 105;
    SecondMessage.Width := 102;
    SecondMessage.Height := 18;
    SecondMessage.Caption := 'Second Message';
    SecondMessage.Font.Color := clNavy;
    SecondMessage.Font.Height := -16;
    SecondMessage.Font.Name := 'Perpetua';
    SecondMessage.Font.Style := [];
    SecondMessage.ParentFont := False;
    ThirdMessage := TLabel.Create(Autotalker);
    ThirdMessage.Parent := Autotalker;
    ThirdMessage.Left := 82;
    ThirdMessage.Top := 171;
    ThirdMessage.Width := 264;
    ThirdMessage.Height := 18;
    ThirdMessage.Caption := 'Third Message';
    ThirdMessage.Font.Color := clPurple;
    ThirdMessage.Font.Height := -16;
    ThirdMessage.Font.Name := 'Perpetua';
    ThirdMessage.Font.Style := [];
    ThirdMessage.ParentFont := False;
    FourthMessage := TLabel.Create(Autotalker);
    FourthMessage.Parent := Autotalker;
    FourthMessage.Left := 82;
    FourthMessage.Top := 241;
    FourthMessage.Width := 112;
    FourthMessage.Height := 18;
    FourthMessage.Caption := 'Fourth Message';
    FourthMessage.Font.Color := clAqua;
    FourthMessage.Font.Height := -16;
    FourthMessage.Font.Name := 'Perpetua';
    FourthMessage.Font.Style := [];
    FourthMessage.ParentFont := False;
    Label1 := TLabel.Create(Autotalker);
    Label1.Parent := Autotalker;
    Label1.Left := 205;
    Label1.Top := 11;
    Label1.Width := 219;
    Label1.Height := 28;
    Label1.Caption := 'Crossback7'#39's Autotalker!';
    Label1.Font.Color := clLime;
    Label1.Font.Height := -24;
    Label1.Font.Name := 'Perpetua';
    Label1.Font.Style := [];
    Label1.ParentFont := False;
    Button1 := TButton.Create(Autotalker);
    Button1.Parent := Autotalker;
    Button1.Left := 310;
    Button1.Top := 372;
    Button1.Width := 75;
    Button1.Height := 25;
    Button1.Cursor := crHandPoint;
    Button1.Caption := 'Start';
    Button1.Font.Color := clRed;
    Button1.Font.Height := -16;
    Button1.Font.Name := 'Papyrus';
    Button1.Font.Style := [fsBold];
    Button1.ParentFont := False;
    Button1.TabOrder := 8;
    Edit1 := TEdit.Create(Autotalker);
    Edit1.Parent := Autotalker;
    Edit1.Left := 77;
    Edit1.Top := 55;
    Edit1.Width := 480;
    Edit1.Height := 21;
    Edit1.TabOrder := 9;
    Edit2 := TEdit.Create(Autotalker);
    Edit2.Parent := Autotalker;
    Edit2.Left := 77;
    Edit2.Top := 129;
    Edit2.Width := 480;
    Edit2.Height := 21;
    Edit2.TabOrder := 10;
    Edit3 := TEdit.Create(Autotalker);
    Edit3.Parent := Autotalker;
    Edit3.Left := 77;
    Edit3.Top := 196;
    Edit3.Width := 480;
    Edit3.Height := 21;
    Edit3.TabOrder := 11;
    Edit4 := TEdit.Create(Autotalker);
    Edit4.Parent := Autotalker;
    Edit4.Left := 77;
    Edit4.Top := 267;
    Edit4.Width := 480;
    Edit4.Height := 21;
    Edit4.TabOrder := 12;
    end;

    procedure SafeInitForm;
    var
      v: TVariantArray;
    begin
      setarraylength(V, 0);
      ThreadSafeCall('InitForm', v);
    end;

    procedure ShowFormModal;
    begin
      AutoTalker.ShowModal;
    end;

    procedure SafeShowFormModal;
    var
      v: TVariantArray;
    begin
      setarraylength(V, 0);
      ThreadSafeCall('ShowFormModal', v);
    end;


    procedure DefineMessages;

    begin
      Message1:=Edit1.Text;
      Message2:=Edit2.Text;
      Message3:=Edit3.Text;
      Message4:=Edit4.Text;
    end;


    procedure Speak;

    begin
       TypeSend(Message1);
        Wait(1500 + random(500));
         TypeSend(Message2);
          Wait(1500 + random(500));
         TypeSend(Message3);
        Wait(1500 + random(500));
       TypeSend(Message4);
      Wait(1500 + random(500));
    end;


    begin
     SetupSRL;
      SafeInitForm;
       SafeShowFormModal;
        ActivateClient;
         DefineMessages;
         repeat
        Speak
       until(false)
    end.

  2. #2
    Join Date
    Jan 2007
    Location
    Kansas
    Posts
    3,760
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Change your code to this, the error you had was you had a colon instead of semicolon after one of your edits. This also will fix the problem of the script on starting when you click start

    SCAR Code:
    {====================================================================|
    |      CrossBack7's Autotalker 0.1 - First Script                    |
    |       -Can Enter Up to Four Messages.                              |
    |       -If No Message Is Entered, It Will Not Type Anything for It. |
    |       -Just Fill In Form and Press Start.                          |
    |       -Hope to Include Autotrader in Later Version.                |
    | Suggestions are appreciated.  This is basically a little of a      |
    |variation on Bebemycat2's tut.  Thanks to her for her help.         |
    |I'd like to add more to this.                                       |
    |====================================================================|
    }



    program Gab;

    {.include srl/srl.scar}
    var
      Autotalker : TForm;
      FirstMessage : TLabel;
      SecondMessage : TLabel;
      ThirdMessage : TLabel;
      FourthMessage : TLabel;
      Label1 : TLabel;
      Button1 : TButton;
      Edit1 : TEdit;
      Edit2 : TEdit;
      Edit3 : TEdit;
      Edit4 : TEdit;
      Message1, Message2, Message3, Message4: String;

    procedure ButtonClick(Sender: TObject);
    begin
      Button1.ModalResult:=MrOk;
    end;

    procedure InitForm;

    begin

    Autotalker := CreateForm;
    Autotalker.Left := 250;
    Autotalker.Top := 114;
    Autotalker.Width := 696;
    Autotalker.Height := 480;
    Autotalker.Caption := 'Autotalker';
    Autotalker.Color := cl3DLight;
    Autotalker.Font.Color := clWindowText;
    Autotalker.Font.Height := -11;
    Autotalker.Font.Name := 'MS Sans Serif';
    Autotalker.Font.Style := [];
    Autotalker.ShowHint := True;
    Autotalker.Visible := False;
    Autotalker.PixelsPerInch := 96;
    FirstMessage := TLabel.Create(Autotalker);
    FirstMessage.Parent := Autotalker;
    FirstMessage.Left := 82;
    FirstMessage.Top := 29;
    FirstMessage.Width := 80;
    FirstMessage.Height := 18;
    FirstMessage.Caption := 'First Message';
    FirstMessage.Font.Color := clMaroon;
    FirstMessage.Font.Height := -16;
    FirstMessage.Font.Name := 'Perpetua';
    FirstMessage.Font.Style := [];
    FirstMessage.ParentFont := False;
    SecondMessage := TLabel.Create(Autotalker);
    SecondMessage.Parent := Autotalker;
    SecondMessage.Left := 82;
    SecondMessage.Top := 105;
    SecondMessage.Width := 102;
    SecondMessage.Height := 18;
    SecondMessage.Caption := 'Second Message';
    SecondMessage.Font.Color := clNavy;
    SecondMessage.Font.Height := -16;
    SecondMessage.Font.Name := 'Perpetua';
    SecondMessage.Font.Style := [];
    SecondMessage.ParentFont := False;
    ThirdMessage := TLabel.Create(Autotalker);
    ThirdMessage.Parent := Autotalker;
    ThirdMessage.Left := 82;
    ThirdMessage.Top := 171;
    ThirdMessage.Width := 264;
    ThirdMessage.Height := 18;
    ThirdMessage.Caption := 'Third Message';
    ThirdMessage.Font.Color := clPurple;
    ThirdMessage.Font.Height := -16;
    ThirdMessage.Font.Name := 'Perpetua';
    ThirdMessage.Font.Style := [];
    ThirdMessage.ParentFont := False;
    FourthMessage := TLabel.Create(Autotalker);
    FourthMessage.Parent := Autotalker;
    FourthMessage.Left := 82;
    FourthMessage.Top := 241;
    FourthMessage.Width := 112;
    FourthMessage.Height := 18;
    FourthMessage.Caption := 'Fourth Message';
    FourthMessage.Font.Color := clAqua;
    FourthMessage.Font.Height := -16;
    FourthMessage.Font.Name := 'Perpetua';
    FourthMessage.Font.Style := [];
    FourthMessage.ParentFont := False;
    Label1 := TLabel.Create(Autotalker);
    Label1.Parent := Autotalker;
    Label1.Left := 205;
    Label1.Top := 11;
    Label1.Width := 219;
    Label1.Height := 28;
    Label1.Caption := 'Crossback7'#39's Autotalker!';
    Label1.Font.Color := clLime;
    Label1.Font.Height := -24;
    Label1.Font.Name := 'Perpetua';
    Label1.Font.Style := [];
    Label1.ParentFont := False;
    Button1 := TButton.Create(Autotalker);
    Button1.Parent := Autotalker;
    Button1.Left := 310;
    Button1.Top := 372;
    Button1.Width := 75;
    Button1.Height := 25;
    Button1.Cursor := crHandPoint;
    Button1.Caption := 'Start';
    Button1.Font.Color := clRed;
    Button1.Font.Height := -16;
    Button1.Font.Name := 'Papyrus';
    Button1.Font.Style := [fsBold];
    Button1.ParentFont := False;
    Button1.TabOrder := 8;
    Button1.ModalResult:=MrOk;
    Edit1 := TEdit.Create(Autotalker);
    Edit1.Parent := Autotalker;
    Edit1.Left := 77;
    Edit1.Top := 55;
    Edit1.Width := 480;
    Edit1.Height := 21;
    Edit1.TabOrder := 9;
    Edit2 := TEdit.Create(Autotalker);
    Edit2.Parent := Autotalker;
    Edit2.Left := 77;
    Edit2.Top := 129;
    Edit2.Width := 480;
    Edit2.Height := 21;
    Edit2.TabOrder := 10;
    Edit3 := TEdit.Create(Autotalker);
    Edit3.Parent := Autotalker;
    Edit3.Left := 77;
    Edit3.Top := 196;
    Edit3.Width := 480;
    Edit3.Height := 21;
    Edit3.TabOrder := 11;
    Edit4 := TEdit.Create(Autotalker);
    Edit4.Parent := Autotalker;
    Edit4.Left := 77;
    Edit4.Top := 267;
    Edit4.Width := 480;
    Edit4.Height := 21;
    Edit4.TabOrder := 12;
    end;

    procedure SafeInitForm;
    var
      v: TVariantArray;
    begin
      setarraylength(V, 0);
      ThreadSafeCall('InitForm', v);
    end;

    procedure ShowFormModal;
    begin
      AutoTalker.ShowModal;
    end;

    procedure SafeShowFormModal;
    var
      v: TVariantArray;
    begin
      setarraylength(V, 0);
      ThreadSafeCall('ShowFormModal', v);
    end;

    procedure DefineTalk;

    begin
      Message1:=Edit1.Text;
      Message2:=Edit2.Text;
      Message3:=Edit3.Text;
      Message4:=Edit4.Text;
    end;


    procedure Speak;

    begin
     TypeSend(Message1);
      Wait(2000 + random(500));
       TypeSend(Message2);
        Wait(2000 + random(500));
       TypeSend(Message3);
      Wait(2000 + random(500));
     TypeSend(Message4);
    Wait(2000 + random(500));
    end;

    begin
     SetupSRL;
      ActivateClient;
       SafeInitForm;
        SafeShowFormModal;
        DefineTalk;
         repeat
        Speak
       until(false)
    end.


  3. #3
    Join Date
    Jun 2007
    Location
    Kentucky, United States of America
    Posts
    409
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ah thank you. I found the colon problem, but yeah. . .I was still having troubles with the starting the script when I pressed the start button. Looks like the tut I was reading wasn't quite right.

    Edit: The form still doesn't go away when I press the start button, but it starts working when I X out of the form after entering the messages. Any idea? I'm assuming it's something to do with the button click procedure.

  4. #4
    Join Date
    May 2006
    Posts
    1,230
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by crossback7 View Post
    Ah thank you. I found the colon problem, but yeah. . .I was still having troubles with the starting the script when I pressed the start button. Looks like the tut I was reading wasn't quite right.

    Edit: The form still doesn't go away when I press the start button, but it starts working when I X out of the form after entering the messages. Any idea? I'm assuming it's something to do with the button click procedure.
    it closed for me.

    make sure the start button has this
    <startbutton name>.ModalResult:=MrOk;

  5. #5
    Join Date
    Jun 2007
    Location
    Kentucky, United States of America
    Posts
    409
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Wow, that's really odd. It doesn't close for me, nor my friend. And the start button does have that. Anyone else have any idea why the form doesn't close properly?

  6. #6
    Join Date
    May 2007
    Location
    Canada
    Posts
    261
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This should work
    Comments are in script to show what you did wrong.
    SCAR Code:
    {====================================================================|
    |      CrossBack7's Autotalker 0.1 - First Script                    |
    |       -Can Enter Up to Four Messages.                              |
    |       -If No Message Is Entered, It Will Not Type Anything for It. |
    |       -Just Fill In Form and Press Start.                          |
    |       -Hope to Include Autotrader in Later Version.                |
    | Suggestions are appreciated.  This is basically a little of a      |
    |variation on Bebemycat2's tut.  Thanks to her for her help.         |
    |I'd like to add more to this.                                       |
    |====================================================================|
    }



    program Gab;

    {.include srl/srl.scar}
    var
      Autotalker : TForm;
      FirstMessage : TLabel;
      SecondMessage : TLabel;
      ThirdMessage : TLabel;
      FourthMessage : TLabel;
      Label1 : TLabel;
      Button1 : TButton;
      Edit1 : TEdit;
      Edit2 : TEdit;
      Edit3 : TEdit;
      Edit4 : TEdit;
      Message1, Message2, Message3, Message4: String;

    procedure ButtonClick(Sender: TObject);
    begin
      Autotalker.ModalResult:=MrOk; // Instead of Button1.Modal it should be as it is now
    end;

    procedure InitForm;

    begin

    Autotalker := CreateForm;
    Autotalker.Left := 250;
    Autotalker.Top := 114;
    Autotalker.Width := 696;
    Autotalker.Height := 480;
    Autotalker.Caption := 'Autotalker';
    Autotalker.Color := cl3DLight;
    Autotalker.Font.Color := clWindowText;
    Autotalker.Font.Height := -11;
    Autotalker.Font.Name := 'MS Sans Serif';
    Autotalker.Font.Style := [];
    Autotalker.ShowHint := True;
    Autotalker.Visible := False;
    Autotalker.PixelsPerInch := 96;
    FirstMessage := TLabel.Create(Autotalker);
    FirstMessage.Parent := Autotalker;
    FirstMessage.Left := 82;
    FirstMessage.Top := 29;
    FirstMessage.Width := 80;
    FirstMessage.Height := 18;
    FirstMessage.Caption := 'First Message';
    FirstMessage.Font.Color := clMaroon;
    FirstMessage.Font.Height := -16;
    FirstMessage.Font.Name := 'Perpetua';
    FirstMessage.Font.Style := [];
    FirstMessage.ParentFont := False;
    SecondMessage := TLabel.Create(Autotalker);
    SecondMessage.Parent := Autotalker;
    SecondMessage.Left := 82;
    SecondMessage.Top := 105;
    SecondMessage.Width := 102;
    SecondMessage.Height := 18;
    SecondMessage.Caption := 'Second Message';
    SecondMessage.Font.Color := clNavy;
    SecondMessage.Font.Height := -16;
    SecondMessage.Font.Name := 'Perpetua';
    SecondMessage.Font.Style := [];
    SecondMessage.ParentFont := False;
    ThirdMessage := TLabel.Create(Autotalker);
    ThirdMessage.Parent := Autotalker;
    ThirdMessage.Left := 82;
    ThirdMessage.Top := 171;
    ThirdMessage.Width := 264;
    ThirdMessage.Height := 18;
    ThirdMessage.Caption := 'Third Message';
    ThirdMessage.Font.Color := clPurple;
    ThirdMessage.Font.Height := -16;
    ThirdMessage.Font.Name := 'Perpetua';
    ThirdMessage.Font.Style := [];
    ThirdMessage.ParentFont := False;
    FourthMessage := TLabel.Create(Autotalker);
    FourthMessage.Parent := Autotalker;
    FourthMessage.Left := 82;
    FourthMessage.Top := 241;
    FourthMessage.Width := 112;
    FourthMessage.Height := 18;
    FourthMessage.Caption := 'Fourth Message';
    FourthMessage.Font.Color := clAqua;
    FourthMessage.Font.Height := -16;
    FourthMessage.Font.Name := 'Perpetua';
    FourthMessage.Font.Style := [];
    FourthMessage.ParentFont := False;
    Label1 := TLabel.Create(Autotalker);
    Label1.Parent := Autotalker;
    Label1.Left := 205;
    Label1.Top := 11;
    Label1.Width := 219;
    Label1.Height := 28;
    Label1.Caption := 'Crossback7'#39's Autotalker!';
    Label1.Font.Color := clLime;
    Label1.Font.Height := -24;
    Label1.Font.Name := 'Perpetua';
    Label1.Font.Style := [];
    Label1.ParentFont := False;
    Button1 := TButton.Create(Autotalker);
    Button1.Parent := Autotalker;
    Button1.OnClick := @ButtonClick; // You didn't add this
    Button1.Left := 310;
    Button1.Top := 372;
    Button1.Width := 75;
    Button1.Height := 25;
    Button1.Cursor := crHandPoint;
    Button1.Caption := 'Start';
    Button1.Font.Color := clRed;
    Button1.Font.Height := -16;
    Button1.Font.Name := 'Papyrus';
    Button1.Font.Style := [fsBold];
    Button1.ParentFont := False;
    Button1.TabOrder := 8;
    Edit1 := TEdit.Create(Autotalker);
    Edit1.Parent := Autotalker;
    Edit1.Left := 77;
    Edit1.Top := 55;
    Edit1.Width := 480;
    Edit1.Height := 21;
    Edit1.TabOrder := 9;
    Edit2 := TEdit.Create(Autotalker);
    Edit2.Parent := Autotalker;
    Edit2.Left := 77;
    Edit2.Top := 129;
    Edit2.Width := 480;
    Edit2.Height := 21;
    Edit2.TabOrder := 10;
    Edit3 := TEdit.Create(Autotalker);
    Edit3.Parent := Autotalker;
    Edit3.Left := 77;
    Edit3.Top := 196;
    Edit3.Width := 480;
    Edit3.Height := 21;
    Edit3.TabOrder := 11;
    Edit4 := TEdit.Create(Autotalker);
    Edit4.Parent := Autotalker;
    Edit4.Left := 77;
    Edit4.Top := 267;
    Edit4.Width := 480;
    Edit4.Height := 21;
    Edit4.TabOrder := 12;
    end;

    procedure SafeInitForm;
    var
      v: TVariantArray;
    begin
      setarraylength(V, 0);
      ThreadSafeCall('InitForm', v);
    end;

    procedure ShowFormModal;
    begin
      AutoTalker.ShowModal;
    end;

    procedure SafeShowFormModal;
    var
      v: TVariantArray;
    begin
      setarraylength(V, 0);
      ThreadSafeCall('ShowFormModal', v);
    end;

    procedure DefineTalk;

    begin
      Message1:=Edit1.Text;
      Message2:=Edit2.Text;
      Message3:=Edit3.Text;
      Message4:=Edit4.Text;
    end;


    procedure Speak;

    begin
     TypeSend(Message1);
      Wait(2000 + random(500));
       TypeSend(Message2);
        Wait(2000 + random(500));
       TypeSend(Message3);
      Wait(2000 + random(500));
     TypeSend(Message4);
    Wait(2000 + random(500));
    end;

    begin
     SetupSRL;
      ActivateClient;
       SafeInitForm;
        SafeShowFormModal;
        DefineTalk;
         repeat
        Speak
       until(false)
    end.
    On vacation from July 2nd till middle of August


    Account Creator and Tutorial Island Runner (member | public) Errors fixed


    Check out my Complete forms tutorial. It will teach you everything you need to know about forms.

  7. #7
    Join Date
    May 2007
    Location
    baltimore, md
    Posts
    836
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    you made a proc for the starting but you have to call it as shown above.

  8. #8
    Join Date
    Jun 2007
    Location
    Kentucky, United States of America
    Posts
    409
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yeah, it works now, thanks a ton. Now to add that auto accepter.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. 2 Errors in my script.
    By Biogenes in forum OSR Help
    Replies: 2
    Last Post: 02-18-2008, 04:40 PM
  2. Errors with my script...
    By Runescapian321 in forum OSR Help
    Replies: 4
    Last Post: 01-06-2008, 04:04 PM
  3. First Script, Several Errors
    By Jackrawl in forum OSR Help
    Replies: 8
    Last Post: 09-11-2007, 10:03 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •