Initial commit - LCEMP source code (assets excluded)

This commit is contained in:
NOTPIES
2026-03-01 20:29:13 -03:00
commit 21a5a4aef0
2946 changed files with 577259 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
#include "stdafx.h"
#include "..\..\Minecraft.h"
#include "..\..\LocalPlayer.h"
#include "..\..\StatsCounter.h"
#include "..\..\..\Minecraft.World\net.minecraft.stats.h"
#include "StatTask.h"
StatTask::StatTask(Tutorial *tutorial, int descriptionId, bool enablePreCompletion, Stat *stat, int variance /*= 1*/)
: TutorialTask( tutorial, descriptionId, enablePreCompletion, NULL )
{
this->stat = stat;
Minecraft *minecraft = Minecraft::GetInstance();
targetValue = minecraft->stats[ProfileManager.GetPrimaryPad()]->getTotalValue( stat ) + variance;
}
bool StatTask::isCompleted()
{
if( bIsCompleted )
return true;
Minecraft *minecraft = Minecraft::GetInstance();
bIsCompleted = minecraft->stats[ProfileManager.GetPrimaryPad()]->getTotalValue( stat ) >= (unsigned int)targetValue;
return bIsCompleted;
}