MCServerWorld
Link to mcserverworld
Represents the logical (server) implementation of the world. These are not limited to dedicated servers, they exist in single player worlds as part of the integrated server.
Importare la Classe
Link to importare-la-classe
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 Copyimport crafttweaker.api.world.MCServerWorld;
Extending MCWorld
Link to extending-mcworld
MCServerWorld extends MCWorld. That means all methods available in MCWorld are also available in MCServerWorld
Metodi
Link to metodi
Name: getEntities
Gets entities in the world that match the given Predicate and the given MCEntityType (if provided).
Returns: A List of Entities that match.
Return Type: stdlib.List<MCEntity>
ZenScript Copy// MCServerWorld.getEntities(predicate as Predicate<MCEntity>, type as MCEntityType) as stdlib.List<MCEntity>
(world as MCServerWorld).getEntities((entity as MCEntity) => entity.isImmuneToFire(), <entitytype:minecraft:sheep>);
Parametro | Tipo | Descrizione | Optional | DefaultValue |
---|---|---|---|---|
Parametro predicate | Tipo Predicate<MCEntity> | Descrizione The predicate to check against. | Optional no | DefaultValue |
Parametro type | Tipo MCEntityType | Descrizione No Description Provided | Optional sì | DefaultValue |
Name: isRaid
Checks if a position is within an active raid.
Returns: Whether or not the position was inside an active raid.
Return Type: boolean
ZenScript Copy// MCServerWorld.isRaid(pos as BlockPos) as boolean
(world as MCServerWorld).isRaid(new BlockPos(0, 1, 2));
Parametro | Tipo | Descrizione |
---|---|---|
Parametro pos | Tipo BlockPos | Descrizione The position to look up. |
Name: isSlimeChunk
Checks if a position is within a chunk that is considered a slime chunk.
Returns: Whether or not the position was inside a slime chunk.
Return Type: boolean
ZenScript Copy// MCServerWorld.isSlimeChunk(pos as BlockPos) as boolean
(world as MCServerWorld).isSlimeChunk(new BlockPos(0, 1, 2));
Parametro | Tipo | Descrizione |
---|---|---|
Parametro pos | Tipo BlockPos | Descrizione The position to look up. |
Name: isVillage
Checks if a position is within a village.
Returns: Whether or not the position was inside a village.
Return Type: boolean
ZenScript Copy// MCServerWorld.isVillage(pos as BlockPos) as boolean
(world as MCServerWorld).isVillage(new BlockPos(0, 1, 2));
Parametro | Tipo | Descrizione |
---|---|---|
Parametro pos | Tipo BlockPos | Descrizione The position to look up. |
Name: setTimeToDay
Sets the time of the Minecraft day to day. This is like using the "time set day" command or setting the time to 1000.
Return Type: void
ZenScript Copy// MCServerWorld.setTimeToDay() as void
(world as MCServerWorld).setTimeToDay();
Name: setTimeToMidnight
Sets the time of the Minecraft day to midnight. This is like using the "time set midnight" command or setting the time to 18000.
Return Type: void
ZenScript Copy// MCServerWorld.setTimeToMidnight() as void
(world as MCServerWorld).setTimeToMidnight();
Name: setTimeToNight
Sets the time of the Minecraft day to night. This is like using the "time set night" command or setting the time to 13000.
Return Type: void
ZenScript Copy// MCServerWorld.setTimeToNight() as void
(world as MCServerWorld).setTimeToNight();
Name: setTimeToNoon
Sets the time of the Minecraft day to noon. This is like using the "time set noon" command or setting the time to 6000.
Return Type: void
ZenScript Copy// MCServerWorld.setTimeToNoon() as void
(world as MCServerWorld).setTimeToNoon();
Proprietà
Link to proprietà
Nome | Tipo | Ha Getter | Ha Setter | Descrizione |
---|---|---|---|---|
Nome seed | Tipo long | Ha Getter sì | Ha Setter no | Descrizione Gets the random seed of the world. |
Nome server | Tipo MCServer | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome timeOfDay | Tipo MCServerWorld | Ha Getter no | Ha Setter sì | Descrizione Sets the time of the Minecraft day. |