Results 1 to 17 of 17

Thread: GETSELF.HIDE and GETSELF.SHOW

  1. #1
    Join Date
    Apr 2007
    Posts
    220
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default GETSELF.HIDE and GETSELF.SHOW

    I was thinking about these.. The hide and unhide scar. I think I wanna use it in my script(miner) but is this more detectable?? Or even less detectable? What do you think?(h)

  2. #2
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    what u mean: DiguiseScar('singapore'); ?
    i perosonaly dont think it would help...but if its a procedure i guess it does(why have it if it makes u more detectable?)
    SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
    Programming Projects: NotePad | Tetris | Chess


  3. #3
    Join Date
    Apr 2007
    Posts
    220
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I don't mean disguise, these commands(the are standard in SCAR DiVi) make SCAR Hide/show.. It just disapears and its only in the processes list.. Also not in the taskbar. Try this out:
    SCAR Code:
    program hideandshow;
    begin
    GETSELF.HIDE;
    wait(5000);
    GETSELF.SHOW;
    end.

  4. #4
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    woah!thats cool...but i dont know if its detectable
    SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
    Programming Projects: NotePad | Tetris | Chess


  5. #5
    Join Date
    Apr 2007
    Posts
    220
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I thought the same Maybe Wizzup/Fakawi knows if its detectable. Otherwise Ill use it

  6. #6
    Join Date
    Jun 2006
    Location
    USA
    Posts
    1,828
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    That won't affect on how detecable it is.

  7. #7
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    gr8!!!then why doesnt everyone use it..cuz its really cool
    SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
    Programming Projects: NotePad | Tetris | Chess


  8. #8
    Join Date
    Apr 2007
    Posts
    220
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    If like Pentti said it doesnt affects the detectability then Im gonna use it Cuz i like it.. WARNING Don't forget to put GETYOURSELF.SHOW in your script otherwise its lost.. Then you need to finish task

  9. #9
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Jagex can't monitor your processes and windows. Even DisguiseScar isn't needed at all.

  10. #10
    Join Date
    Apr 2007
    Posts
    220
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by bullzeye95 View Post
    Jagex can't monitor your processes and windows. Even DisguiseScar isn't needed at all.
    K thanks for info but I'm still gona use it I just like it

  11. #11
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    if u press ctrl+alt+s...will it come back?
    SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
    Programming Projects: NotePad | Tetris | Chess


  12. #12
    Join Date
    Apr 2007
    Location
    Finland
    Posts
    938
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Fearlesssss View Post
    K thanks for info but I'm still gona use it I just like it
    Me too, I just like to write something stupid there
    Like "Vid - Me botting, Hi Jagex"

  13. #13
    Join Date
    Apr 2007
    Posts
    220
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by dan cardin View Post
    if u press ctrl+alt+s...will it come back?
    I don't think so but I made this to let it come back:
    SCAR Code:
    function StopScript(FKey: integer): boolean;  //Credits to: Fearlesssss
    begin
    if(IsFKeyDown(FKey))then
    result:= true;
    end;
    And then you can do something like:
    SCAR Code:
    if(StopScript(FKey))then
    begin
      GETSELF.SHOW;
      TerminateScript;
    end;
    If you use the funtion dont forget to credit me

  14. #14
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    unlessu get it back then it still uses up ur comp..btw

    and what do u press down to stop script for that? F what
    SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
    Programming Projects: NotePad | Tetris | Chess


  15. #15
    Join Date
    Feb 2007
    Location
    USA
    Posts
    667
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You put your own fkey in there. If you wanted it to be F2, then you would use 2 as the parameter. Make sure not to use F1 though because that just brings up the scar manual.

  16. #16
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    One warning: If the script comes across any errors that stop it, you have to go to task manager and end the process. This can be a major setback if your script is still in the development stage, because you lose all unsaved data.

    I'd recommend MoveToTray, because it will allow you to get SCAR back if something happens.
    Interested in C# and Electrical Engineering? This might interest you.

  17. #17
    Join Date
    Apr 2007
    Posts
    220
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Smartzkid View Post
    One warning: If the script comes across any errors that stop it, you have to go to task manager and end the process. This can be a major setback if your script is still in the development stage, because you lose all unsaved data.

    I'd recommend MoveToTray, because it will allow you to get SCAR back if something happens.
    Maybe thats better yeah but what is the command for moving it out of the tray?

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. can some one show me how to
    By Waddo in forum OSR Help
    Replies: 3
    Last Post: 05-31-2008, 02:33 PM
  2. Hide/Show a program
    By Powerz in forum C#/Visual Basic Help and Tutorials
    Replies: 0
    Last Post: 04-10-2008, 07:10 PM
  3. Show off your RS account!
    By osmm in forum RuneScape News and General
    Replies: 7
    Last Post: 01-09-2008, 07:22 AM
  4. 24 is the best show ever
    By wayne1210 in forum Music, Movies and TV
    Replies: 17
    Last Post: 05-22-2007, 10:24 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •