echo
This commit is contained in:
commit
f2a40084e7
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
XR_3DA.obj
|
||||
XR_3DA.exe
|
24
LICENSE
Normal file
24
LICENSE
Normal file
@ -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 <http://unlicense.org>
|
14
README.md
Normal file
14
README.md
Normal file
@ -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:.
|
15
src/XR_3DA.c
Normal file
15
src/XR_3DA.c
Normal file
@ -0,0 +1,15 @@
|
||||
#include <stdio.h>
|
||||
#include <windows.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
char CurrentPath[FILENAME_MAX];
|
||||
|
||||
_getcwd(CurrentPath, sizeof(CurrentPath));
|
||||
SetCurrentDirectory("_bin_olr_");
|
||||
_getcwd(CurrentPath, sizeof(CurrentPath));
|
||||
|
||||
system("XR_3DA.exe -smap4096");
|
||||
|
||||
return 0;
|
||||
}
|
1
src/make.bat
Normal file
1
src/make.bat
Normal file
@ -0,0 +1 @@
|
||||
cl.exe XR_3DA.c
|
Loading…
Reference in New Issue
Block a user