Skip to content

Commit de0c136

Browse files
bakatamegitbook-bot
authored andcommitted
GitBook: [#39] No subject
1 parent 66aa304 commit de0c136

File tree

5 files changed

+28
-0
lines changed

5 files changed

+28
-0
lines changed

SUMMARY.md

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
* [🦿 menu\_antiaim](documentation/variables/menu\_antiaim.md)
5656
* [📃 filesystem](documentation/variables/filesystem.md)
5757
* [💣 debug\_overlay](documentation/variables/debug\_overlay.md)
58+
* [🌐 http](documentation/variables/http.md)
5859
* [🧷 global\_vars](documentation/variables/global\_vars.md)
5960
* [📽 netchannel](documentation/variables/netchannel.md)
6061
* [🧶 renderer](documentation/variables/renderer.md)

documentation/class/c_client_entity.md

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ local local_player_alive = local_player:get_netvar_int("m_lifeState") ~= 0
1616
| get\_netvar\_bool | `string` var | `bool` | |
1717
| get\_netvar\_string | `string` var | `string` | |
1818
| get\_netvar\_c\_vector3d | `string` var | ``[`c_vector3d`](c\_vector3d.md)`` | |
19+
| get\_netvar\_handle | `string` var | `c_base_handle` | |
1920
| set\_netvar\_int | (`string` var, `int` value) | `void` | |
2021
| set\_netvar\_float | (`string` var, `float` value) | `void` | |
2122
| set\_netvar\_bool | (`string` var, `bool` value) | `void` | |

documentation/class/esp_player_info.md

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
| is\_defusing | bool | |
2323
| has\_helmet | bool | |
2424
| has\_kevlar | bool | |
25+
| is\_r7\_user | bool | |
26+
| uses\_shared\_esp | bool | |
2527
| is\_steam\_friend | bool | |
2628
| get\_bb\_start | [c\_vector2d](c\_vector2d.md) | |
2729
| get\_bb\_size | [c\_vector2d](c\_vector2d.md) | |

documentation/variables/entity_list.md

+8
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@
1414
| ----- | ---- |
1515
| index | int |
1616

17+
### get\_entity\_from\_handle
18+
19+
`entity_list.get_entity(handle):` <mark style="color:purple;">`table c_client_entity`</mark>
20+
21+
| Name | Type |
22+
| ------ | --------------- |
23+
| handle | c\_base\_handle |
24+
1725
### get\_player\_array\_size
1826

1927
`entity_list.get_player_array_size():` <mark style="color:purple;">`int`</mark>

documentation/variables/http.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# 🌐 http
2+
3+
## Functions:
4+
5+
### get
6+
7+
`http.get(std::string url):`<mark style="color:purple;">`*string`</mark>
8+
9+
### post
10+
11+
`http.post(std::string url, std::string post_value):`<mark style="color:purple;">`*string`</mark>
12+
13+
### post\_json
14+
15+
`http.post_json(std::string url, std::string post_value):`<mark style="color:purple;">`*string`</mark>
16+

0 commit comments

Comments
 (0)