Jump to content
  • 0

I want ask about gg.searchNumber


Vandray

Question

Example: gg.searchNumber("1.91249990463F",gg.TYPE_DOUBLE,false,gg.SIGN_EQUAL,0,-1)

My question is:

false,gg.SIGN_EQUAL,0,-1

what is this

Don't say read API please. I have read it and don't understand so i ask here.

 

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

49 minutes ago, Enyby said:

Write here what you read.

encrypted
Flag for run search encrypted values.

Encrypted (true/false) can you give me example encrypted values?


sign
Sign. One of the constants SIGN_*.

I read the example and 'range search' but i have a script that use sign_equal and only search 1 value. So i confuse what is this.


memoryFromStart 
memory address for the search.

memoryToEnd 
memory address for the search.

 

The point is i don't understand this part

false,gg.SIGN_EQUAL,0,-1

 

sorry my bad English

Link to comment
Share on other sites

6 minutes ago, Vandray said:

The point is i don't understand this part

false,gg.SIGN_EQUAL,0,-1

These are values for the corresponding parameters of the function: "encrypted", "sign", "memoryFrom", "memoryTo".
Moreover, these are default values for them. It means that they can be omitted when calling the function.

gg.searchNumber("1.91249990463F", gg.TYPE_DOUBLE, false, gg.SIGN_EQUAL, 0, -1)

is absolutely identical to:

gg.searchNumber("1.91249990463F", gg.TYPE_DOUBLE)

 

Link to comment
Share on other sites

24 minutes ago, Enyby said:

It is not encrypted values. But do encrypted search.

See example.

Read GG help. https://gameguardian.net/help/help.html#help_encrypted_search

 

Try to look at the search dialog and you will understand what for what.

 

 

scr_1533242800.jpg

scr_1533242814.jpg

Thank you

_______________________________________________
added 0 minutes later
20 minutes ago, CmP said:

These are values for the corresponding parameters of the function: "encrypted", "sign", "memoryFrom", "memoryTo".
Moreover, these are default values for them. It means that they can be omitted when calling the function.


gg.searchNumber("1.91249990463F", gg.TYPE_DOUBLE, false, gg.SIGN_EQUAL, 0, -1)

is absolutely identical to:


gg.searchNumber("1.91249990463F", gg.TYPE_DOUBLE)

 

Thank you

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.