Jump to content
DAYZ-CODE.RU - Создай свой игровой сервер

Search the Community

Showing results for tags 'ronjam'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • THE MAIN SECTION OF THE FORUM
    • DAYZ-CODE.RU
    • АРБИТРАЖ DAYZ-CODE.RU
    • DAYZ STANDALONE GAME NEWS
  • SERVER BUILDING - DAYZ STANDALONE
    • GUIDES/MANUALS AND OTHER INSTRUCTIONS
    • HELP - DAYZ STANDALONE
  • PRIVATE SECTION OF THE SITE
    • PRIVATE SECTION
  • TRADE SECTION AND PROVISION OF SERVICES
    • PURCHASE OF GOODS AND SERVICES
    • PROVISION OF SERVICES
    • WORK
  • PRODUCT SUPPORT TOPICS
    • PRODUCT SUPPORT DAYZ STANDALONE
    • SUPPORT FOR "USEFUL SOFTWARE"
  • Different
    • FLAME ON VARIOUS TOPICS
  • JOINT PURCHASES
    • ALL JOINT PURCHASES
  • SITE ARCHIVE DAYZ-CODE.RU
    • SITE ARCHIVE
  • ARMA 3
    • ARMA 3 - GUIDES/MANUALS AND OTHER INSTRUCTIONS
    • HELP - ARMA 3
  • ARMA 3
    • ARMA 3 - Missions and Campaigns
  • ARMA 3
    • ARMA 3 - Online game
  • ARMA 3
    • ARMA 3 - Editor
  • ARMA 3 -BIS
    • ARMA 3 - BIS Bugtracker
  • DAYZ STANDALONE -BIS
    • DAYZ SA - BIS Bugtracker

Categories

  • Equipment
    • Shoes
    • Masks
    • Hats
    • Glasses
    • Gloves
    • Vests
    • Backpacks
    • Cloth
    • Belts
  • Craft
  • Food
    • Meat and Fish
    • Canned food
    • Mushrooms
    • Vegetables and fruits
    • Water and Drinks
  • Indicators
  • Construction
  • Ammo
  • Modules
    • Magazines and clips
    • Add. Modifications
    • Butts
    • Sights
    • Muzzle modifications
    • Handguard and Handles
  • Weapons
    • G. launchers
    • Auth. Rifles
    • Shotguns
    • Pistols M. guns
    • Rifles
    • Pistols
    • Throwing
  • Medicine
  • Grenades
  • Diseases
  • Instruments
  • Tents and Containers
  • Resources
    • Fuel
    • Extracted resources
    • Building Resources
    • Animal skins
  • Electrical apps
  • Means of communication
  • Sources of light
  • Repair
  • Other
  • Cooking
  • Explosives

Categories

  • DayZ STANDALONE
    • Server builds
    • Scripts, mods
    • Map modding
    • Transport
    • Weapons
    • Furniture
    • Items
    • Models
  • DayZ useful software
    • Software
    • Other

Product Groups

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Information


Paul


City


Member Title


VKontakte


Discord


Boosty


Mail


Skype


