
AquilaChill
Active Members-
Posts
24 -
Joined
-
Last visited
Everything posted by AquilaChill
-
Lan Chatting (Help Needed)
AquilaChill replied to AoRaToS's topic in AutoIt General Help and Support
put this at the top of your script, change "my script" to something else.. $g_szV="my script" If WinExists($g_szV) Then Exit AutoItWinSetTitle($g_szV) -
the help file of autoit3 really is great... seriously use it, scite is also great for making scripts in. the Opt() should be at the top of your script, you can use it again to change it if you need to later in a script. Opt("SendKeyDownDelay", 2) ;(text after a ; is comments, autoit ignores them), sets time that each key is held down to 2ms (1000=1sec) Opt("SendKeyDelay", 2) ;time between key sends, note that (really)old computers can only send text so fast through autoit ;some apps (like games) won't pickup the keystrokes with too low of delays HotKeySet("+!h", "SendHi") While(2) Sleep(100) WEnd Func SendHi() Send("this is text sent.{ENTER}you can use multiple per send.") EndFunc ;comments are comments, stick em where you left off one day to remind yourself where you need to work on or maybe what this does or a quick description of Func blah() and such. the examples in the help file are useful to know how some things work too.
-
$var=PixelGetColor(504,458) $var2=PixelSearch(400,400,620,475,$var) If Not @error Then MouseClick("left",$var2[0],$var2[1]) to click on the found color from the PixelSearch of the color from the found pixel at 504,458 i think i made it a bit complicated... im not shure if PixelGetColor gets dec or hex color, but i think it would work with both, though i've always used dec.
-
Help with continuously looping script
AquilaChill replied to logonui's topic in AutoIt General Help and Support
built on what PsaltyDS came up with, this should work. it refreshes the list every 24hours (unless i did some math wrong) Global $sBanFile, $sBanList, $avProcs,$tc $sBanFile = "\\shc4\Student\Users\Students\INetBans\Filebans.txt" $sBanList = FileRead($sBanFile) $tc=TimerInit() While 1 $avProcs = ProcessList() For $i = 1 To $avProcs[0][0] If StringInStr($sBanList, $avProcs[$i][0]) Then ;MsgBox(16, "Banned Process", "Banned process found: " & $avProcs[$i][0]) ProcessClose($avProcs[$i][1], 1) EndIf Next Sleep(500) If TimerDiff($tc) >= 86400000 Then $sBanList = FileRead($sBanFile) $tc=TimerInit() EndIf WEnd -
but it looks like the health box is transparent, with floor tiles, meaning there wont be any normal background color, unless thats the backgrounds design on a side note the health bar looks like its in gaps, though that might just be compression to the pic.
-
"- to find the health percentage without using memory read and division. you can search the health bar so the search area is exactly inside the bar and so that you're searching for the background colour; the way the pixelsearch works, up to down and left to right i think, it will find the first colour of the background. If you find the max length of the coloured bar and then the length from the found background pixel to the end of the bar... with some subtraction and division you can find the percentage. It's fairly simple but smart. Need more explanation on this then just ask." acualy that will find the first part of the health bar (1%), pixelsearch searches the way a monitor refreshes, left to right & top to bottom. but yes, some simple math to figure out the % will be needed. if you want to find the %health then you should do a PixelgetColor from 100% mark to 1% mark & check if its $colorgreen or $colorred, if so then a lil math (if the health bar isn't 100pix) & theres your %health i made something like this, for D2LoD xpbar, i had to come up with some math to turn # pixels into a %
-
first off, game cheating is generaly looked down apone here, since it makes autoit look bad. that said, a good ammount of poeple will ignore postes asking for help making something todo something in a game. but since your new here & don't seem to know whats best for certain things, ill help you out some so do you want it to do it when it turns red? or at a certain red point? if just when red then PixelGetColor will work fine $colorred=<the red color, use the info tool to get the color> If PixelGetColor(x,y)=$colorred Then Send("o") you could Send("{o 2}") to press o two times also @crislivinitup, while that would most likely work, idk how safe that would be, being a game this is for.
-
sounds like your looking for a password manager (to put in your login credentials for email or something), i think even ie7 has some kind builtin... (but i think it sucks). i use firefox, i know it has its own, opera has its own last time i used it. if i missunderstood this then sry, explain it a bit more.
-
need more info/better explanation are you trying to run a cmd to a cmd prompt? _RunDOS are you trying to convert prompt cmd's to autoit to automate something about it? btw, the way you put that you make it look like your not giving an example, it kinda looks like your sig...
-
is there a way to specify what network adapter to use for _TCPIpToName? if not, is there a way to modify it to? my problem is that its using the wrong adapter & thus not getting the right result i have three network adapters, LAN & two VMware virtual ones when i run this (.5 is a computer i know is on & connected fine, i can ping it & have verified its ip & connection on it) #include <Inet.au3> Opt("TrayIconDebug",1) $ip="192.168.0.5" Dim $ipname TCPStartup() $ipname=_TCPIpToName($ip,1) For $i=1 To $ipname[0] MsgBox(0,"dev "&@error,"ip's "&$ipname[0]&@CR&$ipname[$i]) Next TCPShutdown() i tried using the array to see if it brings back multiple, but it brings back neontorrents.org when that computer is on. when i disable both the VMware adapters it runs fine, but takes 6-14 extra secs to complete, sticking on trying to use the disabled adapter i guess. i know nothing of interacting with dll's in autoit, let alone if this is possible. now i know asking people todo stuff for me is lame, but this is out of my league.
-
but if im going to help you i need to know what that bit of code is supposed todo, the If statement inside the switch that is. i usualy work on the functions first then do (part of) the gui when im stuck on the functions, but thats just me edit:er fixed the if statement i guess, what ya need help with now? the IE part? i don't mess with the browser much, so it would be best to check out some example scripts dealing with IE.
-
#include <GUIConstants.au3> needs to go at the top for those $WS_ n such to work line 31 $age1 = If GUICtrlRead($Selectone) = "Select one" or "----------------------" Then Sleep(1000) ElseIf $age2 = GUICtrlRead($Selectone) GUICtrlSetData($age, $age2) EndIf you can't $var=If, from what i know seems your confused on the syntax. if you could tell me what you want that part of the code to do, then i could prolly fix it, as it could go a few different ways.. edit:spelling. also seems i waited to long, but ill still help with more info from ya on what ya want it to do.
-
how do you get auto it to hold down a key
AquilaChill replied to sebgg's topic in AutoIt General Help and Support
Send("{LSHIFT down}") Sleep(2000) Send("{LSHIFT up}") to hold down LShift for 2secs -
not shure about math functions, but you could do a simple pixelsearch to find the pink & then get the color around it with PixelGetColor($foundx-3,$foundy-3)oÝ÷ ÚþÞÚºÚ"µÍÌÍÜ[ØÛÛÜI][ÝÙXÈÜ^[YHÙH[É][ÝÂÌÍÙ[[ÏT^[ÙXÚ ÌÍÖK ÌÍÖLK ÌÍÖ ÌÍÖL ÌÍÜ[ØÛÛÜBÌÍÞIÌÍÙ[[ÖÌBÌÍÞOIÌÍÙ[[ÖÌWB ÌÍÞIÌÍÞ ÌB ÌÍÞOIÌÍÞJÌB ÌÍÜ^ÛÛÜT^[Ù]ÛÛÜ ÌÍÞ ÌÍÞJB[[ ÌÍÜ^ÛÛÜÉÝÉÌÍÜ[ØÛÛÜ if you wanted to check down right of it .. or something hope you get the point, unless i don't understand what you want.
-
how do i show/hide the taskbar (autohide)
AquilaChill replied to AquilaChill's topic in AutoIt General Help and Support
im not talking about toggling the autohide option, but hiding/showing using autohide (im thinking its some kind of dll cmd) like when you move your mouse to the edge of the screen, it shows. sorry if i worded it wrong or completely wrong... -
Desktop shortcut locations
AquilaChill replied to hmsSurprise's topic in AutoIt General Help and Support
i havn't a clue as to where the icon arrangements are saved, leme try somthing... i will edit this poste when done as for the shortcuts, FileCreateShortcut() if they never change, unless you need to just copy the shortcuts from the folder (if they change, new ect) then use FileCopy() test/edit ect tho hope i helped... -
Desktop shortcut locations
AquilaChill replied to hmsSurprise's topic in AutoIt General Help and Support
your going to have to be more specific, shortcuts can be stored anywhere. are you asking where the desktop folder is? 9x C:\WINDOWS\Desktop & xp C:\Documents and Settings\<username>\Desktop are you asking where the shortcuts point to? right click on the shortcut>properties>shortcut tab>target text input be more specific please, we can't help you if we don't know what you need -
how do i show/hide the taskbar (autohide), i've searched & come up with this: _TaskbarSetState(@SW_HIDE) Sleep(2000) _TaskbarSetState(@SW_SHOW) Func _TaskbarSetState($s_State) $s_PrevOpt = Opt("WinTitleMatchMode", 4) WinSetState("Classname=Shell_TrayWnd","",$s_State) Opt("WinTitleMatchMode",$s_PrevOpt) EndFunc this hides it completely, im talking about the autohide (checkbox of the taskbar settings). what i'm wanting to do is show the taskbar, unhide the scripts hidden icon,wait a sec,hide the icon, hide the taskbar i've got the iconhide all done, its just i can't find how to show/hide the taskbar without giving focus to it. i was thinking i could use dllcall(), but i havn't a clue how to use & the info for the taskbar, this might be the way to go, but i havn't a clue how. this brings up this poste, i'd appreciate any help. sorry about my grammar, i never grew out of that... least in typing
-
help with loops in loops(code inside)
AquilaChill replied to AquilaChill's topic in AutoIt General Help and Support
truthfully, near 2/5 of what you got there is out of my league/understanding, i'm a basic coder, as im shure you notice by my code (or atleast of what i showed) i don't know what nested means, that was my question. so your saying that i should have been able to have a For inside a For? correct me if im wrong... as my autoit skill is nothing compared to yours (to my understanding) -
help with loops in loops(code inside)
AquilaChill replied to AquilaChill's topic in AutoIt General Help and Support
-
i've been running this script through my head to try to figure out what the problem is, but i'm dumbfound on this one. Acording to all my au3 knowledge, it *should* work. the problem is that it can't seem to get out of the first "For" Can i not use a For inside a For? i'm shure its somthing simple that i've missed thats taunting me in my face. Any help would be appreciated. basicly the script is made to run x amount of apps (different apps) & then wait til somthing happens, its not the funcs it launches. I've recently changed a big long list into a loop (it worked after this), then added another for loop inside it to take the filesize down more (problem here), but this problem is making me think about just adding the (partial) list back. i will be checking this tomarow, as im quite tired now. first poste on a question on code btw CODE$onnow = 4 $onnowa = $onnow ... $num = 0 While 1 Global $num = $num + 1 For $lc = 1 To (8 / $onnow) Global $lcc = $lc ;this is for an external count For $lc2 = 1 To $onnow Global $onnowb = $lc2 Global $path = Eval($lc2 & "path") Global $exe = Eval($lc2 & "exe") Global $i1 = Eval("acc" & $num) Global $i2 = Eval("i2" & $num) Global $title = Eval($lc2 & "title") Global $i3 = Eval($lc2 & "i3") Global $i4 = Eval($lc2 & "i4") Call("go") Next If $onnowr = $onnowb Then Call("sleeper") Next WEnd
-
ok my problem is best described with some code... $1d2exe = '"C:\Program Files\Diablo II\Diablo II.exe" -w -mpq j.mpq -res800 -notitle -skiptobnet -title "Diablo II J"' ... Global $d2exe = $1d2exe;this is changed with other $acc = $2acc further down to load other apps/diferent switches ... Run($d2exe) the game loads up but with problems. i've tried adding double quotes in various ways & runing it through _RunDos() with no avail. yes this is used to launch the game. the problem is i think that the command switches arn't getting thru too well (the game reports unknown game version when connecting to server) i've tried incleuding the working directory & that just put it into the -title. a solution might be to have _RunDos() point to a shortcut, but thats just silly... i should be able to run it with just the script. im just stumped here. im shure it has somthing to do with double quotes, there evil!