All public logs

From Vintage Story Wiki

Combined display of all available logs of Vintage Story Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 16:41, 24 March 2024 Lett0 talk contribs created page Translations:Modding:Advanced Items/26/ru (Created page with "<syntaxhighlight lang="c#"> public void DestroyBlocks(IWorldAccessor world, BlockPos min, BlockPos max, IPlayer player) { BlockPos tempPos = new BlockPos(); for (int x = min.X; x <= max.X; x++) { for (int y = min.Y; y <= max.Y; y++) { for (int z = min.Z; z <= max.Z; z++) { tempPos.Set(x, y, z); if (player.WorldData.CurrentGameMode == EnumGameMode.Creative) world.BlockA...")