Results 1 to 6 of 6

Thread: another nooby question =p

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

    Default another nooby question =p

    ik that to modify bottom tabs like set friend chat to 'off' is SetChat('off',2) but what do i write to click on it? i tried (true,2) doesnt work =p

  2. #2
    Join Date
    Jan 2012
    Location
    Calgary, AB, Canada
    Posts
    1,819
    Mentioned
    5 Post(s)
    Quoted
    120 Post(s)

    Default

    Well if that function moves the mouse over the friend's chat then you could use Mouse or ClickMouse2. But just guessing the function should just turn it off as it seems that's what the function's for
    Current Project: Retired

  3. #3
    Join Date
    Feb 2012
    Location
    Wonderland
    Posts
    1,988
    Mentioned
    41 Post(s)
    Quoted
    272 Post(s)

    Default

    I think these should work, might have to rename the click type.
    Hope this helps.
    Simba Code:
    // Left Click the 'All' Tab
    MouseBox(7, 484, 55, 495, mouse_left);

    // Left Click the 'Game' Tab
    MouseBox(67, 484, 110, 495, mouse_left);

    // Left Click the 'Public' Tab
    MouseBox(127, 484, 165, 495, mouse_left);

    // Left Click the 'Private' Tab
    MouseBox(187, 484, 220, 495, mouse_left);

    // Left Click the 'Friends' Tab
    MouseBox(247, 484, 275, 495, mouse_left);

    // Left Click the 'Clan' Tab
    MouseBox(307, 484, 330, 495, mouse_left);

    // Left Click the 'Trade' Tab
    MouseBox(367, 484, 385, 495, mouse_left);

    // Left Click the 'Assist' Tab
    MouseBox(427, 484, 440, 495, mouse_left);

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

    Default

    Quote Originally Posted by Le Jingle View Post
    I think these should work, might have to rename the click type.
    Hope this helps.
    Simba Code:
    // Left Click the 'All' Tab
    MouseBox(7, 484, 55, 495, mouse_left);

    // Left Click the 'Game' Tab
    MouseBox(67, 484, 110, 495, mouse_left);

    // Left Click the 'Public' Tab
    MouseBox(127, 484, 165, 495, mouse_left);

    // Left Click the 'Private' Tab
    MouseBox(187, 484, 220, 495, mouse_left);

    // Left Click the 'Friends' Tab
    MouseBox(247, 484, 275, 495, mouse_left);

    // Left Click the 'Clan' Tab
    MouseBox(307, 484, 330, 495, mouse_left);

    // Left Click the 'Trade' Tab
    MouseBox(367, 484, 385, 495, mouse_left);

    // Left Click the 'Assist' Tab
    MouseBox(427, 484, 440, 495, mouse_left);
    Would
    Simba Code:
    ChooseOption('WhatYouWntToChooseHere');
    Be needed? Or would that not work?

  5. #5
    Join Date
    May 2008
    Location
    ;)
    Posts
    576
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    If you read through the function, you would find this little section, which is what handles your input

    Simba Code:
    case Lowercase(State) of
        'on', 'all': Color := 65280;
        'off': Color := 255;
        'hide': Color := 16776960;
        'friends', 'filter': Color := 65535;
        else
          srl_Warn('SetChat', state + ' does not exist.', warn_AllVersions);
      end;

    Basically, it means you can use 'on', 'off', 'all', 'hide', or 'friends'.


    Alternatively, you can use mouse + chooseoption

  6. #6
    Join Date
    Feb 2012
    Posts
    224
    Mentioned
    1 Post(s)
    Quoted
    8 Post(s)

    Default

    i dont want to change the option, i just want to left click on the tab

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
  •