This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Default | |
desc: It is what it is. | |
folder: default | |
- | |
name: No wave effects | |
desc: Disables water and leaves waving animation. | |
folder: no_wave | |
- | |
name: No fog effect | |
desc: Disables fog. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal enabledelayedexpansion | |
cls | |
if "%~n0" equ "1-matject-subpacks" ( | |
set "export=true" | |
echo @echo off>sample.bat | |
echo.>sample_data.bat | |
) else (set "export=") | |
set "parse=Name" | |
for /F "usebackq tokens=*" %%A in ("subpacks_matject.txt") do ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal enabledelayedexpansion | |
pushd "%~dp0" | |
set "filename=%~n0" | |
set "GRY=[90m" | |
set "WHT=[97m" | |
set "RED=[91m" | |
set "RST=[0m" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <dirent.h> | |
#define HEX_PATTERN1 "\x4D\x65\x74\x61\x6C\x00\x0B" | |
#define REPLACEMENT1 "\x4D\x65\x74\x61\x6C\x00\x0A" | |
#define HEX_PATTERN2 "\x4D\x65\x74\x61\x6C\x01\x0B" | |
#define REPLACEMENT2 "\x4D\x65\x74\x61\x6C\x01\x0A" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
:start | |
setlocal | |
title Tic Tac Toe in Command Prompt by faizul726 | |
set turn=0 | |
set "i=[ ]" | |
set "ii=[ ]" | |
set "iii=[ ]" |