Results 1 to 7 of 7

Thread: Problems !

  1. #1
    Join Date
    Feb 2006
    Posts
    3,044
    Mentioned
    4 Post(s)
    Quoted
    21 Post(s)

    Default Problems !

    Problem is.. i wan't it to change players, when loads are equally with DONE
    But it changes player after one trip.. forever..

    I can script.. but this SRL stuff.. :P

    Code:
    Begin
    SetupSRL;
    Done :=0;
    DeclarePlayers;
    ActivateClient;
    Colorshit1;
    repeat
    WalkFlax;
    PickingFlax;
    Progressreport;
    GoBank;
    Openbank4;
    DepositAll;
    Closebank;
        Players[CurrentPlayer].Banked:=Players[CurrentPlayer].Banked+1;
        Players[CurrentPlayer].loc:='Bank';
    Done:= Done + 1;
    ProgressReport;
    if(Done=Loads) then
    Repeat
    FindNormalRandoms;
    Wait(1000)
    until(not(LoggedIn))
    Done :=0;
             NextPlayer(True);
       if (not(Loggedin)) then NextPlayer(False);
     until(False);
    
    end.

  2. #2
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    I believe this will work:

    SCAR Code:
    Begin
      SetupSRL;
      Done :=0;
      DeclarePlayers;
      ActivateClient;
      Colorshit1;
      repeat
        WalkFlax;
        PickingFlax;
        Progressreport;
        GoBank;
        Openbank4;
        DepositAll;
        Closebank;
        Players[CurrentPlayer].Banked:= Players[CurrentPlayer].Banked + 1;
        Players[CurrentPlayer].loc:= 'Bank';
        Done:= Done + 1;
        ProgressReport;
        if(Done = Loads) then
        begin
          Done:= 0;
          Repeat
            FindNormalRandoms;
            Wait(1000);
          until(not(LoggedIn))
          wait(1000 + random(5000));
          NextPlayer(true);
        end;
        if (not(Loggedin)) then NextPlayer(false);
      until(False);
    end.
    Interested in C# and Electrical Engineering? This might interest you.

  3. #3
    Join Date
    Feb 2006
    Posts
    3,044
    Mentioned
    4 Post(s)
    Quoted
    21 Post(s)

    Default

    But did it have SRL stuff.. uhm.. yoiu know now it changes Player correctly.. MAN I SUCK AT SRL STUFF :P

  4. #4
    Join Date
    Oct 2006
    Location
    Texas
    Posts
    1,450
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    Didn't you make a flaxor over at mopars that "had" an auth?

  5. #5
    Join Date
    Dec 2006
    Location
    .̿̂̔͋͗̎̆ͥ̍̒ͤ͂̾̌̀̅
    Posts
    3,012
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Yes, he also cracked starblaster100's essminer and then star cracked his script and released it.

  6. #6
    Join Date
    Oct 2006
    Location
    Texas
    Posts
    1,450
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by GoF View Post
    Yes, he also cracked starblaster100's essminer and then star cracked his script and released it.
    Yea, thats what I meant by "had" lol.

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

    Default

    if u want per player

    SCAR Code:
    if Players[CurrentPlayer].Banekd mod Loadsperplayer = 0 then

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. SQL Problems. Please help!
    By Da 0wner in forum Web Development
    Replies: 10
    Last Post: 01-22-2009, 02:03 AM
  2. Computer problems... Terrible computer problems...
    By Jason2gs in forum News and General
    Replies: 22
    Last Post: 04-26-2007, 12:02 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
  •