It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.

ZenScript
Copy
import crafttweaker.api.world.GameType;

GameType is an enum. It has 4 enum constants. They are accessible using the code below.

ZenScript
Copy
<constant:minecraft:world/gametype:survival>
<constant:minecraft:world/gametype:creative>
<constant:minecraft:world/gametype:adventure>
<constant:minecraft:world/gametype:spectator>

Name: getId

Return Type: int

ZenScript
Copy
// GameType.getId() as int

myGameType.getId();

Link to getLongDisplayName

Name: getLongDisplayName

Return Type: Component

ZenScript
Copy
// GameType.getLongDisplayName() as Component

myGameType.getLongDisplayName();

Name: getName

Return Type: string

ZenScript
Copy
// GameType.getName() as string

myGameType.getName();

Link to getShortDisplayName

Name: getShortDisplayName

Return Type: Component

ZenScript
Copy
// GameType.getShortDisplayName() as Component

myGameType.getShortDisplayName();

Link to isBlockPlacingRestricted

Name: isBlockPlacingRestricted

Return Type: boolean

ZenScript
Copy
// GameType.isBlockPlacingRestricted() as boolean

myGameType.isBlockPlacingRestricted();

Name: isCreative

Return Type: boolean

ZenScript
Copy
// GameType.isCreative() as boolean

myGameType.isCreative();

Name: isSurvival

Return Type: boolean

ZenScript
Copy
// GameType.isSurvival() as boolean

myGameType.isSurvival();

Link to updatePlayerAbilities

Name: updatePlayerAbilities

ZenScript
Copy
GameType.updatePlayerAbilities(abilities as Abilities)
参数类型
参数
abilities
类型
Abilities
名称类型可获得可设置
名称
id
类型
int
可获得
true
可设置
false
名称
isBlockPlacingRestricted
类型
布尔值
可获得
true
可设置
false
名称
isCreative
类型
布尔值
可获得
true
可设置
false
名称
isSurvival
类型
布尔值
可获得
true
可设置
false
名称
longDisplayName
类型
Component
可获得
true
可设置
false
名称
name(名称)
类型
string
可获得
true
可设置
false
名称
shortDisplayName
类型
Component
可获得
true
可设置
false