Results 1 to 8 of 8

Thread: Beta Testing EdgeVille Hill Giants

  1. #1
    Join Date
    Jan 2012
    Posts
    35
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Beta Testing EdgeVille Hill Giants

    EdgeVille Hill Giant Killer

    I know that hill giants are very popular to train on and noticed that there are not many bots to use, however i am in the beta stage of my script and would live to put it up for testing. Would be nice to see if it has any Glitches.


    Also Capable of attacking with Bronze Knifes, just need to turn Ranging to True, auto- of false. Do take note that for some reason it does not log you in when smart loads so you most do it manually, if anybody can tell me how it would be great.

    Future Realises
    So it works with Mithril, bronze and iron knifes
    Works with much more foods
    Compatible with Arrows
    Better Anti-Ban
    Walking around if it cant find a hill giant
    Can "Pot" up

    At the Moment it...
    Fights Hill Giants
    Can fight with bronze knifes, picks them up and wields them
    Can eat Lobster when health is low

    At this moment in time it is very basic, Please can you test the lobster eating and bronze knifes please

    I have not been scripting for long so any feedback will be helpful

    thanks
    Kebab

  2. #2
    Join Date
    Nov 2011
    Posts
    1,589
    Mentioned
    9 Post(s)
    Quoted
    17 Post(s)

    Default

    Good to see new people scripting on iPhone atmo so can't look at your script, I'll have a look tomorrow
    Mat



    ^^

  3. #3
    Join Date
    Oct 2011
    Location
    Australia, Vic
    Posts
    1,517
    Mentioned
    2 Post(s)
    Quoted
    120 Post(s)

    Default

    Awesome, but i highly suggets to never add banking or walking because it will become extremely over used like GD's are atm.

  4. #4
    Join Date
    Jan 2012
    Posts
    522
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Had a quick look at your script. It's pretty good. Although you could improve it for future updates.

  5. #5
    Join Date
    Oct 2011
    Location
    Australia, Vic
    Posts
    1,517
    Mentioned
    2 Post(s)
    Quoted
    120 Post(s)

    Default

    See the bit below.
    Simba Code:
    begin
      Smart_Server := 10;
      Smart_Members := False;
      Smart_Signed := True;
      Smart_SuperDetail := False;
      SetupSRL;
      MakeCompass('n');
      SetAngle(0);
      ProgressReport;
      MarkTime(TimeRunnin);
      repeat
      MainScript;

      until TimeFromMark(TimeRunnin) > 360000
      ProgressReport;
      Logout;
    end.

    You don't use DeclarePlayer at all, plus you would need LoginPlayer;

    so it should look like this

    Simba Code:
    begin
      Smart_Server := 10;
      Smart_Members := False;
      Smart_Signed := True;
      Smart_SuperDetail := False;
      SetupSRL;
      DeclarePlayers;   //<====
      LogInPlayer;    //<====
      MakeCompass('n');
      SetAngle(0);
      ProgressReport;
      MarkTime(TimeRunnin);
      repeat
      MainScript;

      until TimeFromMark(TimeRunnin) > 360000
      ProgressReport;
      Logout;
    end.
    Last edited by John; 03-16-2012 at 02:54 AM.

  6. #6
    Join Date
    Jan 2012
    Posts
    522
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Evlin View Post
    See the bit below.
    Simba Code:
    begin
      Smart_Server := 10;
      Smart_Members := False;
      Smart_Signed := True;
      Smart_SuperDetail := False;
      SetupSRL;
      MakeCompass('n');
      SetAngle(0);
      ProgressReport;
      MarkTime(TimeRunnin);
      repeat
      MainScript;

      until TimeFromMark(TimeRunnin) > 360000
      ProgressReport;
      Logout;
    end.

    You don't use DeclarePlayer at all, plus you would need LoginPlayer;

    so it should look like this

    Simba Code:
    begin
      Smart_Server := 10;
      Smart_Members := False;
      Smart_Signed := True;
      Smart_SuperDetail := False;
      SetupSRL;
      DeclarePlayers;   //<====
      LogInPlayer;    //<====
      MakeCompass('n');
      SetAngle(0);
      ProgressReport;
      MarkTime(TimeRunnin);
      repeat
      MainScript;

      until TimeFromMark(TimeRunnin) > 360000
      ProgressReport;
      Logout;
    end.
    Just noticed that.

    I too made a script like this but with banking (Private)

  7. #7
    Join Date
    Jan 2012
    Posts
    319
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Nice Script, but I would recommend some changes here

    change:

    Procedure WhileWaiting;

    if FindColorTolerance(x,y,5995400,MsX1, MsY1, MSX2, MSY2, 1) then

    Begin
    MMouse(x,y,4,4);
    Mouse(x,y,4,4,true);
    end;
    to

    Procedure WhileWaiting;
    Begin
    if FindColorTolerance(x,y,5995400,MsX1, MsY1, MSX2, MSY2, 1) then
    MMouse(x,y,4,4);
    Mouse(x,y,4,4,true);
    end;
    Also in procedure mainscript, I would either add a then after "if FindandFight", or take out the if. I didn't test, so I don't know which one will work.
    -My Scripts-
    Dude'sFighters
    Dude'sBonfires
    Donations help with scripting Paypal!

  8. #8
    Join Date
    Feb 2012
    Posts
    202
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    can you get it too pick up charms?

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
  •