Search found 124 matches

by theon
15 Sep 2022, 09:11
Forum: Ask for Help (v1)
Topic: Help InsertAt
Replies: 9
Views: 726

Re: Help InsertAt

boiler wrote:
15 Sep 2022, 08:07
0x8 plus 0x4 is not 0x12, it’s 0xC. Internally, it’s the same integer whether you want to ultimately view it in hex or decimal. You might as well say you want it to be 4, 8, 12, 16, … (which is 0x4, 0x8, 0xC, 0x10, …).
This has to be in hex, how would i do?
by theon
15 Sep 2022, 07:56
Forum: Ask for Help (v1)
Topic: Help InsertAt
Replies: 9
Views: 726

Re: Help InsertAt

I believe that is because there are two iterations of the inner loop within the second iteration of the outer loop (so there would be three items for the third loop, four for the fourth, etc.), but I agree that the desired outcome is not at all clear and needs to be described (much) better. my Engl...
by theon
15 Sep 2022, 07:08
Forum: Ask for Help (v1)
Topic: Help InsertAt
Replies: 9
Views: 726

Re: Help InsertAt

Hi, The pattern in your example is a bit puzzling. I recommend describing it in more detail, step by step. hello, what I'm trying to do is that it has to add 0x0 dps of 0x14 in loop 2 it will add + 1 0x0 and now with + 0x4 only in 0x4 it goes up + 4bytes, like this one below loop, 1 [0x0, 0x14, 0x3...
by theon
15 Sep 2022, 06:43
Forum: Ask for Help (v1)
Topic: Help InsertAt
Replies: 9
Views: 726

Re: Help InsertAt

I tried like this not right

Code: Select all

SetFormat, IntegerFast, hex
Loop 11 ; Para criarmos 10 arrays
{
	OFFSET_ATUAL := A_Index 
	Offset%OFFSET_ATUAL% := [0x14, 0x30]
	Loop % A_Index ; 
	{
	Offset%OFFSET_ATUAL%.InsertAt(1, 0x0, count ) 
                global count += 0x4		
	}
}

by theon
14 Sep 2022, 20:00
Forum: Ask for Help (v1)
Topic: Help InsertAt
Replies: 9
Views: 726

Help InsertAt

