vanillacold wrote: ↑Fri Nov 01, 2024 10:45 am
You'll need to downgrade to the March 2017 version.
To downgrade Steam Spore to March2017, do the following:
Press Win + R, and type in
steam://open/console/ to open Steam's console.
From there, type
download_depot 24720 24721 7407510787032991484 into the console to prompt Steam to download the old version.
When it's installed, it will not be in the default location but instead in
Steam/Steamapps/Content/, and you can safely copy over the EXE file
Hello, I've trie to made a "true grox archetype" mod, I put in any codes that I can use, but it has nothing change in the game when I type in my cheat, can you help me to see the place that I got wrong?[
#include "stdafx.h"
#include "GrobCheat.h"
#include <Spore\Simulator\cPlayer.h>
using namespace Simulator;
using namespace App;
using namespace ArgScript;
GrobCheat::GrobCheat()
{
}
GrobCheat::~GrobCheat()
{
}
void GrobCheat::ParseLine(const ArgScript::Line& line)
{
if (IsSpaceGame()) {
GetPlayer()->mSpaceConsequenceTrait* kArchetypeGrob;
int mArchetype = 8;
enum Archetypes Player = kArchetypeGrob;
Archetypes kArchetypeGrob{};
return;
}
}
const char* GrobCheat::GetDescription(ArgScript::DescriptionMode mode) const
{
if (mode == ArgScript::DescriptionMode::Basic) {
return "This cheat does something.";
}
else {
return "GrobCheat: Elaborate description of what this cheat does.";
}
}
]