Search found 11 matches

by ralfonat
Mon Jun 05, 2023 7:50 pm
Forum: Cheat Engine Lua Scripting
Topic: get a static field from a mono class
Replies: 3
Views: 4994

Re: get a static field from a mono class

Thank you so much for nudging in the right direction! So the change that made stuff work was the true param in mono_class_enumFields which is "includeParents". That seems to make the static field appear. Since your code didnt work, here is the small correction. As the field "name" is case sensitive,...
by ralfonat
Sun Jun 04, 2023 4:47 pm
Forum: Cheat Engine Lua Scripting
Topic: get a static field from a mono class
Replies: 3
Views: 4994

get a static field from a mono class

Hi there, I am trying to get a static field value displayed from the Mono ".NET Info" dialog via Lua. https://i.imgur.com/6ZIyJnU.png I have come up with this code: function dump(o) if type(o) == 'table' then local s = '{ ' for k,v in pairs(o) do if type(k) ~= 'number' then k = '"'..k..'"' end s = s...
by ralfonat
Mon Nov 07, 2022 11:31 am
Forum: Cheat Engine
Topic: Using "value between%" sometimes results in thread 15:Access violation (311)
Replies: 16
Views: 2555

Re: Using "value between%" sometimes results in thread 15:Access violation (311)

Surely that method gets the job done, but it is simply better to give CE more to work off than just unchanged/more/less.

There's certain situations where you simply only have 'x' amount of tries to get a value.
by ralfonat
Sun Nov 06, 2022 4:46 pm
Forum: Cheat Engine
Topic: Using "value between%" sometimes results in thread 15:Access violation (311)
Replies: 16
Views: 2555

Re: Using "value between%" sometimes results in thread 15:Access violation (311)

Well if you work on something brand new and you don't know the type of value when using percentages you should have a much better confinement of possibly addresses compared to just using increased/decreased.
by ralfonat
Sun Nov 06, 2022 10:49 am
Forum: Cheat Engine
Topic: Using "value between%" sometimes results in thread 15:Access violation (311)
Replies: 16
Views: 2555

Re: Using "value between%" sometimes results in thread 15:Access violation (311)

I fail to reproduce the bug you are experiencing following your exact steps. Despite the lack of error, it does not find the value I am seeking to find. Hi. Are you working with a huge result set? (Unknown initial Value, Value Type = ALL (at least 4byte, float, double) Should be at least 100million...
by ralfonat
Sat Nov 05, 2022 10:02 am
Forum: Cheat Engine
Topic: Using "value between%" sometimes results in thread 15:Access violation (311)
Replies: 16
Views: 2555

Re: Using "value between%" sometimes results in thread 15:Access violation (311)

Your solution to a bug report is to avoid the feature entirely? I get it. Well thanks, I know how to use the other features. I am looking for suggestions on how to be able to use the % feature. It can make things much easier.
by ralfonat
Fri Nov 04, 2022 11:43 am
Forum: Cheat Engine
Topic: Using "value between%" sometimes results in thread 15:Access violation (311)
Replies: 16
Views: 2555

Re: Using "value between%" sometimes results in thread 15:Access violation (311)

is there a debug log or something of that effect that I can post which would help troubleshooting? i think that UI shows you only percentage of health, but try to search the value (can be 1600 but shows 100%) I am really not sure what you are referring to? My problem is an access violation error in...
by ralfonat
Thu Nov 03, 2022 2:51 pm
Forum: Cheat Engine
Topic: Using "value between%" sometimes results in thread 15:Access violation (311)
Replies: 16
Views: 2555

Re: Using "value between%" sometimes results in thread 15:Access violation (311)

is there a debug log or something of that effect that I can post which would help troubleshooting?
by ralfonat
Thu Nov 03, 2022 10:46 am
Forum: Cheat Engine
Topic: Using "value between%" sometimes results in thread 15:Access violation (311)
Replies: 16
Views: 2555

Using "value between%" sometimes results in thread 15:Access violation (311)

Hi there, I haven't been able to find a similar thread, so here goes. Sometimes when looking for health bars for me it seems the easiest way to get the health value is by going after estimated percentages. So health bar is full -> first scan unknown initial value health bar 50% -> scan value between...