Fix a bug with teleporter

This commit is contained in:
Grinch_ 2021-02-15 14:49:01 +06:00
parent 4a5e5c6c9d
commit 61786f34a3
5 changed files with 29 additions and 12 deletions

View File

@ -207,6 +207,7 @@ void SetPlayerMission(std::string& rootkey, std::string& name, std::string& id)
int interior = 0;
Command<0x09E8>(hplayer,&interior);
if ( Util::IsOnMission() && interior == 0)
{
player->SetWantedLevel(0);

View File

@ -1,5 +1,5 @@
#pragma once
#define MENU_NAME "Cheat Menu"
#define MENU_VERSION "2.6-beta"
#define BUILD_NUMBER "20210210"
#define BUILD_NUMBER "20210215"
#define MENU_TITLE MENU_NAME " v" MENU_VERSION "(" BUILD_NUMBER ")"

View File

@ -71,15 +71,16 @@ Teleport::Teleport()
CEntity* player_entity = FindPlayerEntity(-1);
STeleport::pos.z = CWorld::FindGroundZFor3DCoord(Teleport::STeleport::pos.x, Teleport::STeleport::pos.y, STeleport::pos.z + 100.0f, 0, &player_entity) + 1.0f;
CVehicle *pVeh = player->m_pVehicle;
if (player->m_pVehicle)
player->m_pVehicle->Teleport(STeleport::pos, false);
if (pVeh && player->m_nPedFlags.bInVehicle)
pVeh->Teleport(STeleport::pos, false);
else
player->Teleport(STeleport::pos, false);
STeleport::_bool = false;
Command<Commands::FREEZE_CHAR_POSITION_AND_DONT_LOAD_COLLISION>(CPools::GetPedRef(player), false);
Command<Commands::SET_CAMERA_BEHIND_PLAYER>();
Command<Commands::RESTORE_CAMERA_JUMPCUT>();
TheCamera.Fade(0,1);
}
@ -125,7 +126,7 @@ void Teleport::TeleportPlayer(bool get_marker, CVector* pos, short interior_id)
CStreaming::LoadSceneCollision(&Teleport::STeleport::pos);
CStreaming::LoadAllRequestedModels(false);
if (pVeh)
if (pVeh && player->m_nPedFlags.bInVehicle)
{
pVeh->Teleport(CVector(pos->x, pos->y, pos->z), false);
@ -137,7 +138,7 @@ void Teleport::TeleportPlayer(bool get_marker, CVector* pos, short interior_id)
pVeh->m_nAreaCode = interior_id;
}
else
player->Teleport(CVector(pos->x, pos->y, pos->z), false);
player->Teleport(STeleport::pos, false);
player->m_nAreaCode = interior_id;
Command<Commands::SET_AREA_VISIBLE>(interior_id);

View File

@ -826,7 +826,7 @@ bool Ui::HotKey(const char* label, HotKeyData& key_data)
if (!active)
current_hotkey = label;
if (active && (ImGui::IsMouseClicked(ImGuiMouseButton_Left) || ImGui::IsItemClicked(ImGuiMouseButton_Left)))
if (active && (ImGui::IsMouseClicked(ImGuiMouseButton_Left) || ImGui::IsItemClicked(ImGuiMouseButton_Right)))
{
current_hotkey = "";
state = true;

View File

@ -1,16 +1,31 @@
#include "plugin.h"
#include "CHud.h"
using namespace plugin;
void DoStuff();
class Test
{
public:
Test()
{
Events::initGameEvent += []
Events::processScriptsEvent += DoStuff;
}
~Test()
{
patch::PutRetn0(0x4B35A4);
};
Events::processScriptsEvent -= DoStuff;
}
} test;
void DoStuff()
{
CHud::SetMessage((char*)"Test");
if (KeyPressed(VK_TAB))
{
test.~Test();
}
}