Results 1 to 2 of 2

Thread: [ 2 Mar 2010] To ALL Smart Colors Users!

  1. #1
    Join Date
    Jul 2007
    Location
    Right now? Chair.
    Posts
    8,488
    Mentioned
    3 Post(s)
    Quoted
    12 Post(s)

    Default [ 2 Mar 2010] To ALL Smart Colors Users!

    To everyone running a script that uses SmartColors, Update to Dev Revision 400+ NOW.

    There was a big flaw that would return false falses, and it has now been fixed.

    old:
    SCAR Code:
    if ClickType = LEFT_CLICK then
          Mouse(x, y, 0, 0, True)
        else begin
            Mouse(x, y, 0, 0, false);
            ChooseOptionMulti(Rock.Options);
        end;

        Result := DidRedClick;

    new:
    SCAR Code:
    if ClickType = LEFT_CLICK then
        begin
          Mouse(x, y, 0, 0, True);
          Result := DidRedClick;
        end else begin
          Mouse(x, y, 0, 0, false);
          Result := ChooseOptionMulti(Rock.Options);
        end;

    So if you are using a script that uses SmartColors, update your revision so that it works properly

    My apologies to anyone who had been relying on SC and it had at some point failed.

    Rasta Magician

    I & I know Zion. It is in the spirit, body and mind of every one of us
    RMouse(obj: TMSIObject): boolean;

  2. #2
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Thanks

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
  •