Page 18 of 38 FirstFirst ... 8161718192028 ... LastLast
Results 426 to 450 of 945

Thread: Simple FightCaveTrainer

  1. #426
    Join Date
    Mar 2012
    Posts
    47
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Do you think this script is safe with no Anti ban? Its basically afking the whole time.

  2. #427
    Join Date
    Mar 2013
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Well it ran perfectly whole night but it trained me one def level, one attack level and three str levels? Is there anything I can avoid this? all I want is str levels?

  3. #428
    Join Date
    Mar 2013
    Posts
    73
    Mentioned
    0 Post(s)
    Quoted
    26 Post(s)

    Default

    Damn it got you def, that really blows! Glad I read that before I ran script lol..

  4. #429
    Join Date
    Oct 2012
    Posts
    758
    Mentioned
    6 Post(s)
    Quoted
    282 Post(s)

    Default

    ohh that sucks you got defence I feel really bad for you you can make a new accunt and start botting again what will you do now?? your account is ruin

  5. #430
    Join Date
    Mar 2013
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    whenever i run this script, smart is whitescreened but i can hear the music. other scripts work fine though.

  6. #431
    Join Date
    Oct 2012
    Posts
    758
    Mentioned
    6 Post(s)
    Quoted
    282 Post(s)

    Default

    that is really strange panda you have Java 6 ?

  7. #432
    Join Date
    Mar 2013
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    no i have the latest version of java 7.

  8. #433
    Join Date
    Apr 2008
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    very good script.
    had to log in just to say this



    noobman approves!

    is this the longest proggy?

  9. #434
    Join Date
    Mar 2013
    Posts
    56
    Mentioned
    0 Post(s)
    Quoted
    16 Post(s)

    Default

    Quote Originally Posted by imhigh View Post
    Well it ran perfectly whole night but it trained me one def level, one attack level and three str levels? Is there anything I can avoid this? all I want is str levels?
    Damn that sucks, I hope I don't get any def levels lol.
    What equipment were you using?

  10. #435
    Join Date
    Dec 2011
    Location
    Uk
    Posts
    40
    Mentioned
    0 Post(s)
    Quoted
    17 Post(s)

    Default

    [Error] C:\Simba\Scripts\simplefightcave.simba(17:3): Unknown identifier 'HowManyPlayers' at line 16
    Compiling failed.





    program FightCaveTrainer;

    {$DEFINE SMART}


    Const
    caveTol = 2;
    version = '0.6';

    Var
    counter, caveEntrances: Integer;
    caveEntranceWhite: TIntegerArray;

    Procedure DeclarePlayers;
    Begin
    HowManyPlayers := 1;
    NumberOfPlayers(HowManyPlayers);
    CurrentPlayer := 0;

    Players[0].Name := '';
    Players[0].Pass := '';
    Players[0].Nick := '';
    Players[0].Active := True;
    End;

    Function FightCaveSleep(sleepx, sleepy: Integer; retaliate: Boolean): Boolean;
    Var
    x , y, sleepTime: Integer;
    loop : Boolean;
    Begin
    loop := true;
    counter := 0;
    sleepTime := RandomRange(sleepx, sleepy);
    While loop Do
    Begin
    If FindObjCustom(x, y, [' '], caveEntranceWhite, caveTol) Then
    Begin
    Result := false;
    loop := false;
    WriteLn('We see cave entrance!');
    End Else If (not (InRange(Length(GetFightBarTPA(IntToBox(MSX1, MSY1, MSX2, MSY2))), 30, 150))) and (retaliate) Then
    Begin
    Result := false;
    loop := false;
    End Else If (sleepTime - counter > 0) and loop = true Then
    Begin
    wait(10);
    counter := (counter + 10);
    End Else
    Begin
    Result := True;
    loop := False;
    End;
    End;
    End;

    Procedure FightCaveLoop;
    Var
    x, y : Integer;
    Begin
    If FindObjCustom(x, y, ['nter'], caveEntranceWhite, caveTol) Then
    Begin
    WriteLn('Found correct cave!');
    ClickMouse2(True);
    While FindObjCustom(x, y, ['nter'], caveEntranceWhite, caveTol) Do
    Begin
    ClickMouse2(true);
    Wait(RandomRange(500, 1000));
    End;
    If RandomRange(1, 10) > 8 Then
    Begin
    SetRun(true);
    GameTab(tab_Stats);
    End;
    caveEntrances := (caveEntrances + 1);
    WriteLn('Entered cave.');
    ClearDebug;

    WriteLn('-* FightCaveTrainer v'+version);
    WriteLn('-* ');
    WriteLn('-* Entered: ' + intToStr(caveEntrances));
    WriteLn('-* Runtime: ' + TimeRunning);

    Wait(RandomRange(4000, 5000));
    SetAngle(0);
    End Else
    If (Not FindObjCustom(x, y, ['nter'], caveEntranceWhite, caveTol)) and (CountDots('yellow') > 0) Then
    Begin
    FightCaveSleep(200,500,False);
    If InRange(Length(GetFightBarTPA(IntToBox(MSX1, MSY1, MSX2, MSY2))), 30, 150) Then
    Begin
    If (FightCaveSleep(3000,5000,True)) Then
    Begin
    If InRange(Length(GetFightBarTPA(IntToBox(MSX1, MSY1, MSX2, MSY2))), 30, 150) Then
    Begin
    Retaliate(False);
    Wait(RandomRange(500,700));
    Retaliate(True);
    GameTab(tab_Stats);
    FightCaveSleep(3000,5000,False);
    End;
    End;
    End;
    End Else MakeCompass(185);
    End;

    Begin
    SetupSRL;
    DeclarePlayers;
    SetRun(True);
    GameTab(tab_Stats);
    caveEntranceWhite := [7763583, 8553356];
    MouseSpeed := 15;

    While(True) Do
    Begin
    If not LoggedIn Then
    Begin
    LogInPlayer;
    SetRun(True);
    GameTab(tab_Stats);
    MakeCompass(185);
    SetAngle(0);
    End;
    FightCaveLoop;
    End;
    End.

    my script been trying for hours

  11. #436
    Join Date
    Mar 2013
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    FightCaveTrainer v0.6
    -*
    -* Entered: 76
    -* Runtime: 12 Hours, 1 Minutes and 34 Seconds

  12. #437
    Join Date
    Feb 2012
    Posts
    249
    Mentioned
    0 Post(s)
    Quoted
    40 Post(s)

    Default

    Wow ...

    I just woke up and had 28 firecapes in my inventory!!!

    Thanks man
    'We ride together, we die together. Badboys for life.'

  13. #438
    Join Date
    Feb 2013
    Posts
    14
    Mentioned
    2 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by rebeltjeh View Post
    Wow ...

    I just woke up and had 28 firecapes in my inventory!!!

    Thanks man
    And your tokkul just magically dissapeared?

  14. #439
    Join Date
    Mar 2013
    Posts
    19
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Quote Originally Posted by Anatomical View Post
    Damn that sucks, I hope I don't get any def levels lol.
    What equipment were you using?
    Well Im a zerker had rune full helm plate legs and d scimmy etc.

  15. #440
    Join Date
    Feb 2013
    Location
    United States
    Posts
    53
    Mentioned
    2 Post(s)
    Quoted
    12 Post(s)

    Default

    -* FightCaveTrainer v0.6
    -*
    -* Entered: 142
    -* Runtime: 9 Hours, 33 Minutes and 4 Seconds

  16. #441
    Join Date
    Mar 2013
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Exception in Script: Unable to find file 'SRL-OSR/Srl.simba' used from ''


    i downloaded the folder that u said but where do i need to extract it in? pleas help !


    can u pleas say what i need to extract and where kinda new at this
    Last edited by idontlikeu; 03-28-2013 at 12:49 PM.

  17. #442
    Join Date
    Mar 2013
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by pandakid View Post
    whenever i run this script, smart is whitescreened but i can hear the music. other scripts work fine though.
    idk why I got the same thing you just have to start smart on its own with another script then run this one.

    Otherwise its a great script been running it for a while now and have had no problems with anything except a inventory full of mystery boxes.

    -* FightCaveTrainer v0.6
    -*
    -* Entered: 545
    -* Runtime: 12 Hours, 41 Minutes and 25 Seconds

  18. #443
    Join Date
    Mar 2013
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by noobman View Post
    very good script.
    had to log in just to say this
    http://i46.tinypic.com/o9pydk.jpg


    noobman approves!

    is this the longest proggy?

    Hope you're still running, because I am :P

    -* FightCaveTrainer v0.6
    -*
    -* Entered: 1375
    -* Runtime: 39 Hours, 40 Minutes and 53 Seconds



    Gone from 68-74 str on my 40 attack pure, no defence levels or anything, has run flawlessly.

  19. #444
    Join Date
    Nov 2012
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    why do I get that identifier expected at line 3 error

  20. #445
    Join Date
    Mar 2013
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Almost at 100k tokkul.. How much are uncut onyx/fury ammies going for nowadays?

  21. #446
    Join Date
    Mar 2013
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Exctract it in simba/includes

  22. #447
    Join Date
    Mar 2013
    Location
    The Netherlands
    Posts
    185
    Mentioned
    2 Post(s)
    Quoted
    70 Post(s)

    Default

    Very nice script, leveled my attack, stength and defence to 60.

    -* FightCaveTrainer v0.6
    -*
    -* Entered: 176
    -* Runtime: 21 Hours, 9 Minutes and 1 Seconds

  23. #448
    Join Date
    Mar 2013
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by hi own View Post
    [Error] C:\Simba\Includes\SRL-OSR/SRL/core/text.simba(805:13): Unknown identifier 'UpChars07' at line 804
    Compiling failed.
    How did you fix this? I get the same error.

    EDIT:Fixed. Derped out on the 07fonts, didn't extract them properly.
    Last edited by bowstrings; 03-28-2013 at 07:25 PM.

  24. #449
    Join Date
    Mar 2013
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    cheers =] sweaty.png

  25. #450
    Join Date
    Mar 2013
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    over 40 hours. Still cant believe how great this script is working!

Page 18 of 38 FirstFirst ... 8161718192028 ... LastLast

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
  •