Coder Social home page Coder Social logo

issuimo / phasmophobiacheat Goto Github PK

View Code? Open in Web Editor NEW
28.0 3.0 9.0 36.28 MB

恐鬼症作弊 Phasmophobia Cheat | 多功能 (Multifunctional) | 自动更新数据 (Automatic data updates)

License: MIT License

C 1.44% C++ 98.52% C# 0.04%
gamehack phasmophobia phasmophobia-cheat phasmophobia-hack phasmophobia-mod-menu

phasmophobiacheat's Introduction

phasmophobiacheat's People

Contributors

issuimo avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

phasmophobiacheat's Issues

Suggestion

Maybe you could add item esp, bone, cursed item.

bugs

image
that button "Intereact" won't work
` public static void Interact()
{
Debug.Msg("Troll->Interact: Triggered", 1);
// Main.ghostAI.Inte();
Main.ghostActivity.Interact();

 Main.ghostAI.field_Public_GhostActivity_0.InteractWithARandomProp(true,true);
 Main.ghostAI.field_Public_GhostActivity_0.Interact();
 Main.ghostAI.field_Public_GhostActivity_0.InteractWithARandomDoor();

}`

add item won't work

When u press DELETE key it should appear mouse visitibly but there is no
if (cheatmenu == false) { cheatmenu = true; originalLockState = Cursor.lockState; originalVisible = Cursor.visible; Cursor.lockState = CursorLockMode.None; Cursor.visible = true; if (myPlayer != null) myPlayer.field_Public_FirstPersonController_0.enabled = false; } else if (cheatmenu == true) { cheatmenu = false; Cursor.lockState = originalLockState; Cursor.visible = originalVisible; if (myPlayer != null) myPlayer.field_Public_FirstPersonController_0.enabled = true;

also I suggesting add

RandomWeather -> public void PlayLightningEffect()
and noclip & fly
` fly = !fly;
if (fly)
{
GetLocalPlayer().field_Public_CharacterController_0.enabled = false;
GetLocalPlayer().GetComponent().useGravity = false;
}
else
{
GetLocalPlayer().GetComponent().enabled = true;
}
}
if (fly)
{
Ray y = Camera.main.ScreenPointToRay(new Vector2(Screen.width / 2, Screen.height / 2));
float up = y.direction.y * movementMultiplier * Time.deltaTime;
float frd = (Mathf.Abs(y.direction.z) + Mathf.Abs(y.direction.x)) / 2;
GetLocalPlayer().field_Public_CharacterController_0.enabled = false;
GetLocalPlayer().GetComponent().useGravity = false;

if (keyboard.wKey.isPressed)
{
    GetLocalPlayer().transform.position += GetLocalPlayer().transform.TransformDirection(0, up, frd * movementMultiplier * Time.deltaTime);
}
if (keyboard.sKey.isPressed)
{
    GetLocalPlayer().transform.position += GetLocalPlayer().transform.TransformDirection(0, -(up), -(frd) * movementMultiplier * Time.deltaTime);
}
if (keyboard.aKey.isPressed)
{
    GetLocalPlayer().transform.position += GetLocalPlayer().transform.TransformDirection(-1f * movementMultiplier * Time.deltaTime, 0, 0);
}
if (keyboard.dKey.isPressed)
{
    GetLocalPlayer().transform.position += GetLocalPlayer().transform.TransformDirection(1f * movementMultiplier * Time.deltaTime, 0, 0);
}

}`

FullBright:
`
if (keyboard.f1Key.wasPressedThisFrame)
{
CheatToggles.enableFullbright = !CheatToggles.enableFullbright;
Debug.Msg("Fullbright: Toggled " + (CheatToggles.enableFullbright ? "On" : "Off"), 1);
if (CheatToggles.enableFullbright == true)
{
Fullbright.Enable();
}
else
{
Fullbright.Disable();
}
}

public static void Enable()
{
if (Main.boneTransform != null && Main.initializedScene > 1 && isAlreadyOn == false)
{
isAlreadyOn = true;
Debug.Msg("isAlreadyOn: true", 3);
Main.light = Main.boneTransform.GetComponent();
Object.Destroy(Main.boneTransform.GetComponent());
Main.light = Main.boneTransform.gameObject.AddComponent();
Main.light.color = Color.white;
Main.light.type = LightType.Spot;
Main.light.shadows = LightShadows.None;
Main.light.range = 99f;
Main.light.spotAngle = 9999f;
Main.light.intensity = 0.3f;
Debug.Msg("boneTransform set", 3);
}
else if (isAlreadyOn == false)
{
CheatToggles.enableFullbright = !CheatToggles.enableFullbright;
Debug.Msg("No boneTransform! Fullbright: Toggled " + (CheatToggles.enableFullbright ? "On" : "Off"), 1);
}
}

public static void Disable()
{
isAlreadyOn = false;
Debug.Msg("isAlreadyOn: false", 3);
Object.Destroy(Main.light);
}

private static bool isAlreadyOn = false;

`

some examples from my c# mod menu, I'm not good at c++
I'm trying to learn c++ by studying your project and making improvements on it. thank you so much for sharing.

Suggestion

If you are still interested in this project, could you add a few more features such as flying, full bright, unlimited inventory slots etc?

Visual Studio errors

So when I open the project and build it throws a bunch of errors, example:

Severity Code Description Project File Line Suppression State
Error C2664 'BOOL SetConsoleTitleA(LPCSTR)': cannot convert argument 1 from 'const wchar_t *' to 'LPCSTR' (compiling source file features\Ghost.cpp) Phasmophobia C:\Users\user\Desktop\PhasmophobiaCheat-main\Phasmophobia\library\Console.hpp 87

Would love to have this to practice and learn with.

mkl.h

can u add to your guide how to install intel kernel libary for windows "mkl.h" ?

err

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.