I need help InsertAt my address is like this [0x14, 0x30] Offset%OFFSET_ATUAL%.InsertAt(1, 0x0 ) ; this one will add 0x0 at the end but when he adds this 0x0 in the next loop the 0x0 has to be 0x0 +4 staying, loop, 1 [0x0, 0x14, 0x30] loop, 2 [0x04, 0x0, 0x14, 0x30] loop, 2 [0x08, 0x0, 0x0, 0x14, 0x...
by theon
13 Aug 2022, 17:22
Forum: Gaming Help (v1)
Topic: HELP %A_Index% AOB SCAN
Replies: 6
Views: 1163

Re: HELP %A_Index% AOB SCAN

https://github.com/Kalamity/classMemory/blob/master/classMemory.ahk#L1145-L1165 he is scanning now how do I retrieve these values? #include <classMemory> if (_ClassMemory.__Class != "_ClassMemory") { msgbox class memory not correctly installed. ExitApp } WinGet, PID, PID, Chara1 mem := new _ClassMe...
by theon
11 Aug 2022, 20:17
Forum: Gaming Help (v1)
Topic: HELP %A_Index% AOB SCAN
Replies: 6
Views: 1163

Re: HELP %A_Index% AOB SCAN

a good place to start is reading the processPatternScan method documentation. once u understand that parameters/arguments the method accepts and what range of values it can return and what they all mean, it shouldnt be too hard to adjust ur code. as far as the code is concerned, u surely must have ...
by theon
11 Aug 2022, 19:38
Forum: Gaming Help (v1)
Topic: HELP %A_Index% AOB SCAN
Replies: 6
Views: 1163

Re: HELP %A_Index% AOB SCAN

there seems to be some serious lack of understanding of what the method is doing and what it's returning u perform the call u get an address back, maybe(hint: u should be checking this) u perform another call, setting the starting address to the address u (hopefully) got back from the prior call re...
by theon
11 Aug 2022, 13:07
Forum: Gaming Help (v1)
Topic: HELP %A_Index% AOB SCAN
Replies: 6
Views: 1163

HELP %A_Index% AOB SCAN

I wanted to pull the values of all addresses from aob scan in the cheat engine it always appears 3 but when I put it like this, the 3 values of addres don't appear, I need it to do the aob search for all the results. more in the ahk scan it only shows one would there be any way to differentiate the...
by theon
28 Apr 2022, 07:34
Forum: Ask for Help (v1)
Topic: two loop parse help
Replies: 16
Views: 778

Re: two loop parse help

OK. No need to apologize to me. I don't know what else you want me to do after modifying the code and explaining it. You can ask further questions if you want. If you're saying that you don't want to try to understand it because it's too difficult for you, then I guess we're done here. could it be ...
by theon
16 Apr 2022, 17:54
Forum: Ask for Help (v1)
Topic: two loop parse help
Replies: 16
Views: 778

Re: two loop parse help

OK. No need to apologize to me. I don't know what else you want me to do after modifying the code and explaining it. You can ask further questions if you want. If you're saying that you don't want to try to understand it because it's too difficult for you, then I guess we're done here. I think the ...
by theon
16 Apr 2022, 15:36
Forum: Ask for Help (v1)
Topic: two loop parse help
Replies: 16
Views: 778

Re: two loop parse help

There are a few issues to fix. See the comments in the code below: F1:: Images = (LTrim 1 2 3 4 5 6 7 ) ImageNumberFound = 0 Images2 = (LTrim 12 22 32 42 52 62 72 ) ImageArray := StrSplit(Images, "`n", "`r") ImageArray2 := StrSplit(Images2, "`n", "`r") ; need to define a code block. Indenting means...
by theon
14 Apr 2022, 12:22
Forum: Ask for Help (v1)
Topic: two loop parse help
Replies: 16
Views: 778

Re: two loop parse help

Once again, you are applying the wrong version for what you ended up saying you wanted. Why did you post a version with a nested loop again? Sorry for the delay, I'm trying to put the images and images2 values in us, how would you do it? posxx := mem.write(addressmana + 0x168 ,ImageFound, "int") po...
by theon
13 Apr 2022, 22:25
Forum: Ask for Help (v1)
Topic: two loop parse help
Replies: 16
Views: 778

Re: two loop parse help

They are aligned. You don’t understand the code and must not have run it. It does exactly what you said you wanted. You applied the wrong one. You went back to the nested one. Notice that the one you just posted looks nothing like the one you quoted. I'm trying like this to see if it's right F1:: I...
by theon
13 Apr 2022, 21:47
Forum: Ask for Help (v1)
Topic: two loop parse help
Replies: 16
Views: 778

Re: two loop parse help

Then you don't really want nested loops. You want to step through both in the same loop: F1:: Images = (LTrim 1 2 3 4 5 6 7 ) ImageNumberFound = 0 Images2 = (LTrim 12 22 32 42 52 62 72 ) ImageArray := StrSplit(Images, "`n", "`r") ImageArray2 := StrSplit(Images2, "`n", "`r") for Index, Image in Imag...
by theon
13 Apr 2022, 20:41
Forum: Ask for Help (v1)
Topic: two loop parse help
Replies: 16
Views: 778

Re: two loop parse help

F1:: Images = (LTrim 1 2 3 4 5 6 7 ) ImageNumberFound = 0 Images2 = (LTrim 12 22 32 42 52 62 72 ) ImageNumberFound2 = 0 loop { loop, Parse, Images, `n, `r { OuterLoopField := A_LoopField OuterIndex := A_Index loop, Parse, Images2, `n, `r { ImageFound := OuterLoopField ImageNumberFound:= OuterIndex ...
by theon
13 Apr 2022, 20:08
Forum: Ask for Help (v1)
Topic: two loop parse help
Replies: 16
Views: 778

two loop parse help

hello everyone how do I apply both loop parse in loop field? F1:: Images = (LTrim 1 2 3 4 5 6 7 ) ImageNumberFound = 0 Images2 = (LTrim 12 22 32 42 52 62 72 ) ImageNumberFound2 = 0 loop{ Loop, Parse, Images, `n, `r Loop, Parse, Images2, `n, `r { { ImageFound := A_LoopField ImageNumberFound:= A_Inde...
by theon
10 Apr 2022, 08:29
Forum: Ask for Help (v1)
Topic: help to %A_LoopField% loop parse with multiple variables
Replies: 14
Views: 1035

Re: help to %A_LoopField% loop parse with multiple variables

just me wrote:
10 Apr 2022, 06:57
@theon, are you writing a script for a game?
android emulator
by theon
09 Apr 2022, 19:37
Forum: Ask for Help (v1)
Topic: help to %A_LoopField% loop parse with multiple variables
Replies: 14
Views: 1035

Re: help to %A_LoopField% loop parse with multiple variables

No, because when answering my question about the missing parts, you introduced more missing parts, so I'd have to ask even more questions. Now there's a GUI that you don't show any code for how it's created or for how you tried to get the data out of it. Maybe someone else is interested in unraveli...

Go to advanced search