Results 1 to 12 of 12

Thread: why wont this work?

  1. #1
    Join Date
    Feb 2007
    Posts
    143
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default why wont this work?

    okay so i im just starting an air runner, and it doesnt do anything but log on thus far its about 5 minuites in the making.... but for some reason it wont change the compass angle or set to the highest point.... it just doesnt do anything..... it logs on then just sits there, why?

    SCAR Code:
    program AirRunner;
     {.include SRL/SRL.scar}

    //const


    //var


    procedure DeclarePlayers;
      begin
       HowManyPlayers := 1; //total number of players
       NumberOfPlayers(HowManyPlayers);
       CurrentPlayer := 0; //First player to run
     
       {fill this out correctly.... and also, if you wanna add more players
       uncomment them and change the players above....}


       Players[0].Name := 'my user name';
       Players[0].Pass := 'pass here';
       Players[0].Nick := 'veg';
       Players[0].Active := True;

     { Players[1].Name := 'name';
       Players[1].Pass := 'pass';
       Players[1].Nick := 'nick';
       Players[1].Active := True;

       Players[2].Name := 'name';
       Players[2].Pass := 'pass';
       Players[2].Nick := 'nick';
       Players[2].Active := True;

       Players[3].Name := 'name';
       Players[3].Pass := 'pass';
       Players[3].Nick := 'nick';
       Players[3].Active := True;  }



       NickNameBMP := CreateBitmapMaskFromText(Players[CurrentPlayer].Nick, UpChars);
      end;
     
     
    {procedure LoadBmps;
      begin
     
      end;
     
    procedure ToTheAlter; }


    procedure SetCompass;
      begin
       MakeCompass('S');
       HighestAngle;
      end;



    begin
     ClearDebug;
     SetupSRL;
     Wait(950);
     DeclarePlayers;
     LoginPlayer;
     Wait(950);
     SetCompass;
     WriteLn('beginning the walk');

    end.

  2. #2
    Join Date
    Oct 2007
    Location
    http://ushort.us/oqmd65
    Posts
    2,605
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    try activating client?
    I do visit every 2-6 months

  3. #3
    Join Date
    Feb 2007
    Posts
    143
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    how do i do that? lol

  4. #4
    Join Date
    Jul 2007
    Location
    Missouri
    Posts
    318
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    begin
     ClearDebug;
     SetupSRL;
     ActivateClient; // <------------like that
     Wait(950);
     DeclarePlayers;
     LoginPlayer;
     Wait(950);
     SetCompass;
     WriteLn('beginning the walk');

    end.

    i think

  5. #5
    Join Date
    Jul 2007
    Posts
    1,431
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Problem may be in browser aswell, example for me arrows don't for with IE7 sometimes, try SCSS?
    [CENTER][SIZE="4"]Inactive[/SIZE]I forgot my password[/CENTER]

  6. #6
    Join Date
    Feb 2007
    Posts
    143
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    lol that activate thing was tough..... what is scss? i use mozilla for a browseR? thankyou for the help

  7. #7
    Join Date
    Oct 2007
    Location
    http://ushort.us/oqmd65
    Posts
    2,605
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    oo scar doesn't work with mozilla for me.
    I do visit every 2-6 months

  8. #8
    Join Date
    Jul 2007
    Location
    Missouri
    Posts
    318
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    did it work for you now?

  9. #9
    Join Date
    Feb 2007
    Posts
    143
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    no its still not working.... its weird because i can use other people scripts and they work fine, but this wont even do anythign after i log in, it wont click or anything..... this is what i have now because i wanted to watch it click

    SCAR Code:
    program AirRunner;
     {.include SRL/SRL.scar}

    //const


    //var


    procedure DeclarePlayers;
      begin
       HowManyPlayers := 1; //total number of players
       NumberOfPlayers(HowManyPlayers);
       CurrentPlayer := 0; //First player to run
     
       {fill this out correctly.... and also, if you wanna add more players
       uncomment them and change the players above....}


       Players[0].Name := 'oooops';
       Players[0].Pass := 'lol';
       Players[0].Nick := 'veg';
       Players[0].Active := True;

     { Players[1].Name := 'name';
       Players[1].Pass := 'pass';
       Players[1].Nick := 'nick';
       Players[1].Active := True;

       Players[2].Name := 'name';
       Players[2].Pass := 'pass';
       Players[2].Nick := 'nick';
       Players[2].Active := True;

       Players[3].Name := 'name';
       Players[3].Pass := 'pass';
       Players[3].Nick := 'nick';
       Players[3].Active := True;  }



       NickNameBMP := CreateBitmapMaskFromText(Players[CurrentPlayer].Nick, UpChars);
      end;
     
     
    {procedure LoadBmps;
      begin
     
      end;}

     
    procedure ToTheAlter;
      begin
      RadialRoadWalk(RoadColor, 270, 320, 60, -1, 0);
      end;

    procedure SetCompass;
      begin
       MakeCompass('S');
       HighestAngle;
      end;



    begin
     ClearDebug;
     SetupSRL;
     Wait(950);
     DeclarePlayers;
     LoginPlayer;
     Wait(950);
     ActivateClient;
     SetCompass;
     ToTheAlter;
     WriteLn('beginning the walk');

    end.

    and it doesnt.....

  10. #10
    Join Date
    Feb 2007
    Posts
    143
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SORRY!!! i double posted trying to edit my old one, which i lefy my name n pass in.... im so smarte......

  11. #11
    Join Date
    Jun 2007
    Posts
    1,312
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    OooOo another one interested in RC scripts? If you can do one, you'll have my vote when you go for members! (If I can make it before you, that is.)

    The problem is the same as the one in your other thread, it scans for the color '0' because RoadColor is not defined.
    Active only during the Summer...

  12. #12
    Join Date
    Feb 2007
    Location
    PA, USA
    Posts
    5,240
    Mentioned
    36 Post(s)
    Quoted
    496 Post(s)

    Default

    SCAR Code:
    If FindRs Then
      begin
        ActivateClient;
      end else
      Begin
        Writeln('No RS');
        TerminateScript;
      end;
    that way it dosn't just activate any old client. and SCSS is Shit Compared to Scar Sape. and it can be found in the scar folder in SRL =p

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Why wont this work
    By philowns in forum OSR Help
    Replies: 3
    Last Post: 07-29-2007, 01:36 AM
  2. Why wont this work
    By philowns in forum OSR Help
    Replies: 8
    Last Post: 07-28-2007, 07:12 PM
  3. Just wont work
    By reece844 in forum OSR Help
    Replies: 5
    Last Post: 04-24-2007, 09:01 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
  •