Jump to content

digdig18

Members
  • Posts

    20
  • Joined

  • Last visited

  • Feedback

    100%

Posts posted by digdig18

  1. On 6/21/2018 at 9:07 AM, Alek said:

    Download Link: http://osbot.org/devbuilds/osbot 2.5.10.jar

    Added a handful of links and walking improvements to Web Walker, more web walker updates are coming soon. Please let me know how the new AutoLogin system is working/not working for you guys. 

    Changelog:
    -Updated AutoLogin
    -Added amulet of passage @Lordsthan
    -Settings API works on resizable
    -Quests API works on resizable
    -Map API works on resizable
    -Main interface dependency works on resizable
    --Pending new game screen clipping
    -Added Killerwatt portal (w/ dialogue) (web walking)
    -Added Mort Myre gate override (checks warning and quest started) (web walking)
    -Improved Lumbridge Swamp cave link, checks warning message
    -Added third floor Security of Stronghold links to web walker
    -Various small web walking improvements related to walkability 
    -Removed Skills closeGuide()
    -Removed Skills isGuideOpen()
    -Removed Widgets getGameScreen() (only a wrapper method)
    --Use getWidgets(GraphicUtilites.getMainInterfaceId())

    Nice updates 

     

  2. This script is getting detected, that was my one and only script I ever used in my account... I did everything legit, followed the good practices, never left bot running while I'm afk.... 3 days after using got banned

    • Sad 1
  3. Good day, I'm currently releasing my first script, together with my framework! Feel free to contribute and leave feedback

    https://github.com/digdig18/oscript/releases/tag/1.0

    Start anywhere, the task system is based on conditions that will start accomplishing the objectives during the runtime

    Requeriments
    -An f2p account

    It’s recommended to follow good manners of botting, the only way you can get banned on this is being tracked

    dd6348469aa3dcf5473e0d96176fe7981.png

    6d4c5c488941e64d61ea658788161d9b.png

     

     

     

  4. 4 minutes ago, Vilius said:

    Look at the bump rule before bumping.

    Now you should be releasing this as a free script because right now it could be counted as a private script because it has a price tag and you cannot sell to more than one person if this is counted as a private script.

    Then again its sketchy to order from your site because of personal information requirement and you dont have an SSL cert on your site either.

    What I suggest for you to do is release it here as a free script, get s1 rank and start releasing scripts on osbots SDN, get S2 rank and release premium scripts if you are interested in making money from script sales.

    Im sure that you dont mean any harm but still, shouldhave contacted a staff member for clarification. @Decode

    I'm just looking forward price crash, I do care for Scripter rank too, but I don't see a way out this. Please let me know how can we release a script without effect the average of reward by the amount of users

  5. I tried everything, believe me haha 

    client.moveMouse(new RectangleDestination(coordsx),(cordsy),(widht),(height)),true);

    For random, i don't care about the location it will be.

    but when i try to set specified mouse coords it , never works, always appear in a differente location, i think is because of widht or something... 

  6. System.out.println(i);

     

    Should just print out 1-4 (0-3?)...

     

    I'm not all to familiar with Position, but look at this -

    String[] Salutations = {"Hi", "Hello", "Hey"};
    
    public void onMyCommand() {
      Random r = newRandom();
      int pickMe = r.random(Salutations.size()-1); //Whatever the random integer method is, ranging from 0 to 1 less than the max array value 
      //Arrays start at 0
      System.out.println(Salutations[pickMe]+" there, digdig18.");
    }
    

    You take a random number, that wouldn't exceed the value of your array, and then select that position in the array.

    Yes mr thelegacy0, it should pick a random number between 1-4 (i have 4 coords), and thank's !

     

    I would probably do it like this

    public final Position[] positions = {new Position(2827,3087,0), new Position(2827,3036,0), new Position(2826,3087,0), new Position(2826,3085,0)};
    
    public Position getRandomPosition(){
        return positions[random(positions.length)];
    }
    

    I'm surprised with your lean code, probably i will use this, thanks for the attention.

  7. I can't get it work, building a method for getting random coords Positions, but it never works, all help will be aprecciate

     

     

    import java.util.ArrayList;

    import java.util.Random;

     

    import org.osbot.script.rs2.map.Position;

     

     

    public class testa {

     

    public static void main(String[] args) {

    // TODO Auto-generated method stub

    ArrayList<Position> tree = new ArrayList<>();

    tree.add(new Position(2827,3087,0));

    tree.add(new Position(2827,3036,0));

    tree.add(new Position(2826,3087,0));

    tree.add(new Position(2826,3085,0));

    for(int i = 0; i < tree.size(); i++){

    Random r = new Random();

    i = r.nextInt(i);

    tree.get(i);

    System.out.println(i);

    }

    }

     

    }

×
×
  • Create New...