
disc330
Active Members-
Posts
26 -
Joined
-
Last visited
Everything posted by disc330
-
Measuring the distance between 2 points
disc330 replied to UnknownWarrior's topic in AutoIt General Help and Support
There is much better methods, I recall using NomadMemory.au3 and CheatEngine to use memory addresses. Sadly now I have some privileges issues and cant play around with that anymore. Its really the way to go if you want a quick and effective way of potting. -
Perhaps like... IniWrite("File.ini", "Section", "[Key]", "[Value]") Would output: [section] [Key]=[Value]
-
Measuring the distance between 2 points
disc330 replied to UnknownWarrior's topic in AutoIt General Help and Support
I'm surprised people still play CO2. It sucks. Here is a script that will help. I put in comments so that hopefully you can learn something from using it. Basicaly, you just open CO then put your mouse over where you want the script to pot. Once you have made up your mind just press the 'HOME' key. Once pressed, if the color of that pixel changes it will press f12. (Note that if you hit alt+tab, it will recognise the pixel as different and mash f12. Probably best to make a while loop with "While WinActive("[Conquer]2.0") " as an expression.) HotKeySet("{HOME}", "_GetHP") Global $Color = 0 Global $Pos[2] Do ; Do nothing until you have chosen a normal color. Until $Color <> 0 ;Color has been chosen While 1 ; loop forever If _HPChanged($Color) Then _Pot() Sleep(20) ;Wait a bit WEnd Func _GetHP() $Pos = MouseGetPos() $Color = PixelGetColor($Pos[0], $Pos[1]) ; Set the normal HP color. EndFunc ;==>_GetHP Func _HPChanged($Color) $NewColor = PixelGetColor($Pos[0], $Pos[1]) ; Get the current HP color. If $NewColor <> $Color Then Return True ; If the current and normal colors are differnt, hp HAS changed. Return False ; There were no changed to the HP EndFunc ;==>_HPChanged Func _Pot() Send("{F12}") ; Press 'f12' or what ever you have pot on. EndFunc ;==>_Pot -
Ok, well I tried to just run it by double clicking the icon instead of hitting F5, worked fine. Turns out the whole thing was because of my bad order of Includes. All working now though, and I probably wouldn't have found that tonight if it wasn't for you Richard Robertson so thanks very much.
-
Exactly what I'm trying to avoid. I'll give it a try for the sake of a breakthrough, but I don't see why I should have to because I never have HAD to before... Thanks for the input anyway and happy Valentines day!
-
Been using Irrlicht for a while, and I have used the AddCubeSceneNode() & SetPosition() finctions since the begining. They used to work fine, but suddenly today i have started getting an error: CODEERROR: AddCubeSceneNode() called with Const or expression on ByRef-param(s).$TestBoxNode = AddCubeSceneNode(2) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ builtin(55,47) : REF: definition of AddCubeSceneNode(). Never heard of this error before, so as a workaround I could just use a variable for every parameter. That was bad enough, but then I got: CODEERROR: SetPosition() called with Const or expression on ByRef-param(s).SetPosition($PlayerNode, GetAbsolutePosition($TestBoxNode , "X"), 0 , GetAbsolutePosition($TestBoxNode , "Z")) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^ builtin(56,74) : REF: definition of SetPosition(). I refuse to use variables in SetPosition(). (Note that where the '0' is in SetPosition, I have tried a variable. Its not the number but the functions.) If any other IrrLichters have had this error could you please help me out. Have no idea what it could be other than an include file, but I tried the code without them one by one and i still got it. I am not using any mode of MustDeclareVars and I haven't recieved this error in other scripts. *clueless* =/ Thanks for reading, and super thanks for any help.
-
What did you do? Works fine for me... Sounds like you just want two GUis that could be completley seperate. Maybe you should read about "Run()" in the helpfile, or just trial and error. Syntax: Run ( "filename" [, "workingdir" [, flag[, standard_i/o_flag]]] ) Note that you can only execute files with the folowing extension: EXE, BAT, COM, or PIF
-
Mmm..yes. I like the way you think. Ill go try it. thanks EDIT: After testing... Without the line: 7.6 Seconds With the line: 7.4 Seconds... o.O Still far from ideal. I dont understand what it is. Would it help to use the: _GUICtrlListView_BeginUpdate($hListView) _GUICtrlListView_EndUpdate($hListView) functions? I will go try that now actually. Thanks for the help though still. EDIT 2: Nope, still taking way to long. probably because its al done in one update anyway. However, I just noticed that if I keep refreshing the rows, the time it takes to fill the data increases... Also the scroll bar shows that the list is suddenly huge and filled with far too much empty space. Solved: I was looking in the wrong place. Dim $aItems[50000][20] <--- it was showing all the rows empty or not.
-
Communicating servers question
disc330 replied to disc330's topic in AutoIt General Help and Support
Well, I got that working. It does indeed support client and server connections in one script. I realise my question was rather advice based than a requirement for help. Sorry about that. Just assumed a few people had been here and already learnt the mistakes for me. -
Well, in my opinion it seems a little bit silly to have a login form as the main form, I would only ever have it as a side function or like I did to your script just put it at the top. When you press the button, it would have to use a function, and using he function with a GUI in it means you would have to loop inside the function to get the GUI messages. I always prefer to have the GUI loop running, then the functions are all called from there. But just incase you dont give a damn... =P By the way, I have never used A gui popping up from a button so I actually dont know what im talking about. #Include <Array.au3> #Include <File.au3> #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> ;#include <HTTP.au3> $ver = 0 $Formx = GUICreate("Fotka Vote v.0.0.1 beta", 379, 181, 192, 124) $Pic1 = GUICtrlCreatePic("logo1.bmp", 24, 8, 333, 84, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS)) GUISetBkColor(0xffffff) ; biale tlo $Input_login = GUICtrlCreateInput("", 96, 112, 169, 21) $Input_haslo = GUICtrlCreateInput("", 96, 144, 169, 21) $Labelx1 = GUICtrlCreateLabel("Login:", 32, 112, 52, 17) $Labelx2 = GUICtrlCreateLabel("Haslo:", 32, 144, 52, 17) $Buttonx = GUICtrlCreateButton("Zaloguj", 288, 136, 81, 33, 0) GUISetState(@SW_SHOW) While 1 $aMsg = GUIGetMsg(1) Select Case $aMsg[0] = $GUI_EVENT_CLOSE And $aMsg[1] = $Formx GUIDelete($Formx) Exit case $aMsg[0] = $Buttonx Sleep(2000) GUIDelete($Formx) _ShowMainForm() endselect wend Func _ShowMainForm() $Form0 = GUICreate("Fotka Vote " & $ver, 372, 170, 294, 373) $logo = GUICtrlCreatePic("C:\D & S\Prezes\Pulpit\www\AutoIT\Fotka projekt\logo1.bmp", 16, 8, 337, 89, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS)) $Button_start = GUICtrlCreateButton("Start", 224, 136, 137, 33) $Button_about = GUICtrlCreateButton("About", 8, 120, 57, 33, 0) $Button_info = GUICtrlCreateButton("Info", 80, 120, 57, 33, 0) GUISetBkColor(0xffffff) ; biale tlo GUISetState(@SW_SHOW) EndFunc You may realise that now the GUI message isnt regestering because "And $aMsg[1] = $Formx" isnt true. (Its not coming from $Formx, its coming from $Form0)
-
The helpfile is amazing for when your starting off, it will get you very far. I would advise first looking up some things for the macro, this is made particularly easy in autoit because you can use functions such as: MouseGetPos() <--- Gives the position of the mouse PixelGetColor() <--- Gives you the colour of the pixel under the given coordinates MouseClick() <-- Great easy to use function to click on the screen ControlClick() <-- All the ability of MouseClick, but its possible to click into background windows. Send() <-- Simulate keystroks (Type) ControlSend() <-- Type to a background window You will also want to look into hotkeys because if you use these functions and need to exit quickly, you wont have control over the mouse if you use MouseClick... So: HotkeySet <--- A must have
-
As Brett pointed out, your exit was all wrong. Also, I dont know if it was intended, but your not meant to have code on the same line as your functions first line. Func _exit () ; Put nothing on this line after the brackets are closed. IniWrite(@SystemDir & "ImageConverter.ini", "Settings", "Dir1", GUICtrlRead($s)) IniWrite(@SystemDir & "ImageConverter.ini", "Settings", "Dir2", GUICtrlRead($d)) Exit EndFunc Thats all the problems findable in the given code, but as Melba23 said, your Au3Check is a lot more descrptive than just saying "Syntax Error". Read it fully and go over your code to see if you can find any more problems, double clicking the error will take you right to the line, it even shows you the character where the problem has been found... =P
-
The helpfile really goes a long way on this one... To end the script you always use it as a hotkey: HotKeySet("{TAB}","_Terminate"); Put this at the top of your script Func _Terminate() ; Then this function somewhere near the bottom Exit EndFuncoÝ÷ ØÚ0§ʩë,¶i¶î¶Ú'Ü"W[ay7«)ÚµçîËb¢v§vØ^Lb¶Ø^±Êâ¦ÓhµëajÜ!z|¨¹«, í+!¢ÙË*.ÂímæëhºÇëZnG²æjYrÂ¥zØ^±Êâ¦Ø¬®éçx¢éÚ²È Ø^d{(î²Û¬zØb±«¢+Ù!½Ñ-åMÐ ÅÕ½ÐííQ ôÅÕ½Ðì°ÅÕ½ÐìÅÕ½Ðì¤ì ±°¹¼Õ¹Ñ¥½¸Ý¡¸Ñ¡¡½Ñä¥ÌÁÉÍÍ EDIT: Whoops, codebox
-
I quickly did this... it works, but it could probably do with some personalizing: #Include <Array.au3> #Include <File.au3> #include <ButtonConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> ;#include <HTTP.au3> $ver = 0 $Formx = GUICreate("Fotka Vote v.0.0.1 beta", 379, 181, 192, 124) $Pic1 = GUICtrlCreatePic("logo1.bmp", 24, 8, 333, 84, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS)) GUISetBkColor(0xffffff) ; biale tlo $Input_login = GUICtrlCreateInput("", 96, 112, 169, 21) $Input_haslo = GUICtrlCreateInput("", 96, 144, 169, 21) $Labelx1 = GUICtrlCreateLabel("Login:", 32, 112, 52, 17) $Labelx2 = GUICtrlCreateLabel("Haslo:", 32, 144, 52, 17) $Buttonx = GUICtrlCreateButton("Zaloguj", 288, 136, 81, 33, 0) GUISetState(@SW_SHOW) $LoggedIn = false do $aMsg = GUIGetMsg(1) Select Case $aMsg[0] = $GUI_EVENT_CLOSE And $aMsg[1] = $Formx GUIDelete($Formx) Exit case $aMsg[0] = $Buttonx Sleep(2000) GUIDelete($Formx) $LoggedIn = True endselect Until $LoggedIn $Form0 = GUICreate("Fotka Vote " & $ver, 372, 170, 294, 373) $logo = GUICtrlCreatePic("C:\D & S\Prezes\Pulpit\www\AutoIT\Fotka projekt\logo1.bmp", 16, 8, 337, 89, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS)) $Button_start = GUICtrlCreateButton("Start", 224, 136, 137, 33) $Button_about = GUICtrlCreateButton("About", 8, 120, 57, 33, 0) $Button_info = GUICtrlCreateButton("Info", 80, 120, 57, 33, 0) GUISetBkColor(0xffffff) ; biale tlo GUISetState(@SW_SHOW) While 1 $aMsg = GUIGetMsg(1) Select Case $aMsg[0] = $GUI_EVENT_CLOSE And $aMsg[1] = $Form0 GUIDelete($Form0) Exit endselect WEnd (Note that I commented out you HTTP.au3 include and I also declared $ver to get it working, you may need to change that back.)
-
I'm using _GUICtrlListView_AddArray() along with an SQL query to read records and put them into a list but its taking way too long. I'm currently only using 3 records, and its taking about 7 seconds to just perform the _GUICtrlListView_AddArray() function. If anyone knows a faster way, or knows what im doing wrong here please do tell. ( I assume I am doing something VERY wrong because the helpfile example takes just over a second to display 5000 records with 4 columns...) Code: While _SQLite_FetchData ($hQuery, $aRows) = $SQLITE_OK $RowColCount = StringSplit(_ArrayToString($aRows,"|"),"|") For $ii = 0 to $RowColCount[0]-1 $aItems[$i][$ii] = $aRows[$ii] Next $i += 1 WEnd $timer = TimerInit() _GUICtrlListView_AddArray($LTV_SQLTableData,$aItems) MsgBox(0,"",TimerDiff($timer) )
-
Hello again forum, I once again come seeking some guidance... I have been playing around with servers and databases for a while now, but still I'm not so good at it so I hope someone more experienced can asist me with this... I have created a server, and this uses a database to check accounts, however I also have a login server, to purely manage clients logging in. The problem I am having is that I don't know what would be the most effective way to get the data around the structure. 1. First of all, I dont want the client to communicate with the main server until they have been successfully logged in by the login server. 2. Secondly, I could either have the login server communicating with the database, or have it send the information to the main server and then the main server can communicate with the database therefore rendering the loginserver pretty useless... 3. Thirdly, if kept in use, I will need the login server to somehow communicate with the main server to say that an account is logged in and about to connect. Now as I'm using Kip's TCP UDF (The amazing event driven one ) so I don't know if its even possible to create two connections and havent even tried yet. 4. I still need to decide if it is effective to use TCP at all for the servers communicating. I quickly thought of a cheap workaround which would be to make a file, but I couldn't imagine that to be very effective everytime an account logs in. If you want to throw some ideas at me go ahead, I'm very open to opinion. Any suggestions welcome.. thanks for reading. EDIT: Well, its been half an hour and I think that I should be trying something rather than waiting, Ill check back later when I give up all hope.
-
Well, if your looking at reading multiple lines with just that code, it would only read one line then exit. You need to have a loop to read each line. Lets look at the helpfile on reading line form files... This is the code in the example: ... While ;Eternal loop $line = FileReadLine($file) ; Read the line of the file handle (Must be open in read mode) Note this automatically reads the next line each loop If @error = -1 Then ExitLoop ; If it is the end of the file, @error is set to -1, so exit the loop ending the reading. MsgBox(0, "Line read:", $line) ; show the read data Wend... So in conclusion, you just need to have a loop that reads the lines, then Exitloop at the end of the file.
-
Help me transform AHK in AUTOIT
disc330 replied to gersonjosue's topic in AutoIt General Help and Support
Opt("MustDeclareVars",1) Global $Botting Dim $NumberToPick, $GetItens, $Target, $HP, $MP, $HPPet, $Title, $Coord, $NumberToPress $Title = InputBox("Title","Enter the title of the window.") HotKeySet("{HOME}","_Start") HotKeySet("{DEL}","_Exit") HotKeySet("{End}","_Pause") $Botting = False While 1 While $Botting If TimerDiff($NumberToPick) > 180 then _NumberToPick() If TimerDiff($GetItens) > 130 then _GetItens() If TimerDiff($Target) > 1000 then _Target() If TimerDiff($HP) > 110 then _HP() If TimerDiff($MP) > 100 then _MP() If TimerDiff($HPPet) > 100 then _HPPet() WEnd Sleep(10) WEnd Func _Start() WinWait($Title) If WinActive($Title) <> $Title then WinActivate($Title) $NumberToPick = TimerInit() $GetItens = TimerInit() $Target = TimerInit() $HP = TimerInit() $MP = TimerInit() $HPPet = TimerInit() $Botting = True EndFunc Func _NumberToPick() $NumberToPick = TimerInit() $NumberToPress = Random(1,5,1) Send($NumberToPress) EndFunc Func _GetItens() $GetItens = TimerInit() Send("s") EndFunc Func _Target() $Target = TimerInit() Send("{Space 2}") EndFunc Func _HP() $HP = TimerInit() $Coord = PixelSearch(206,56, 208, 64, 0x2092CC6, 38) If @error then Send("-") EndFunc Func _MP() $MP = TimerInit() $Coord = PixelSearch(207, 69, 209, 76, 0xC15318, 38) If @error then Send("0") EndFunc Func _HPPet() $HPPet = TimerInit() $Coord = PixelSearch(174, 109, 202, 114, 0X092FCA, 38) If @error then Send("==") EndFunc Func _Exit() Exit EndFunc Func _Pause() If $Botting then $Botting = False MsgBox(0,"Paused!","Press the pause button again to unpause!" & $Botting) Else $Botting = True MsgBox(0,"Unpaused!","Press the pause button again to pause!") EndIf EndFunc Just a quick thing, hope thats what you needed. o.O -
IrrLicht / 3D Geometry confusion
disc330 replied to disc330's topic in AutoIt General Help and Support
$NewX = ( $StartX + $Distance * (Cos(_Radian(Mod(GetRotation($Camera,"X"),360))) * Cos(_Radian(Mod(GetRotation($Camera,"Y"),360))))) $NewY = ( $StartY + $Distance * (Sin(_Radian(Mod(GetRotation($Camera,"X"),360))) * Cos(_Radian(Mod(GetRotation($Camera,"Y"),360))))) $NewZ = ( $StartZ + $Distance * (Sin(_Radian(Mod(GetRotation($Camera,"Y"),360))))) Thank you both very much. Thats certainly progress, its not so sensitive now, however it seems that the angles are being inverted or something... When firing a bullet at 270 radius, it will fly off towards 180... but! If I fire a bullet at 180, it doesnt go left again. Instead it goes back to the right, to 270. The same happens when trying this with 180 and 90. If I shoot facing 90, it goes towards 180. From 180, goes off to 90. I'm sure there is a simple fix for it, but I know now that it isn't setting the raduis to be deducted from a preset value. =/ If you feel like helping me out again, go ahead. If not, thanks anyway for helping me so far. EDIT: To help understand...: http://uk.youtube.com/watch?v=oy2vDG37X1Y -
Below is the link to help understand the problem I am having: http://www.youtube.com/watch?v=fN4hv4cd_1M You will notice that when a bullet is fired, it seems like it fires in a random direction. It does not fire towards the centre of the screen at all. However, these bullets are not being fired randomly, from the video you can see that they are infact being fired in a spherical range pre-determined around the character, depending on thier position. Also, you will see that when I move the mouse just slightly, the direction of the bullet eminently changes in relation to the players rotation. I have been to several math forums asking for explanations or formulas that could help me with this, but they dont seem to work. Here is the code I am using for this part of the program: $NewX = (GetPosition($Camera, "X") + $Distance * Cos(GetRotation($Camera,"X")) * Cos(GetRotation($Camera,"Y"))) $NewY = (GetPosition($Camera, "Y") + $Distance * Sin(GetRotation($Camera,"X")) * Cos(GetRotation($Camera,"Y"))) $NewZ = (GetPosition($Camera, "Z") + $Distance * Sin(GetRotation($Camera,"Y"))) $ShotAnimator = CreateFlyStraightAnimator(GetPosition($Camera, "X"), GetPosition($Camera, "Y"), GetPosition($Camera, "Z"), $NewX, $NewY, $NewZ, 2500, 0 ) ;Thanks to WingedPanther @ CodeCall If you have any ideas about how to fix this, please try to explain it rather than just post the answer, thanks for taking an interest in my problem. Oh, and if you need any more information just ask.
-
Downloaded and have been playing with it for a while. Works great for me! Thanks very much, saves me having to learn some stuff. Funny how I have an online FPS now... which you cant even shoot on yet. Thanks very much.
-
; Hotkey setup. HotKeySet("^{F4}","_Skipper") ; CTRL + F4 is the new hotkey. HotKeySet("{ESC}","_Term") ; Press escape for exit hotkey. ; Loop until user exits. While 1 Sleep(100) WEnd Func _Skipper() $Time = InputBox("","Enter the time to loop in seconds",60)*1000 ;The user inputs the seconds which is converted into milliseconds. $Timer = TimerInit() ;Initialize a timer. Do ;Another type of loop. $coord = PixelSearch(606, 504, 999, 621, 0x960000, 50) ;Search for the first color. If @error Then ;If not found... Send("{F4}") ; Press F4. Else ; Otherwise... $coord = PixelSearch(606, 504, 999, 621, 0x6CB252) ; Search for the second color. If @error then ; If second color not found... ;??? ; Nothing requested here Else ; Otherwise... MouseClick("left",$coord[0], $coord[1],1,0) ; Click on it. Send("{F4}") ; Press F4. EndIf ; Endif. EndIf ;Endif. ;TrayTip("",TimerDiff($Timer)& "/" & $Time,0) ;Display: [Time passed / End time] In tray. Until TimerDiff($Timer) >= $Time ;Go back to 'Do' if the time has not reached the requirement. ;TrayTip("","Loop ended.",0) ;Inform user that the loop has finished. EndFunc Func _Term() Exit ;Exit script. EndFunc Couldnt find a way to edit... but didnt want to just delete this. Now you can choose between two.
-
I'm willing to help on this because I need a bit of practice using a specification... But I need some more information. Is there a real need for this to be a function? Will the script be used with another program? (Is this a bot?) Why did you choose F4 to be the hotkey when you are using it in the script?
-
Well, i tried that, but control click co-ords will not work because theres is a form in the way. I really need it to press the ID instead, =/
-
I have been attempting to click into a game window, but what i wish to click is behing a form, i have tried to use the window info finder to get the control ID, but it brings up an empty space. Im not sure how/if using control co-rds would work. If anyone could help out, it would be much appreicated. CODE HotKeySet("{END}","Terminate") While 1 While WinActive("Window1") ControlClick("Window1","",2234,"Left",1) ControlClick("Window1","", , "Left",1,70,5) ;<-- This is the line I am struggling with. WEnd WEnd Func Terminate() Exit EndFunc