
Roofel
Active Members-
Posts
74 -
Joined
-
Last visited
Everything posted by Roofel
-
Seriously, its excellent! Should have thought of this myself Ah well, probably wouldnt have worked as nice as yours
-
When i put the sleep timer on 35 seconds it stands on 400-410K in Memory usage:P not much at allxD Now i just have to wait to check if it picks up my time outs:P
-
Hehe, thanks:) The reason I needed help with it was because our internet provider is kinda unstable from time to time. I was supposed to write a "log" on paper each time it went down but from time to time I cant do this since im not here:P
-
Not worried about seeing it no:) Just worried about the memory usage:P It will contain a small amount of memory constantly right?
-
I couldnt find anything on if it can run constantly in the background and make a log entry on this:S From what i have seen you got to have the "program" up at all times...
-
WMI?.... Got any code example on how I might get it done?
-
Hello:) I got this problem with my internet connection and I want to keep a log of this everytime it stops working... I am not sure on how it can be detected by a script but i know it is some way... I only need the script to run in the background then write the Date and Time of the timeout in log file or a text file... I can find out the rest of the script when I get a clue on how to detect the timeout... Hopefully you will be able to help me with this:)
-
how to scan and close a hidden process?
Roofel replied to sandin's topic in AutoIt General Help and Support
Nope rudi.. That wont work with GameGuard:) GameGuard is built around protection a game AND itself, meaning you wont be able to kill the process. It is a current bug as they admit that the game sometimes FAILS to see if the game is still running. Meaning it is still using immense CPU and cant be terminated:S They are working on it and they hopefully find out what the issue is soon. I play MapleStory myself when im bored and I have this issue from time to time:P The Game itself isnt running so you cant terminate the process(The process doesnt exists) but the GameGuard still runs meaning you cant open a new game window since the GameGuard will block it for some wierd reason>.< (Source): "In recent versions (revision 1007 and up), GameGuard fails to halt when the game ends, so GameGuard continues to use resources and inject code into processes. This is usually not noticeable to the end-user, as GameGuard masks its intense CPU usage by hooking Windows system querying APIs." From http://en.wikipedia.org/wiki/GameGuard -
how to scan and close a hidden process?
Roofel replied to sandin's topic in AutoIt General Help and Support
Ouch.. GameGuard is a cockblock tbh.... It cant be "destroyed" since it is thereto prevent hacks and such meaning it cant be closed.. They should really add a check to that bloody protection to check if that particular game is running or not:) Your only choice is to restart the computer to remove the process:S Ill try to check for a fix for it and i will post back if i find anything. Good luck, Roofel -
What do you really want? Couldnt understand the last reply:) In your script you already have that:) Do a HotKeySet("{Your key here}","_k") and you will have it:) Hope it helps, Roofel
-
how to scan and close a hidden process?
Roofel replied to sandin's topic in AutoIt General Help and Support
As its a process on the computer you must have downloaded it and installed it at the computer:) Go to C:\Programfiles\Mu Online*\ *If that is the name of the game And when in there look for any .exe file you can find and try to find it:) Sometimes Main.exe as Tzackel says but sometimes other processes, like Maple Story got nProtect as a protection preventing you to restart the game as when you try to kill that process you are denied access meaning you have to restart the computer if your game crashes badly. Hope this helps:) -
Script running tooooo fast
Roofel replied to Crittersmagic's topic in AutoIt General Help and Support
Yes:) Search the Helpfile for "Delay" and you will find it:) It is a few different ways to do it:) The "Opt" way and just individual entries between keys:) This is one way from the Helpfile: Sleep ( delay ) It is measured in miliseconds:) 5000 =5 seconds:) SendKeyDelay: Alters the the length of the brief pause in between sent keystrokes. Time in milliseconds to pause (default=5). Sometimes a value of 0 does not work; use 1 instead. and more:) Check the Helpfile, it is extremly helpfull:O ^^, Hope you figure it out:P -
Why not use Encrypt, Embeding file in JPG? the program works excellent:)
-
How would that work? Possible to give any examples? Trying to make an list of files in a folder then making it show in the Listview in my GUI. Tried to look at For...In...Next but couldnt really find anything to work at:S Current script: #include <GUIConstants.au3> #include <File.au3> #include <Array.au3> $Gui=GUICreate("MSN contact images", 210,200) $Listfiles=GUICtrlCreateButton("List Files", 5, 115, 100,40) $Copy=GUICtrlCreateButton("Copy images", 105, 115, 100, 40) $About=GUICtrlCreateButton("About", 105, 155, 100, 40) $Exit=GUICtrlCreateButton("Exit", 5,155, 100,40) $Listview=GUICtrlCreateListView("Thumbnails", 5,5,200, 105) GUISetState(@SW_SHOW) While 1 $msg=GUIGetMsg() Switch $msg Case $GUI_EVENT_CLOSE Exit Case $Listfiles Array() case $Copy FileCopy(@TempDir & "\Cache\*.*", "C:\Thumbnails\*.gif", 1) FileCreateShortcut("C:\Thumbnails\", @DesktopDir & "\Thumbnails","","","",@ProgramFilesDir & "\MSN Messenger\msnmsgr.exe", "","0") Case $About MsgBox(0, "About:", "This program was scripted by Roofel using the amasing software AutoIt3") Case $Exit Exit EndSwitch WEnd ;--Here is the part i messed up... Func Array() $String="" For $Listview In $List $String = $String & $Listview Next $ListViewItem=GUICtrlCreateListViewItem("", $Listview) Func Array() $String="" For $Listview In $List $String = $String & $Listview & @CRLF Next $ListViewItem=GUICtrlCreateListViewItem("", $Listview) $List=_FileListToArray(@TempDir & "\Cache") $Display=_ArrayDisplay($List) If @error=1 Then MsgBox(0, "", "No files or Folders were found!") EndIf EndFunc $Display=_ArrayDisplay($List) If @error=1 Then MsgBox(0, "", "No files or Folders were found!") EndIf EndFunc
-
pls help send key using a variable
Roofel replied to NEVERMORE's topic in AutoIt General Help and Support
Do not use the "" in Variable:) Use Send($Variable) should work then:) Difference between Send("$Variable") - You tell the Script to send the word "$Variable" Send($Variable) - You tell the Script to look at $Variable for information to send:) Hope you figure it out -
Nah, havent had any use of it tbh:P All my "test-subjects" got administrator rights so havent really had any use of it:)
-
Thanks:) Problem is that i get a whole new window and not in the one i got:) Any chance on fixing that? Using ListView inside the GUI any way to put the files inside there?
-
Hello again:) I was just wondering if it possible to click a button and then all the files in a directory shows up like this part of Valuater's Autoit 123? I know the files are "prepared" to be set there but is it possible to do the same but with other items? To do such thing what would be source be and is it anywhere in the Helpfile i can find it? I cant find it since im not sure what to look for(names etc) Was thinking about using _GDIPlus_ImageLoadFromFile.au3 to show the image but im not exactly sure how to add this to a GUI but i will figure out that later on:) Hope you understand, Not exactly sure how to formulate the question:) Best Regards, Roofel
-
Ment he was missing ListBox so i sent him the GuiListBox.au3 since i thought it was just a typo
-
I got this problem, I made a small script copying folders from a directory and placing it elsewhere and then rename the files:) I also made a shortcut that is placed on Desktop and redirects to the Directory the files got copied to. All fine until now. Here is the problem: I have a friend of mine that is using Vista and i wanted her to test out the script. The problem was that when she clicked the Shortcut, it said that the destination folder has been moved or deleted... So the question is, Is it something different with FileCreateShortcut in Vista or has i done something wrong? PS: I was talking to her over MSN so i cant check it myself^^, Im making a script in a larger scale so i do not really want to release the Source
-
It is nothing wrong with it, The only thing was that he was missing it from his "Include" folder:P Might have deleted the file by accident or something:)
-
Fast way is to just reinstall AutoIt:) Cant send it:S The "add attachment" thing is gone<.<
-
Hello, i am just wondering. Im currently making a script where i copy some files without a extension to another directory and then renames them. How do i rename a file? couldnt find the command in the Helpfile so i am just wondering:) The goal is to rename the files into files with the same names but with .gif as extension:) Is this possible? Thank you, Roofel Edit: Why is the directory I copy write-protected when it is copied and then moved? I found this in the Helpfile under FileMove: "Because AutoIt lacks a "FileRename" function, use FileMove to rename a file!" But can i rename all the files in the directory and not only one? Edit-2: Figured it out:)
-
Exactly what i needed:) Thanks alot mate^^,
-
Cant see any difference tbh:S What is different?