File tree 5 files changed +28
-0
lines changed
5 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 55
55
* [ 🦿 menu\_ antiaim] ( documentation/variables/menu\_ antiaim.md )
56
56
* [ 📃 filesystem] ( documentation/variables/filesystem.md )
57
57
* [ 💣 debug\_ overlay] ( documentation/variables/debug\_ overlay.md )
58
+ * [ 🌐 http] ( documentation/variables/http.md )
58
59
* [ 🧷 global\_ vars] ( documentation/variables/global\_ vars.md )
59
60
* [ 📽 netchannel] ( documentation/variables/netchannel.md )
60
61
* [ 🧶 renderer] ( documentation/variables/renderer.md )
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ local local_player_alive = local_player:get_netvar_int("m_lifeState") ~= 0
16
16
| get\_ netvar\_ bool | ` string ` var | ` bool ` | |
17
17
| get\_ netvar\_ string | ` string ` var | ` string ` | |
18
18
| get\_ netvar\_ c\_ vector3d | ` string ` var | `` [`c_vector3d`](c\_vector3d.md) `` | |
19
+ | get\_ netvar\_ handle | ` string ` var | ` c_base_handle ` | |
19
20
| set\_ netvar\_ int | (` string ` var, ` int ` value) | ` void ` | |
20
21
| set\_ netvar\_ float | (` string ` var, ` float ` value) | ` void ` | |
21
22
| set\_ netvar\_ bool | (` string ` var, ` bool ` value) | ` void ` | |
Original file line number Diff line number Diff line change 22
22
| is\_ defusing | bool | |
23
23
| has\_ helmet | bool | |
24
24
| has\_ kevlar | bool | |
25
+ | is\_ r7\_ user | bool | |
26
+ | uses\_ shared\_ esp | bool | |
25
27
| is\_ steam\_ friend | bool | |
26
28
| get\_ bb\_ start | [ c\_ vector2d] ( c\_ vector2d.md ) | |
27
29
| get\_ bb\_ size | [ c\_ vector2d] ( c\_ vector2d.md ) | |
Original file line number Diff line number Diff line change 14
14
| ----- | ---- |
15
15
| index | int |
16
16
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
+
17
25
### get\_ player\_ array\_ size
18
26
19
27
` entity_list.get_player_array_size(): ` <mark style =" color :purple ;" >` int ` </mark >
Original file line number Diff line number Diff line change
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
+
You can’t perform that action at this time.
0 commit comments