Results 1 to 6 of 6

Thread: Need help with crafting script

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

    Default Need help with crafting script

    Hey everyone,

    I am in the process of coding my first script and, as you can already guess, im fairly new to this. I need help with two things,

    How do i make the script set the camera angle up?

    Once i find the loom color (doing thing for citadel), how do i make the script click it 4 times and then move to the next one to the left in order?

    Thanks in advance,
    Dino

  2. #2
    Join Date
    Dec 2011
    Posts
    164
    Mentioned
    4 Post(s)
    Quoted
    23 Post(s)

    Default

    This is how to do the Camera Angle
    Simba Code:
    setangle(0);

    I don't really understand the second part, if you could give pics, that would be helpful

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

    Default

    MoveMouse(x, y);
    ClickMouse(x, y);

    Usually works for people who are starting up.

  4. #4
    Join Date
    Jan 2009
    Location
    Turlock/LA, California
    Posts
    1,494
    Mentioned
    3 Post(s)
    Quoted
    66 Post(s)

    Default

    Quote Originally Posted by mriddler View Post
    MoveMouse(x, y);
    ClickMouse(x, y);

    Usually works for people who are starting up.
    this, or if you want something that looks more human, and less botty:

    MMouse(x , y, rx, ry); //similar to MoveMouse();
    ClickMouse2(button); //clicks either right or left mouse button
    Mouse(x, y, rx, ry, button); //moves mouse to x,y then clicks

    EDIT: here is the difference between MoveMouse(); and MMouse();

    Steps to view this:
    1. run code - after 1 second, MoveMouse(); will start moving the mouse to 3 spots
    2. after you are done viewing MoveMouse(); press F5
    3. after a second, MMouse(); will start moving the mouse to the same 3 spots
    4. press F5 again when done.
    Code:
    program new;
    {$I SRL/SRL.simba}
    begin
      setupsrl;
      wait(1000);
      repeat
        movemouse(100,200);
        movemouse(450,350);
        movemouse(700,200);
      until(isfkeydown(5));
      wait(1000);
      repeat
        mmouse(100,200,0,0);
        mmouse(450,350,0,0);
        mmouse(700,200,0,0);
      until(isfkeydown(5));
    end.
    Last edited by x[Warrior]x3500; 02-18-2012 at 03:55 AM.

  5. #5
    Join Date
    Feb 2012
    Posts
    62
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    basically for those who dont know at citidal there is a loom that kinda looks like this

    ___________________
    .......+...............+
    .......+...............+
    .......+...............+
    .......+...............+

    the plus represent the lay out of the looms

  6. #6
    Join Date
    Apr 2008
    Location
    Denmark
    Posts
    409
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    I suggest going to the tutorial section, there are basic guides to help you make stuff just like this.. ^^

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
  •