Package net.minecraft.src
Class StatList
java.lang.Object
net.minecraft.src.StatList
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic Liststatic StatBasetimes a world has been createdstatic StatBasethe amount of damage you've dealtstatic StatBasethe amount of damage you have takenstatic StatBasethe number of times you have diedstatic StatBasethe distance you've traveled by boatstatic StatBasethe distance you've traveled by minecartstatic StatBasethe distance you've traveled by pigstatic StatBasethe distance you've climbedstatic StatBasethe distance you've divedstatic StatBasethe distance you have fallenstatic StatBasethe distance you've flownstatic StatBasedistance you have swamstatic StatBasedistance you've walkedstatic StatBasethe distance you've dropped (or times you've fallen?)static StatBasestatic Liststatic Liststatic StatBasenumber of times you've joined a multiplayer worldstatic StatBasethe times you've jumpedstatic StatBasenumber of times you've left a gamestatic StatBasethe number of times you have loaded a worldstatic StatBase[]static StatBasenumber of minutes you have playedstatic StatBasethe number of mobs you have killedstatic StatBase[]Tracks the number of times a given block or item has been broken.static StatBase[]Tracks the number of items a given block or item has been crafted.static ListTracks the number of times a given block or item has been mined.static StatBase[]Tracks the number of times a given block or item has been used.protected static MapTracks one-off stats.static StatBasecounts the number of times you've killed a playerstatic StatBasetimes the game has been started -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic StatBasegetOneShotStat(int par0) static voidInitializes statistic fields related to breakable items and blocks.static voidInitializes statistics related to craftable items.static voidstatic voidnopInit()This method simply NOPs.
-
Field Details
-
oneShotStats
Tracks one-off stats. -
allStats
-
generalStats
-
itemStats
-
objectMineStats
Tracks the number of times a given block or item has been mined. -
startGameStat
times the game has been started -
createWorldStat
times a world has been created -
loadWorldStat
the number of times you have loaded a world -
joinMultiplayerStat
number of times you've joined a multiplayer world -
leaveGameStat
number of times you've left a game -
minutesPlayedStat
number of minutes you have played -
distanceWalkedStat
distance you've walked -
distanceSwumStat
distance you have swam -
distanceFallenStat
the distance you have fallen -
distanceClimbedStat
the distance you've climbed -
distanceFlownStat
the distance you've flown -
distanceDoveStat
the distance you've dived -
distanceByMinecartStat
the distance you've traveled by minecart -
distanceByBoatStat
the distance you've traveled by boat -
distanceByPigStat
the distance you've traveled by pig -
jumpStat
the times you've jumped -
dropStat
the distance you've dropped (or times you've fallen?) -
damageDealtStat
the amount of damage you've dealt -
damageTakenStat
the amount of damage you have taken -
deathsStat
the number of times you have died -
mobKillsStat
the number of mobs you have killed -
playerKillsStat
counts the number of times you've killed a player -
fishCaughtStat
-
mineBlockStatArray
-
objectCraftStats
Tracks the number of items a given block or item has been crafted. -
objectUseStats
Tracks the number of times a given block or item has been used. -
objectBreakStats
Tracks the number of times a given block or item has been broken.
-
-
Constructor Details
-
StatList
public StatList()
-
-
Method Details
-
nopInit
public static void nopInit()This method simply NOPs. It is presumably used to call the static constructors on server start. -
initBreakableStats
public static void initBreakableStats()Initializes statistic fields related to breakable items and blocks. -
initStats
public static void initStats() -
initCraftableStats
public static void initCraftableStats()Initializes statistics related to craftable items. Is only called after both block and item stats have been initialized. -
getOneShotStat
-