commit f2a40084e7af15378036d8f1d4e16cecfc06a31e Author: Alexander Popov Date: Wed Nov 23 01:04:08 2016 +0300 echo diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..da6c634 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +XR_3DA.obj +XR_3DA.exe diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..cf1ab25 --- /dev/null +++ b/LICENSE @@ -0,0 +1,24 @@ +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +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 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. + +For more information, please refer to diff --git a/README.md b/README.md new file mode 100644 index 0000000..708d045 --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +**Инструкция по запуску Oblivion Lost Remake в Steam** +Проверялось на [интернациональной версии](http://steamcommunity.com/app/4500). + +**Установка:** +1. Скачиваем и устанавливаем Oblivion Lost Remake. +Архив актуальной версии [адин](https://yadi.sk/d/taTJIirti77wx), +[два](https://yadi.sk/d/0XEhmRoSi8Es8). +Устанавливаем по пути `\Steam\steamapps\common\STALKER Shadow of Chernobyl` для appID `4500`, заранее удалив директорию, либо файлы в ней. +Если у Вас в Steam только русская версия S.T.A.L.K.E.R. SoC (appID `4830`), то по пути: +`\Steam\steamapps\common\STALKER Shadow of Chernobyl RU` +2. Скачиваем "Launcher". +[Тыц!](https://github.com/iiiypuk/olr_stean/releases/tag/1). +3. Кидаем директорию `bin` рядом с `_bin_olr_`. +4. Всё! Тыкаем два раза по игре в клиенте Steam и играем :blush:. diff --git a/src/XR_3DA.c b/src/XR_3DA.c new file mode 100644 index 0000000..81d6efd --- /dev/null +++ b/src/XR_3DA.c @@ -0,0 +1,15 @@ +#include +#include + +int main() +{ + char CurrentPath[FILENAME_MAX]; + + _getcwd(CurrentPath, sizeof(CurrentPath)); + SetCurrentDirectory("_bin_olr_"); + _getcwd(CurrentPath, sizeof(CurrentPath)); + + system("XR_3DA.exe -smap4096"); + + return 0; +} diff --git a/src/make.bat b/src/make.bat new file mode 100644 index 0000000..b8b046d --- /dev/null +++ b/src/make.bat @@ -0,0 +1 @@ +cl.exe XR_3DA.c