search_iftypes
Search the iftypes.txt file to locate interface definitions used in the Old School RuneScape game UI. Input a query to find specific definitions within paginated results.
Instructions
Search the iftypes.txt file for interface definitions used in the game's UI.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | Page number for pagination | |
pageSize | No | Number of results per page | |
query | Yes | The term to search for in the file |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"page": {
"default": 1,
"description": "Page number for pagination",
"minimum": 1,
"type": "integer"
},
"pageSize": {
"default": 10,
"description": "Number of results per page",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"query": {
"description": "The term to search for in the file",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}