Results 1 to 2 of 2

Thread: rsps miner and banker

  1. #1
    Join Date
    Mar 2013
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default rsps miner and banker

    hello,
    i made a script that mines iron and then banks it
    it works perfectly
    the problem is once it does all the functions once, it stops (finishes).
    how i let it run unlimited?

    Simba Code:
    Program M;
    {$I RSPS/srlRSPS.Simba}
    {$I RSPS/cor/prayer.Simba}

    var
      _mySerer:_rsps_server;
      Bank, t, z:Integer;

    begin
      _myServer.init(317, '317 server');
          Bank := BitmapFromString(33, 24, 'meJy1ls1KAlEYhg1CMrUCHUSwH3' +
            'ITtEoshCgkMsgMaxmKBQMRRIugTZuIWnYBdQNdgBfQnXQxPfHSx+H' +
            'kz8xi4GU4fc48zznnOzoN7p8HiWUmlao3j7tXd4kGC9f2xfXUdPo3' +
            'ZDadHpdsLu890jjqbO0dRleIs3r+tnL6ynW99+GGSmn31rPEUgCfK' +
            '9eWNs8El0guUj54IAwqJ4+uJa5ifq2BpbAdCisFZCZfrPWw8xEVdy' +
            '3RFfAh5KutTGEZkSYsBVi8FPmU4OJTbpYlokJ8BQIWmExVCnaGOhX' +
            '4jLWH3FYsBhEV8EvVGo8Iog3BIiBRF6gz3rh8qYRDFNwcfRUoeHx/' +
            'sat2Q2ZnZOEqPiuqP32SX2k4pBKrF5DBcrWOq60MsDAAyw3Mv//+h' +
            'QU+9biKhVbOorZCNovOAAtUo7WZXCNulLCt7yZhoL5oIWyOWfhT51' +
            'mHSutCwU+Bp8juZEbCxbfW64hqzhIxkE512j1BIZQLFx+yfj1MoV4' +
            'zYfuCa38oUpmgENDjQ2Y3iG2UKcS3L4gdMB3acQqPb003hbsKD64d' +
            'sy/F/3ZPUFgjFOu4kRnrl8rmH0Xh8t212EYxYVkE16Fy+XFX4Vns3' +
            'BKaSwX41FcSipHRy05p/72YmLBlJNxTMIgbYZWpN6NAlFyCIOA/EC' +
            'zJBT75AbDWSP8=');
        for t:=1 to 2 do
      begin //need a begin if you are performing >1 action
        for t:= 1 to 60 do
        MineRock;
        wait(6000);
        BankRocks;
        wait(3000);
        BankButton;
        wait(3000);
        GoToRock;
      end;
    end.

    what i meant by 1-60 is the attempts to mine is 60 times then go to the banking etc..... (it works good) but doesnt redo all the things form the beginning.
    Last edited by Ahmedo0o; 07-15-2015 at 12:19 AM.

  2. #2
    Join Date
    Apr 2015
    Location
    FireFox
    Posts
    528
    Mentioned
    10 Post(s)
    Quoted
    227 Post(s)

    Default

    Simba Code:
    1. repeat
    2.   //procedures you wish to repeat
    3. until false;
    Scripting with ogLib

Thread Information

Users Browsing this Thread

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

Posting Permissions

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