Jump to content

flip2405

Active Members
  • Posts

    71
  • Joined

  • Last visited

flip2405's Achievements

Wayfarer

Wayfarer (2/7)

0

Reputation

  1. how would i correctly call a dll i am working on a C/C++ project and its a dll how ever i would like to build the launcher in autoit i feel its much easier my dll name is dll.dll for example
  2. No iv double checked every thing including restarted my pc it just dont compile I can go into scite and compile it that way
  3. error:error opening the destination file. trying to compile i ran the script it ran fine
  4. Now before you come to assumtions about me creating virus's etc a person that writes virus's in autoit should know this i am build a security app for my computer my mom has been threatening to take it away and give it to my sister so i am building an app to ask for a password 4 times before it shuts the pc down Now if they can get to task manager they could simply end the task so it wouldnt be vary secure if i didnt add this if no replys then ill just do a process close when it pops up THank you ~~flip~~
  5. Thanks much for fast reply guys
  6. Okay yes i know the RegWrite("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "MyProgramName", "REG_SZ", @ScriptFullPath) what i dont know is how would i return it like for example $regcheck = RegRead("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "MyProgramName", "REG_SZ", @ScriptFullPath) if regcheck = 0 (this line is my problem if its not there would it return 0 or?) then RegWrite("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "MyProgramName", "REG_SZ", @ScriptFullPath) end if would this be correct or is it wrong?
  7. $XY = PixelSearch(902,721,1023,767,0xF78F84) ProcessClose("aim6.exe") sleep(400) mousemove($XY[0] , $XY[1] ) do you see somthing wrong with that i keep geting the Line -1: Error:Subscript used with non-Array variable.
  8. ty much bud
  9. Now what if i have no spaces in my program has no spaces in it such as hideaim.exe is the _ still nessisarry
  10. Yes but as i told you in pm i need to have the source to it because i need to beable to change the script as in hotkeys passwords the file name all that... all ya gave me was exe and with the exe i cant do nothing but run it cant change any passwords cant do none of that unless i put them in an ini witch can be viewed by any one that can find it witch is just compleatly pointless to call it a password then
  11. To make this a little safer i included the source seems all the virus's floating around here today If ya could please help i need to actually know how to do this not just have it done for me so i can make edits to the source such as hotkeys and passwords witch i dont want stored in inis #NoTrayIcon While 1 HotKeySet("^l", "Hide") sleep(200) HotKeySet("^S", "Show") WEnd Func hide() ProcessClose("aim6.exe") $G = PixelSearch(902,721,1023,767,0xF78F84) mousemove($G[0] , $G[1] ) EndFunc Func Show() Global $Password Global $checkpw $Password = "password" $checkpw = InputBox("Password","Please enter a password.","","*") If $checkpw = $Password Then $Process = ProcessExists("explorer.exe") If $process = 0 Then Run("explorer.exe") EndIf ShellExecute("C:\Program Files\AIM6\aim6.exe","/d locale=en-US ee://aol/imApp") Else $WrongPass = Msgbox(5,"Wrong password", "You have got an invailed password") if $WrongPass = 4 Then Send("^S") EndIf If $WrongPass = 2 Then Msgbox(0,"Screenlock","Your screen will be locked until correct password is typed please wait 30 secounds and hit Ctrl+shift to do so") while 1 ProcessClose("explorer.exe") if $checkpw = $password Then ExitLoop WEnd EndIf EndIf EndFunc
  12. as i said i compleatly just re wrote it using functions from other files i was using to test to see if the functions where right glad i had them alright thank ya for effert i want to add reg key to run on start but idk how to do this inside my script so it only runs once
  13. Yes I have found bits and pieces in different autoit scripts i have save ty for your effort but i do have one last question How to make my script run on windows start up
  14. Well its the source no file extension not hidden and is there hacked decompilers out there i have a .exe that i compiled on day 2 but i had to change some stuff like hotkeys and sleep times and recompile it so i have an exe if i can decompile that and edit stuff on that not sure how i'd go about doing that.... I know they exist i have heard about them on this vary forum even if a mod has one and is willing to decompile my script for me because i know its not somthing that should be passed around
×
×
  • Create New...