Results 1 to 8 of 8

Thread: Mouse not clicking in Smart8

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

    Default Mouse not clicking in Smart8

    Hi,

    when i start my fightcave script, it logs me in, it finds cave, the mouse is moving over the cave all the time, but not clicking it, anybody knows how to fix this?

    thanks.

  2. #2
    Join Date
    May 2007
    Location
    England
    Posts
    4,140
    Mentioned
    11 Post(s)
    Quoted
    266 Post(s)

    Default

    Could we see the code?
    <3

    Quote Originally Posted by Eminem
    I don't care if you're black, white, straight, bisexual, gay, lesbian, short, tall, fat, skinny, rich or poor. If you're nice to me, I'll be nice to you. Simple as that.

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

    Default

    i dont get an error code, everythings running fine.. its just not clicking.

    or do u want the simba code?

  4. #4
    Join Date
    May 2007
    Location
    England
    Posts
    4,140
    Mentioned
    11 Post(s)
    Quoted
    266 Post(s)

    Default

    Yeah, the code that's meant to be doing the clicking
    <3

    Quote Originally Posted by Eminem
    I don't care if you're black, white, straight, bisexual, gay, lesbian, short, tall, fat, skinny, rich or poor. If you're nice to me, I'll be nice to you. Simple as that.

  5. #5
    Join Date
    Mar 2013
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Last edited by bartjuhh93; 04-13-2013 at 11:10 PM.

  6. #6
    Join Date
    Feb 2013
    Posts
    37
    Mentioned
    0 Post(s)
    Quoted
    19 Post(s)

    Default

    Isn't it ClickMouse2(mouse_left) instead of (true). I am not sure, but ask another person.

    Edit: the above statement is false ((true) works). you may want to reinstall smart.
    Last edited by mmmvvvbbb; 04-14-2013 at 01:43 AM.

  7. #7
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    Seems like the script is unable to find the uptext.
    Are your fonts up to date?

    Forum account issues? Please send me a PM

  8. #8
    Join Date
    Jun 2012
    Posts
    4,867
    Mentioned
    74 Post(s)
    Quoted
    1663 Post(s)

    Default

    Quote Originally Posted by mmmvvvbbb View Post
    Isn't it ClickMouse2(mouse_left) instead of (true). I am not sure, but ask another person.

    Edit: the above statement is false ((true) works). you may want to reinstall smart.
    Both
    Simba Code:
    ClickMouse2(True);
    and
    Simba Code:
    ClickMouse2(mouse_left);
    should work. You can tell by looking in the Includes:

    Simba Code:
    if VariantIsBoolean(button) then
      begin
        if (button) then
          iButton := mouse_left
        else
          iButton := mouse_right;
      end else
        iButton := button;

    So ClickMouse2 recognizes true as mouse_left and false as mouse_right.

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
  •