We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c2aef2 commit 999d648Copy full SHA for 999d648
UE4SS/src/Signatures.cpp
@@ -46,6 +46,13 @@ namespace RC
46
47
lua.execute_file(script_file_path_and_name.string());
48
49
+ if (lua.get_stack_size() > 0 && lua.is_integer())
50
+ {
51
+ auto found_address = reinterpret_cast<void*>(lua.get_integer());
52
+ match_found_func(found_address);
53
+ return;
54
+ }
55
+
56
constexpr const char* global_register_func_name = "Register";
57
constexpr const char* global_on_match_found_func_name = "OnMatchFound";
58
0 commit comments