PalWorld-NetCrack icon indicating copy to clipboard operation
PalWorld-NetCrack copied to clipboard

Features and Adjustments

Open xCENTx opened this issue 1 year ago • 5 comments

SDK

  • Changed TArray function name "Num" to "Count" for clarity

CONFIG

  • included additional helper functions

FEATURE

  • General cleanup
  • Include features as functions

NOTES:

  • new feature functions have not been implemented

xCENTx avatar Jan 26 '24 13:01 xCENTx

So i just tried to compile that and it failed with these error's

"FSoftObjectPath" is undefined NetCrack-PalWorld D:\case\repos\SDK\Basic.hpp 458

public:
	FString GetSubPathString();
	std::string GetSubPathStringStr();

	template<class SoftObjectPath = FSoftObjectPath>
	SoftObjectPath& GetObjectPath();
};

config.cpp 'GetCharacterImpManager': function must return a value NetCrack-PalWorld D:\case\repos\config.cpp 53

SDK::UPalCharacterImportanceManager* GetCharacterImpManager()
{
    SDK::UWorld* pWorld = config::gWorld;
    if (!pWorld)
        return;

    SDK::UGameInstance* pGameInstance = pWorld->OwningGameInstance; 
    if (!pGameInstance) 
        return nullptr;

    return static_cast<SDK::UPalGameInstance*>(pGameInstance)->CharacterImportanceManager;
}

feature.ccp 'SetCraftingSpeed': redefinition of default argument: parameter 1 NetCrack-PalWorld D:\case\repos\feature.cpp 78

void SetCraftingSpeed(float mNewSpeed, bool bRestoreDefault = false)
{
	APalPlayerCharacter* pPalCharacter = Config.GetPalPlayerCharacter();
	if (!pPalCharacter)
		return;

	UPalCharacterParameterComponent* pParams = pPalCharacter->CharacterParameterComponent;
	if (!pParams)
		return;

	UPalIndividualCharacterParameter* ivParams = pParams->IndividualParameter;
	if (!ivParams)
		return;

	FPalIndividualCharacterSaveParameter sParams = ivParams->SaveParameter;
	TArray<FFloatContainer_FloatPair> mCraftSpeedArray = sParams.CraftSpeedRates.Values;

	if (mCraftSpeedArray.Count() > 0)
		mCraftSpeedArray[0].Value = bRestoreDefault ? 1.0f : mNewSpeed;
}

RayshenOmega avatar Jan 26 '24 15:01 RayshenOmega

So i just tried to compile that and it failed with these error's

"FSoftObjectPath" is undefined NetCrack-PalWorld D:\case\repos\SDK\Basic.hpp 458 'GetCharacterImpManager': function must return a value NetCrack-PalWorld D:\case\repos\config.cpp 53 'SetCraftingSpeed': redefinition of default argument: parameter 1 NetCrack-PalWorld D:\case\repos\feature.cpp 78

these errors have been addressed in the latest push

xCENTx avatar Jan 26 '24 17:01 xCENTx

merged with 6b548a4

xCENTx avatar Jan 26 '24 17:01 xCENTx

Oooh these are slick.

BennettStaley avatar Jan 26 '24 19:01 BennettStaley

I'd love to see the esp filter out based on a char input box. So you can effectively "search" for the pal you wanted.

Also feel free to pull in my latest commit. LMK if you have any more reqs.

BennettStaley avatar Jan 27 '24 00:01 BennettStaley

Build started: Project: SoTMaulder-PalWorld, Configuration: Release x64 ------ 1>Menu.obj : error LNK2001: unresolved external symbol "void __cdecl ESP_DEBUG(double,class SDK::UClass *)" (?ESP_DEBUG@@YAXNPEAVUClass@SDK@@@Z) 1> Hint on symbols that are defined and could potentially match: 1> "void __cdecl ESP_DEBUG(float,struct ImVec4,class SDK::UClass *)" (?ESP_DEBUG@@YAXMUImVec4@@PEAVUClass@SDK@@@Z) 1>C:\Users\itzkaydo\Desktop\Palword\SoTMaulder-PalWorld\x64\Release\SoTMaulder-PalWorld.dll : fatal error LNK1120: 1 unresolved externals

itzkaydo avatar Jan 27 '24 05:01 itzkaydo

any good idea to fix low fps ? losed 50~60 fps , even without drawing

killercc avatar Jan 27 '24 05:01 killercc

Build started: Project: SoTMaulder-PalWorld, Configuration: Release x64 ------ 1>Menu.obj : error LNK2001: unresolved external symbol "void __cdecl ESP_DEBUG(double,class SDK::UClass *)" (?ESP_DEBUG@@YAXNPEAVUClass@SDK@@@Z) 1> Hint on symbols that are defined and could potentially match: 1> "void __cdecl ESP_DEBUG(float,struct ImVec4,class SDK::UClass *)" (?ESP_DEBUG@@YAXMUImVec4@@PEAVUClass@SDK@@@Z) 1>C:\Users\itzkaydo\Desktop\Palword\SoTMaulder-PalWorld\x64\Release\SoTMaulder-PalWorld.dll : fatal error LNK1120: 1 unresolved externals

@swordbluesword just merged @geocine 's fix for it, there was a different signature defined in feature.h and menu.cpp, causing that error.

yeetmans avatar Jan 27 '24 08:01 yeetmans