Steam ID

  1. Просмотр файла Airdrop Plus | Аирдроп плюс Хороший приватный аирдроп, его по ошибке слил сам создатель. Пбо протекченная Аирдроп очень гибкий в плане настройки, визуала. Понятный конфиг P.S Стоит 4.5к A good private airdrop, it was mistakenly leaked by the creator himself. Pbo leaked Airdrop is very flexible in terms of settings, visual. Clear config P.S Costs 4.5k Добавил ronjam v2 Добавлено 03.10.2023 Категория Скрипты, моды  
  2. Паттерны: Патерны/маска: Сделайте сами мне лень 🙂 Мусор:
  3. Просмотр файла Keycard System | Система карточек Мод для вашего сервера, добавляет карточки из игры Escape From Tarkov. У мода есть привязка к дверям через Lockpick (от мода) Все другое можно увидить если установите 🙂 Класснеймы мода начинаются на RJ_ Видео что как выглядит клик Mod for your server, adds cards from the Escape From Tarkov game. The mod has a binding to the doors via the Lockpick (from the mod) Everything else can be seen if you install 🙂 Cool fashion names start with RJ_ Video what does a click look like Добавил ronjam v2 Добавлено 13.11.2023 Категория Скрипты, моды  
  4. Что делает скрипт: Скрипт добавляет на ваш сервер систему выдачи лута при появлении игрока, либо определенного лута человеку по steamid64 (донатеру к примеру). Как это сделать? Для этого нам понадобится зайти в главную папку с вашей картой, к примеру чернарусь (Путь: 0\mpmissions\dayzOffline.chernarusplus) После того как вы зашли, в этой папку нужно найти файл с названием init.c Открываем файл и видим строки кода, нам нужна строчка с началом ( class CustomMission: MissionServer ). Для меня это 33 строчка. Начиная с нее нам нужно вставить код до строчки как на скриншоте клик: class CustomMission : MissionServer { private const static string m_SpawnLoadoutDirectory = "$profile:SpawnLoadout/"; // root directory for SpawnLoadout private const static string m_DonatorDirectory = m_SpawnLoadoutDirectory + "Donators/"; // directory for donator loadout text files private const static string m_RegularLoadout = m_SpawnLoadoutDirectory + "Regular.txt"; // file for regular loadout private const static string m_CommonItems = m_SpawnLoadoutDirectory + "CommonItems.txt"; // file for in common items for both regular and donator void CustomMission() { FileHandle templateFile; if (!FileExist(m_SpawnLoadoutDirectory)) { MakeDirectory(m_SpawnLoadoutDirectory) // create default CommonItems.txt templateFile = OpenFile(m_CommonItems, FileMode.WRITE); FPrintln(templateFile, "Rag 4\nHuntingKnife\nMatchbox\nHatchet\nFlashlight\nBattery9V\nSodaCan_Cola\nBakedBeansCan"); CloseFile(templateFile); // create default Regular.txt templateFile = OpenFile(m_RegularLoadout, FileMode.WRITE); FPrintln(templateFile, "BomberJacket_Grey\nJeans_Black\nTaloonBag_Blue\nAthleticShoes_Grey"); CloseFile(templateFile); } if (!FileExist(m_DonatorDirectory)) { string template = GetDonatorFile("STEAMIDHERE"); MakeDirectory(m_DonatorDirectory); // create template donator file templateFile = OpenFile(template, FileMode.WRITE); FPrintln(templateFile, "BomberJacket_Blue\nJeans_Grey\nTaloonBag_Orange\nAthleticShoes_Brown"); CloseFile(templateFile); } } //!!! REPLACES EXISTING METHOD override void StartingEquipSetup(PlayerBase player, bool clothesChosen) { player.RemoveAllItems(); // clear all default spawning items FileHandle donatorFile; string line; TStringArray contents = new TStringArray(); string file = GetDonatorFile(player.GetIdentity().GetPlainId()); if (FileExist(file)) { SpawnLoadout(player, ReadFileLines(file)); // spawn donator loadout return; } SpawnLoadout(player, ReadFileLines(m_RegularLoadout)); // spawn regular player loadout } private void SpawnLoadout(PlayerBase player, ref TStringArray loadout) { FileHandle loadoutFile; string line; // creates clothes loadout foreach (string clothes : loadout) player.GetInventory().CreateInInventory(clothes); // creates common items TStringArray items = ReadFileLines(m_CommonItems); foreach (string item : items) { if (item.Contains(" ")) // check for space, which signifies a quantity item { CreateQuantityItem(player, item); continue; } player.GetInventory().CreateInInventory(item); } } private void CreateQuantityItem(PlayerBase player, string item) { TStringArray quantity = new TStringArray(); item.Split(" ", quantity); ItemBase quantityItem = player.GetInventory().CreateInInventory(quantity[0]); quantityItem.SetQuantity(quantity[1].ToFloat()); } private string GetDonatorFile(string id) { return string.Format("%1%2.txt", m_DonatorDirectory, id); } private TStringArray ReadFileLines(string path) { FileHandle file; string line; TStringArray contents = new TStringArray(); file = OpenFile(path, FileMode.READ); while (FGets(file, line) > 0) { line.Trim(); if (line != string.Empty) { contents.Insert(line); line = string.Empty; } } CloseFile(file); return contents; } }; После того как вы вставили код, сохраняйте файл. И запускайте сервер! Если ничего не вылезло и сервер нормально запустился, в папке profiles появится папка Spawnloadout. В ней вы видите файлы: Regular.txt ; CommonItems.txt Эти файлы нужны для стартового снаряжения игрока при спавне. Regular - Для одежды ; CommonItems - Для предметов Папка Donator отвечает за кастомные сета игрокам по SteamID64. В этой папке будет файл STEAMIDHERE.txt Чтобы прописать сет по SteamID64 нужно изменить название файла и в нем прописать все что нужно выдавать игроку, тут нету разделения на файлы, все нужно писать в 1 файл (Чтобы небыло багов пишите сначало одежду а потом предметы) Все обновляется в реальном времени ничего перезапускать не нужно.
  5. Просмотр файла Classname-Dumper | Дамп класснеймов с модов Программа которая позволяет сделать дамп класснеймов с вашего мода ( либо чужого 😁) Что она делает?: Она сканирует те дериктории которые вы вписали при запуске, ищет config.cpp файл и в нем ищет класснеймы Как пользоватся?: Поместите файлы в любую папку и выше напишите cmd ( Пример: https://imgur.com/gzlYywn ) Далее перетащите в консоль Classname-Dumper.exe "пробел" перетащите папку с тем что нужно прогнать (если много папок перетаскивайте и ставьте пробелы между ними) Нажмите Enter и дождитесь результата (обычно 2.5 гб мода сканируются около 10 секунд) В корне программы появится файлы (dumpresult.txt и log.txt) это файлы с логами и вашими заветными класснеймами. > - dumpresult.txt - с класснеймами > - log.txt - с отчетом о работе (если какой то класснейм отсутствует можете найти там) Дальше уже сами делайте с ними что хотите ! Примеры что она смогла сделать: A program that allows you to dump cool names from your mod (or someone else's) What does it do?: It scans the directories that you entered at startup, looks for config.cpp the file is also looking for cool names in it How to use it?: Put the files in any folder and write cmd above (Example: https://imgur.com/gzlYywn ) Then drag it to the console Classname-Dumper.exe "space" drag the folder with what you need to run (if there are many folders, drag and put spaces between them) Press Enter and wait for the result (usually 2.5 GB of the mod is scanned for about 10 seconds) The files will appear in the root of the program (dumpresult.txt and log.txt ) these are files with logs and your cherished class names. > - dumpresult.txt - with cool names > - log.txt - with a work report (if there is no classname, you can find it there) Then do what you want with them yourself! Examples of what she was able to do: Добавил ronjam v2 Добавлено 05.01.2024 Категория Программное обеспечение
  6. Просмотр файла Convoy Mod | Конвой для DayZ Ну как бы, мне его слил 1 относительно популярный бразильский сервер. Что в нем есть я хз) Знаю что есть уведомление со звуком ".. Мейдей мейдей..." Well, as it were, 1 relatively popular Brazilian server leaked it to me. What is in it I xs) Know that there is a notification with sound. ". Mayday Mayday..." Добавил ronjam v2 Добавлено 03.10.2023 Категория Скрипты, моды  
  7. Просмотр файла FPacker Helper | Обфускатор ваших PBO Простой обфускатор вашего PBO. A simple obfuscator of your PBO. Добавил ronjam v2 Добавлено 26.05.2023 Категория Программное обеспечение  
  8. Version 1.3.3.7

    204 downloads

    Простой обфускатор вашего PBO. A simple obfuscator of your PBO.
    Free
  9. На сайт не реально зайти без VPN если я нахожусь в ЛНР, та же самая ситуация думаю будет и с ДНР и Крымом Вот что выдает при заходе
  10. Version 1.0.0

    58 downloads

    Огромный ганпак оружия, в нем 127+- едениц оружия, снайперки, пулиметы, автоматы, дробовики, пистолеты и т.п. Слил его витамин Есть популярные оружия такие как: AR-50, AX-50, M200-M300, PKP, PKM, CSR-50 Свои патроны на все оружия. Типы, название класса - здесь есть все в моде для вас 🙂 A huge gun pack of weapons, it contains 127+ weapons, snipers, machine guns, machine guns, shotguns, pistols, etc. There are popular weapons such as: AR-50, AX-50, M200-M300, PMP, PM, CSR-50 Own ammo for all weapons. Types, Classname - there is everything in fashion for you 🙂
    Free
  11. Просмотр файла DZFAKE PoP | Поддержка онлайна на сервере Работает только на ДЕДИКЕ!!! Простенькая программа для поддержки онлайна на вашем сервере. Что она делает: Она получает ваш онлайн на сервере, и из кол-во веденного онлайна который нужно поддерживать вычитает все чтобы он был постоянный. Все работает на бесплатной основе ( Сайт чтобы ваш сервер видела программа battlemetrics.com | Нужно добавить сервер ) Если будут какие то ошибки в работе пишите в дискорд! Works only on DEDIK!!! A simple program to support online on your server. What is she doing: It receives your online on the server, and subtracts everything from the number of entered online that needs to be maintained so that it is permanent. Everything works on a free basis ( The site so that your server is seen by the program battlemetrics.com | Need to add a server ) If there are any errors in the work, write to discord! Добавил ronjam v2 Добавлено 09.11.2023 Категория Программное обеспечение  
  12. Version 1.0.0

    51 downloads

    Программа которая позволяет сделать дамп класснеймов с вашего мода ( либо чужого 😁) Что она делает?: Она сканирует те дериктории которые вы вписали при запуске, ищет config.cpp файл и в нем ищет класснеймы Как пользоватся?: Поместите файлы в любую папку и выше напишите cmd ( Пример: https://imgur.com/gzlYywn ) Далее перетащите в консоль Classname-Dumper.exe "пробел" перетащите папку с тем что нужно прогнать (если много папок перетаскивайте и ставьте пробелы между ними) Нажмите Enter и дождитесь результата (обычно 2.5 гб мода сканируются около 10 секунд) В корне программы появится файлы (dumpresult.txt и log.txt) это файлы с логами и вашими заветными класснеймами. > - dumpresult.txt - с класснеймами > - log.txt - с отчетом о работе (если какой то класснейм отсутствует можете найти там) Дальше уже сами делайте с ними что хотите ! Примеры что она смогла сделать: A program that allows you to dump cool names from your mod (or someone else's) What does it do?: It scans the directories that you entered at startup, looks for config.cpp the file is also looking for cool names in it How to use it?: Put the files in any folder and write cmd above (Example: https://imgur.com/gzlYywn ) Then drag it to the console Classname-Dumper.exe "space" drag the folder with what you need to run (if there are many folders, drag and put spaces between them) Press Enter and wait for the result (usually 2.5 GB of the mod is scanned for about 10 seconds) The files will appear in the root of the program (dumpresult.txt and log.txt ) these are files with logs and your cherished class names. > - dumpresult.txt - with cool names > - log.txt - with a work report (if there is no classname, you can find it there) Then do what you want with them yourself! Examples of what she was able to do:
    Free
  13. Просмотр файла DayZ Server Tool | Лучший редактор игроквых и Трейдер файлов!!! DayZ types.xml редактор Редактировать types.xml файлы: Добавление/удаление элементов; Редактируйте несколько элементов одновременно; Изменение количества/пополнение запасов/срока службы товаров в процентах; Переместить элементы в новый файл (лучший способ переопределить vanilla types.xml ); Пакетное редактирование. Определения пользователей (cfglimitsdefinitionuser.xml ) и различные стили письма types.xml поддерживаются. Нагрузка cfglimitsdefinition.xml (и cfglimitsdefinitionuser.xml ) для выбора одного из доступных значений флага. Подтверждать types.xml в соответствии с cfglimitsdefinition.xml и cfglimitsdefinitionuser.xml . Экспортируйте товары в cfgspawnabletypes.xml , случайные предустановки или конфигурация трейдера. Импортируйте элементы из списка имен классов в произвольной форме. DayZ cfgspawnabletypes.xml редактор Добавление/удаление элементов. Добавление/удаление товара, груза или вложений. Измените количество урона, наносимого предмету при появлении. Измените вероятность появления вложений в элементе. Нагрузка cfgrandompresets.xml для выбора из доступных предустановок груза или креплений. Подтверждать cfgspawnabletypes.xml в соответствии с cfgrandompresets.xml . Импортируйте элементы из списка имен классов в произвольной форме. Редактор настроек Dayz Trader DayzServerTools поддерживает конфигурации Dr_J0nes Trader Mod: Переименовывать трейдеров Добавляйте (удаляйте) новые категории для трейдеров. Добавляйте (удаляйте) элементы. Пакетное редактирование элементов. Экспорт товаров из types.xml к TraderConfig.txt . Импортируйте элементы из списка имен классов в произвольной форме. Проверьте конфигурацию. Редактор случайных пресетов Добавление/удаление пресетов Импортируйте элементы из types.xml Импортируйте элементы из списка имен классов в произвольной форме. DayZ types.xml editor Edit types.xml files: Add/Remove items; Edit multiple items at once; Change quantity/restock/lifetime of items in percentage; Move items to new file (better way to override vanilla types.xml); Batch editing. User definitions (cfglimitsdefinitionuser.xml) and different styles of writing types.xml are supported. Load cfglimitsdefinition.xml (and cfglimitsdefinitionuser.xml) to select from avilable flag values. Validate types.xml according to cfglimitsdefinition.xml and cfglimitsdefinitionuser.xml. Export items to cfgspawnabletypes.xml, random presets or trader config. Import items from list of classnames in free form. DayZ cfgspawnabletypes.xml editor Add/Remove items. Add/Remove item cargo or attachments. Edit amount of damage dealt to the item upon spawning. Edit chance of attachments appearing on an item. Load cfgrandompresets.xml to select from avilable cargo or attacments presets. Validate cfgspawnabletypes.xml according to cfgrandompresets.xml. Import items from list of classnames in free form. Dayz Trader config editor DayzServerTools supports Dr_J0nes Trader Mod configs: Rename Traders Add(remove) new categories to traders. Add(remove) items. Batch edit items. Export items from types.xml to TraderConfig.txt. Import items from list of classnames in free form. Validate config. Random presets editor Add/Remove presets Import items from types.xml Import items from list of classnames in free form. Добавил ronjam v2 Добавлено 11.07.2023 Категория Программное обеспечение  
  14. Просмотр файла KOD Weapons | Огромный ганпак оружия Огромный ганпак оружия, в нем 127+- едениц оружия, снайперки, пулиметы, автоматы, дробовики, пистолеты и т.п. Слил его витамин Есть популярные оружия такие как: AR-50, AX-50, M200-M300, PKP, PKM, CSR-50 Свои патроны на все оружия. Types, Classname - в моде есть все для вас 🙂data:image/gif;base64,R0lGODlhAQABAPABAP///wAAACH5BAEKAAAALAAAAAABAAEAAAICRAEAOw== A huge gun pack of weapons, it contains 127+ weapons, snipers, machine guns, machine guns, shotguns, pistols, etc. There are popular weapons such as: AR-50, AX-50, M200-M300, PMP, PM, CSR-50 Own ammo for all weapons. Types, Classname - there is everything in fashion for you 🙂 Добавил ronjam v2 Добавлено 25.12.2023 Категория Оружие  
  15. Version 1.0.0

    224 downloads

    Ну как бы, мне его слил 1 относительно популярный бразильский сервер. Что в нем есть я хз) Знаю что есть уведомление со звуком ".. Мейдей мейдей..." Well, as it were, 1 relatively popular Brazilian server leaked it to me. What is in it I xs) Know that there is a notification with sound. ". Mayday Mayday..." Конфиг для настройки (Добавьте недостоющие строчки) Settings.rar
    Free
  16. Просмотр файла Reforced Weapons | Пак оружия Маленький пак пушек для пвп сервера. Я только начал делать этот пак и тут еще не все реализовано (По типу глушителей, прицелов). Но все еще делаеться! Модели взяты со Sketchfab. Все класснеймы начинаються на RF_ В паке есть: M200 - .408 CheyTac M300 - .408 CheyTac AX-50 - .50 BMG Timberwolf - .338 LM В паке еще есть патроны к ганам (.338 используеться от Tactical Flava) A small pack of guns for the pvp server. I just started making this pack and there is still not everything implemented (By the type of silencers, sights). But it's still being done! The models are taken from Sketchfab. All classnames start with RF_ The pack has: M200 - .408 CheyTac M300 - .408 CheyTac AX-50 - .50 BMG Timberwolf - .338 LM There are still cartridges for guns in the pack (.338 is used from Tactical Flava) Добавил ronjam v2 Добавлено 23.07.2023 Категория Скрипты, моды  
  17. Version 1.0.0

    54 downloads

    Мод для вашего сервера, добавляет карточки из игры Escape From Tarkov. У мода есть привязка к дверям через Lockpick (от мода) Все другое можно увидить если установите 🙂 Класснеймы мода начинаются на RJ_ Видео что как выглядит клик Mod for your server, adds cards from the Escape From Tarkov game. The mod has a binding to the doors via the Lockpick (from the mod) Everything else can be seen if you install 🙂 Cool fashion names start with RJ_ Video what does a click look like
    Free
  18. Version 1.0.0

    54 downloads

    Броня для Stalker проектов. Много ретекстура на разные группы. Класснеймы начинаются на RS_ Если будут баганные текстуры ( пофиксите пути 😅 )
    Free
  19. Просмотр файла Rocket Movement | Отключение инерции Наклоны во время бега Отключение инерции Улучшенн Ice Slide Немного улучшен "Слайд" Быстрое вставание лежа на земле (перекатиться и удерживать C) Bends while running Disabling inertia Improved Ice Slide Slightly improved "Slide" Getting up quickly while lying on the ground (roll over and hold C) Добавил ronjam v2 Добавлено 06.11.2023 Категория Скрипты, моды  
  20. Version 1.0.0

    80 downloads

    Работает только на ДЕДИКЕ!!! Простенькая программа для поддержки онлайна на вашем сервере. Что она делает: Она получает ваш онлайн на сервере, и из кол-во веденного онлайна который нужно поддерживать вычитает все чтобы он был постоянный. Все работает на бесплатной основе ( Сайт чтобы ваш сервер видела программа battlemetrics.com | Нужно добавить сервер ) Если будут какие то ошибки в работе пишите в дискорд! Works only on DEDIK!!! A simple program to support online on your server. What is she doing: It receives your online on the server, and subtracts everything from the number of entered online that needs to be maintained so that it is permanent. Everything works on a free basis ( The site so that your server is seen by the program battlemetrics.com | Need to add a server ) If there are any errors in the work, write to discord!
    Free
  21. Version 1.0.0

    1 download

    Наклоны во время бега Отключение инерции Улучшенн Ice Slide Немного улучшен "Слайд" Быстрое вставание лежа на земле (перекатиться и удерживать C) Bends while running Disabling inertia Improved Ice Slide Slightly improved "Slide" Getting up quickly while lying on the ground (roll over and hold C)
    $20
  22. Version 1.0.0

    175 downloads

    Хороший приватный аирдроп, его по ошибке слил сам создатель. Пбо протекченная Аирдроп очень гибкий в плане настройки, визуала. Понятный конфиг P.S Стоит 4.5к A good private airdrop, it was mistakenly leaked by the creator himself. Pbo leaked Airdrop is very flexible in terms of settings, visual. Clear config P.S Costs 4.5k
    Free
  23. Открою любую вашу протекченную PBO. Не 100% гарантия что все смогу достать. Достаю все что могу. Сильно забинаренные пбошники скидываю не фулл папкой script и т.п а просто .c файлами с кодом.
  24. Просмотр файла Stalker Vests | M1V1, M1V2, M2V1, M2V2 Броня для Stalker проектов. Много ретекстура на разные группы. Класснеймы начинаются на RS_ Если будут баганные текстуры ( пофиксите пути 😅 ) Добавил ronjam v2 Добавлено 11.08.2023 Категория Предметы  
  25. Просмотр файла Trader Plus Editor | Лучший эдитор для DayZ TraderPlus ## Особенности Интуитивно понятный в использовании Простое редактирование Корневой файл изменен не будет Строка поиска по названиям продуктов Чистый экспорт без опечаток Темно-серая тема Легко добавляйте и удаляйте товары и категории Если у вас есть какиой-либо фидбек, пожалуйста, свяжитесь со мной! Добавьте меня в Discord: ronjam#6027 Я был бы вам очень признателен! ## Features Intuitive to use Simple editing The root file will not be changed Product Name Search Bar Net exports without typos Dark gray theme Easily add and remove products and categories If you have any feedback, please contact me! Add me to Discord: ronjam#6027 I would be very grateful to you! MIT License Copyright (c) 2023 xscr33m Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Добавил ronjam v2 Добавлено 23.05.2023 Категория Программное обеспечение  
×
×
  • Create New...