Jump to content

Feature Request: Plus/Minus Function


xGuardianCIHx

Recommended Posts

As the title suggests, it would be convenient having a ± function which will allow certain range searches to be done quickly, especially when there are large values at play.

For instance, I know a health value in a particular game is always in FLOAT and is several figures long e.g. 1,234,567. I could do a direct search but it may have or may not have a non-zero decimal after that. Doing a search of 1,234,567 when the real figure is 1,234,567.891, no results are found unless it's an AUTO search (which is longer). A range search could amend this by typing FLOAT (1234566 ~ 1234568) = 1234567.891, though is can get cumbersome when doing it for multiple characters, over multiple battles/playthroughs in just one session (especially when the value is volatile). Instead, we could type FLOAT (1234567±1) = 1234567.891

Unless, I'm overlooking a current implementation, this could be useful!

Link to comment
Share on other sites

  • Administrators

You can use formula calculator.

Search

=a=1234567;return (a-1)..'~'..(a+1)

Use input history for paste this long value.

After that you need only edit number.

If you need specify range, you can use second variable like this:

=a=1234567;b=1;return (a-b)..'~'..(a+b)

or

=a,b=1234567,1;return (a-b)..'~'..(a+b)

 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.