mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-18 07:07:32 +08:00

* Add Return Value Support for Script Functions * Removed address-of operator on instruction_pointer parameter, as sol is pass-by-value. * Fixed reset_session_data & start_creator_script * Added support for Vector3 and updated casting for bool type for proper conversion to Lua boolean * Updated documentation for scr_function * Added get_int method and updated param names for script functions * Fix #3497 graceful landing not saved. * Added a check in view_lsc to see if the vehicle can accept clan logos first. * Fixed vehicle clan logo SP bypass not working properly. * Fixed COPY VEHICLE not giving persist_car_service::spawn_vehicle_json the target's ped so it can copy their clan logo and not ours. Fixed spawn_vehicle_json calling add_clan_logo_to_vehicle with our logo and not the ped parameter's logo. * Added Clone Player Car. * Fixed has_clan_logo check in view_lsc being given the wrong parameter. --------- Co-authored-by: gir489 <100792176+gir489returns@users.noreply.github.com>
25 lines
528 B
C++
25 lines
528 B
C++
#pragma once
|
|
#include "common.hpp"
|
|
|
|
namespace big
|
|
{
|
|
class backend
|
|
{
|
|
public:
|
|
static void loop();
|
|
static void self_loop();
|
|
static void ambient_animations_loop();
|
|
static void weapons_loop();
|
|
static void vehicles_loop();
|
|
static void misc_loop();
|
|
static void remote_loop();
|
|
static void rainbowpaint_loop();
|
|
static void disable_control_action_loop();
|
|
static void world_loop();
|
|
static void orbital_drone();
|
|
static void vehicle_control();
|
|
static void tunables_script();
|
|
static void squad_spawner();
|
|
};
|
|
}
|