Jump to content

Broddy

Member
  • Posts

    3
  • Joined

  • Last visited

Broddy's Achievements

  1. Look in this files and folders. media\lua\server\Map\MapObjects\MORainCollectorBarrel.lua media\lua\server\RainBarrel\BuildingObjects\RainCollectorBarrel.lua media\lua\client\RainBarrel\CRainBarrelSystem.lua
  2. I'm guessing the Tiles directory isn't set correctly. You can change the Tiles directory in WorldEd's options or in the TileZed's Tools > Tilesets window.
  3. @turbotutone [RU] В ItemZed имеется ошибка из-за которой она не работает правильно у значительной части людей. Из-за этого она падает после "Reading file: uniquerecipes.txt". Для преобразования в число с плавающей точкой используется float.TryParse(str, out num). Но так как эта функция зависит от текущих параметров системы и десятичный разделитель может отличаться от ".", следует использовать eё перегрузку, например float.TryParse(str, NumberStyles.AllowLeadingWhite | NumberStyles.AllowTrailingWhite | NumberStyles.AllowLeadingSign | NumberStyles.AllowDecimalPoint | NumberStyles.AllowThousands | NumberStyles.AllowExponent, new CultureInfo("en-US").NumberFormat, out num). [EN] In ItemZed there is an error due to which it does not work correctly for significant proportion of people. Because of this, the program crashes on "Reading file: uniquerecipes.txt". To convert a floating point number used float.TryParse(str, out num). But since this function depends on the current parameters of the system and the decimal separator may be different from ".", should use its overload, for example float.TryParse(str, NumberStyles.AllowLeadingWhite | NumberStyles.AllowTrailingWhite | NumberStyles.AllowLeadingSign | NumberStyles.AllowDecimalPoint | NumberStyles.AllowThousands | NumberStyles.AllowExponent, new CultureInfo("en-US").NumberFormat, out num).
×
×
  • Create New...