# Memory Read Int

### Signature

```c
int tim_memoryReadInt(int address); //id:0x1008
```

### Description

Reads an integer value from an address.

### Example

#### Get Vaan's License Points

```c
regI0 = 0; //vaan identifier
regI1 = tim_memoryExecute(0x00320A40, regI0, 0, 0, 0); //getBattleKeepBasicInfo(...)
regI2 = tim_memoryReadShort(regI1 + 0x0190); //0x0190: license points offset
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://xeavin.gitbook.io/the-insurgents-manifesto/vm-extension/new-call-targets/memory-read-int.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
