Minecraft MCT mod 2024 download
logo
minecraft mod MCT

MCT

Game Version: CB 1.2.5-R1.0
Total Downloads: 1,145
Updated: May 1, 2012
Created: May 1, 2012
Download MCTDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
MCT v0.3.0 beta 16.56 KB May 1, 2012 CB 1.2.5-R1.0 503 download MCT MCT v0.3.0 betaDownload
MCT v0.2.3.1 beta 12.19 KB May 1, 2012 CB 1.2.5-R1.0 304 download MCT MCT v0.2.3.1 betaDownload
MCT v0.2.3 beta 12.21 KB May 1, 2012 CB 1.2.3-R0.2 338 download MCT MCT v0.2.3 betaDownload

Description

Share this:

(한국어 설명은 여기에 있습니다.)

What is MCT?

MCT is short for "Mine Cart Things"(I know this is strange), made to replace the constantspeed plugin, because just raising up maximum speed and using this was not enough.
And, whenever the server needs new features, MCT added new features, including some features not related to minecarts.
Currently, there are following features in MCT:

minecart related

  • Minecarts can move with constant speed (no limit), by placing a block beneath of a rail.
    • By editing config, kind of blocks and amount of speed can be modified.
  • Minecart will be automatically put in a player's inventory when (s)he gets out from the minecart.
    • Can be toggled by config.
  • Players can receive free minecart and rails by typing /mct.freecart and /mct.freerail.
    • Permission setting is enabled.
  • When a minecart hits wall, an accident can be happen.
    • Disabled by default, can be toggled by config.
    • When the collision happens, there will be a log who made the collision.

Korean related

(If you don't use Korean (Hangul), then you don't have to know what features exist.)

기타

  • Forbidding TNT from installation/exploding.
    • It can be also toggled by config or permission setting.

버킷 한글 패치

CraftBukkit의 소스 코드 중 TextWrapper.class의 wrapText 함수 중

// Figure out if it's allowed
int index = allowedChars.indexOf(ch);
if (index == -1) {
	// Invalid character .. skip it.
	continue;
} else {
	// Sadly needed as the allowedChars string misses the first
	index += 32;
}

// Find the width
final int width = characterWidths[index];

이 부분을

final int width;
if('가'<=ch && ch<='힣') width=6;
else if('ㄱ'<=ch && ch<='ㅣ') width=6;
else{
	int index = allowedChars.indexOf(ch);
	if(index==-1) continue;
	else width = characterWidths[index+32];
}

이렇게 수정하면 됩니다. 혹시 할 줄 모르신다면 걍 이걸 다운받으세요.
다운받거나 컴파일한 TextWrapper.class를, 압축 파일을 여는 프로그램 (빵집, 알집(비권장) 등)으로 craftbukkit jar 파일을 열어, org, bukkit, craftbukkit 순으로 탐색한 다음 그곳에 존재하는 TextWrapper.class에 덮어씌워 교체하면 한글패치가 끝납니다.

Comments

Add a comment