electrico Posted May 8, 2009 Posted May 8, 2009 Dear collegues, can you help me to make short script that will close window named one.lv if "iamgood" keycombination is pressed? And after script is ran, it must run again and wait until someone again will try to hack my one.lv account. It is very very important for me! My girl always wants to check my private messages. PLEASE... HELP Me...
Yashied Posted May 8, 2009 Posted May 8, 2009 Dear collegues, can you help me to make short script that will close window named one.lv if "iamgood" keycombination is pressed? And after script is ran, it must run again and wait until someone again will try to hack my one.lv account. It is very very important for me! My girl always wants to check my private messages. PLEASE... HELP Me... I sympathize for you. My UDFs: iKey | FTP Uploader | Battery Checker | Boot Manager | Font Viewer | UDF Keyword Manager | Run Dialog Replacement | USBProtect | 3D Axis | Calculator | Sleep | iSwitcher | TM | NetHelper | File Types Manager | Control Viewer | SynFolders | DLL Helper Animated Tray Icons UDF Library | Hotkeys UDF Library | Hotkeys Input Control UDF Library | Caret Shape UDF Library | Context Help UDF Library | Most Recently Used List UDF Library | Icons UDF Library | FTP UDF Library | Script Communications UDF Library | Color Chooser UDF Library | Color Picker Control UDF Library | IPHelper (Vista/7) UDF Library | WinAPI Extended UDF Library | WinAPIVhd UDF Library | Icon Chooser UDF Library | Copy UDF Library | Restart UDF Library | Event Log UDF Library | NotifyBox UDF Library | Pop-up Windows UDF Library | TVExplorer UDF Library | GuiHotKey UDF Library | GuiSysLink UDF Library | Package UDF Library | Skin UDF Library | AITray UDF Library | RDC UDF Library Appropriate path | Button text color | Gaussian random numbers | Header's styles (Vista/7) | ICON resource enumeration | Menu & INI | Tabbed string size | Tab's skin | Pop-up circular menu | Progress Bar without animation (Vista/7) | Registry export | Registry path jumping | Unique hardware ID | Windows alignment More...
Qousio Posted May 8, 2009 Posted May 8, 2009 Dear collegues, can you help me to make short script that will close window named one.lv if "iamgood" keycombination is pressed? And after script is ran, it must run again and wait until someone again will try to hack my one.lv account. It is very very important for me! My girl always wants to check my private messages. PLEASE... HELP Me... HotKeySet ( "key" [, "function"] ) While 1 YourFunc();<- Your func here WinKill ( "title" [, "text"] ) EndFunc Wend Not sure what you mean with ' until someone again will try to hack my one.lv account. '
electrico Posted May 8, 2009 Author Posted May 8, 2009 I maned that program must re-run again after it is once done. Thank you very very much!!!!
Qousio Posted May 8, 2009 Posted May 8, 2009 (edited) I maned that program must re-run again after it is once done. Thank you very very much!!!! In this case consider: HotKeySet ( "key", "YourFunc" ) While 1 Sleep(100) YourFunc();<- Your func here WinKill ( "title", "text" ) Run ( "filename", "workingdir", @SW_MAXIMIZE ) EndFunc Wend Edited May 8, 2009 by Qousio
Rorka Posted May 8, 2009 Posted May 8, 2009 Use this code: _do(); Starts function While 1 ; keeps script active sleep(10) ; Reduce CPU load WEnd Func _do(); Function start $word = InputBox("???", "", "", "*", 300, 120) ; So Input box If $word = "Iamgood" Then ; If inpur box has Iamgood type in it move to next lime WinClose("one.lv", "") ; Close the window "one.lv" Run("myexe.exe") ; Run exe again Sleep(1000) ; Sleep for 1 second Exit;exit script(Dont worry another one has already started EndIf EndFunc Compile it as "myexe.exe" (i trust you know how to do this?)
electrico Posted May 8, 2009 Author Posted May 8, 2009 Rorka this is cool, but actually I dont want inputbox to appear, i want to close one.lv if there, in the window "one.lv" she will try to login with my "iamgood" account. can you please a bit rewrite that variable, so it will not popup inputbox, but will only seek if key combinatoin is pressed? ... You all are great, guys, thx really for the help.
Rorka Posted May 8, 2009 Posted May 8, 2009 Rorka this is cool, but actually I dont want inputbox to appear, i want to close one.lv if there, in the window "one.lv" she will try to login with my "iamgood" account. can you please a bit rewrite that variable, so it will not popup inputbox, but will only seek if key combinatoin is pressed? ...You all are great, guys, thx really for the help.Sorry i cant... I dont kno ho to do that
sandin Posted May 8, 2009 Posted May 8, 2009 (edited) editdeleted due to malversation Edited May 8, 2009 by sandin Some cool glass and image menu | WinLIRC remote controler | Happy Holidays to all... | Bounce the sun, a game in which you must save the sun from falling by bouncing it back into the sky | Hook Leadtek WinFast TV Card Remote Control Msges | GDI+ sliding toolbar | MIDI Keyboard (early alpha stage, with lots of bugs to fix) | Alt+Tab replacement | CPU Benchmark with pretty GUI | Ini Editor - Edit/Create your ini files with great ease | Window Manager (take total control of your windows) Pretty GUI! | Pop-Up window from a button | Box slider for toolbar | Display sound volume on desktop | Switch hotkeys with mouse scroll
Yashied Posted May 8, 2009 Posted May 8, 2009 (edited) I think the easiest is to change the password, or to create a new account. Edited May 8, 2009 by Yashied My UDFs: iKey | FTP Uploader | Battery Checker | Boot Manager | Font Viewer | UDF Keyword Manager | Run Dialog Replacement | USBProtect | 3D Axis | Calculator | Sleep | iSwitcher | TM | NetHelper | File Types Manager | Control Viewer | SynFolders | DLL Helper Animated Tray Icons UDF Library | Hotkeys UDF Library | Hotkeys Input Control UDF Library | Caret Shape UDF Library | Context Help UDF Library | Most Recently Used List UDF Library | Icons UDF Library | FTP UDF Library | Script Communications UDF Library | Color Chooser UDF Library | Color Picker Control UDF Library | IPHelper (Vista/7) UDF Library | WinAPI Extended UDF Library | WinAPIVhd UDF Library | Icon Chooser UDF Library | Copy UDF Library | Restart UDF Library | Event Log UDF Library | NotifyBox UDF Library | Pop-up Windows UDF Library | TVExplorer UDF Library | GuiHotKey UDF Library | GuiSysLink UDF Library | Package UDF Library | Skin UDF Library | AITray UDF Library | RDC UDF Library Appropriate path | Button text color | Gaussian random numbers | Header's styles (Vista/7) | ICON resource enumeration | Menu & INI | Tabbed string size | Tab's skin | Pop-up circular menu | Progress Bar without animation (Vista/7) | Registry export | Registry path jumping | Unique hardware ID | Windows alignment More...
electrico Posted May 8, 2009 Author Posted May 8, 2009 Yes, man you are right, but she always makes keyloggers for such events
Yashied Posted May 8, 2009 Posted May 8, 2009 you can try this:...though it has one flaw (if user didn't typed correctly the password, and delete some of the middle chars, then retype them, he could pass this script's security)edit: forgot to delete some extra lines!Sandin, this is not a good example, especially in an open topic. My UDFs: iKey | FTP Uploader | Battery Checker | Boot Manager | Font Viewer | UDF Keyword Manager | Run Dialog Replacement | USBProtect | 3D Axis | Calculator | Sleep | iSwitcher | TM | NetHelper | File Types Manager | Control Viewer | SynFolders | DLL Helper Animated Tray Icons UDF Library | Hotkeys UDF Library | Hotkeys Input Control UDF Library | Caret Shape UDF Library | Context Help UDF Library | Most Recently Used List UDF Library | Icons UDF Library | FTP UDF Library | Script Communications UDF Library | Color Chooser UDF Library | Color Picker Control UDF Library | IPHelper (Vista/7) UDF Library | WinAPI Extended UDF Library | WinAPIVhd UDF Library | Icon Chooser UDF Library | Copy UDF Library | Restart UDF Library | Event Log UDF Library | NotifyBox UDF Library | Pop-up Windows UDF Library | TVExplorer UDF Library | GuiHotKey UDF Library | GuiSysLink UDF Library | Package UDF Library | Skin UDF Library | AITray UDF Library | RDC UDF Library Appropriate path | Button text color | Gaussian random numbers | Header's styles (Vista/7) | ICON resource enumeration | Menu & INI | Tabbed string size | Tab's skin | Pop-up circular menu | Progress Bar without animation (Vista/7) | Registry export | Registry path jumping | Unique hardware ID | Windows alignment More...
sandin Posted May 8, 2009 Posted May 8, 2009 Sandin, this is not a good example, especially in an open topic.ya, I was carried away, deleted the post due to malversation. Some cool glass and image menu | WinLIRC remote controler | Happy Holidays to all... | Bounce the sun, a game in which you must save the sun from falling by bouncing it back into the sky | Hook Leadtek WinFast TV Card Remote Control Msges | GDI+ sliding toolbar | MIDI Keyboard (early alpha stage, with lots of bugs to fix) | Alt+Tab replacement | CPU Benchmark with pretty GUI | Ini Editor - Edit/Create your ini files with great ease | Window Manager (take total control of your windows) Pretty GUI! | Pop-Up window from a button | Box slider for toolbar | Display sound volume on desktop | Switch hotkeys with mouse scroll
Qousio Posted May 8, 2009 Posted May 8, 2009 Electrico, you do realise what your asing for is basically a keylogger? I don't think it is allowed to discuss such software on these forums.If you just want to close+open the game with a hotkey, use the code posted above.ya, I was carried away, deleted the post due to malversation.Good
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now