Skip to content

Instantly share code, notes, and snippets.

View Enorovan's full-sized avatar
💻
Hacking to the Gate

Enorovan Enorovan

💻
Hacking to the Gate
View GitHub Profile
@Enorovan
Enorovan / build_cclcc_scripts.ps1
Last active November 6, 2024 22:11
Short script to build C;CLCC's translated scripts (depends on MagesScriptTool and a python script).
Write-Output "Pull latest translated strings"
cd cclcc-scripts
git pull
cd ..
Write-Output "Decompile original scripts"
@Enorovan
Enorovan / danceconverter.py
Created May 4, 2022 16:30 — forked from futotorofu/danceconverter.py
Quickly convert sentence into those commonly found dancing Discord emotes
import sys
import pyperclip
def convert_string(src_sentence):
result = ""
for c in src_sentence:
if c != ' ':
result += ":dance" + c.upper() + ":"
else:
# Makes every line in every script blank.
$directory = Get-ChildItem $args[0]
$output = $args[1]
foreach ($script in $directory){
foreach ($line in Get-Content $script) {
Write "" | Out-File ($output + "/" + $script.BaseName + ".scx.txt") -Append
}
}
# Renames every ".txt" script to a ".scx.txt" script
$directory = Get-ChildItem $args[0]
foreach ($script in $directory){
Rename-Item -Path $script.FullName -NewName ( $script.BaseName + ".scx" + $script.Extension )
}

This is a 100% walkthrough for CHAOS;CHILD Love Chu☆Chu!!, designed to allow readers to play through in the optimal route order while unlocking every scene, CG, music track, and tip along the way (with the exception of neutral delusion choices and incorrect map answers).

Character Routes

(Note: route names are omitted to avoid spoilers.)

Recommended route order is Itou → Yui & Yuto → Nono → Hana → Hinae → Serika; each time doing Normal before Good, when the choice exists.

As a general rule, in order to get a certain character's route, you must answer the YES/NO questions with something fitting the desired character. Once you are locked in a route, and after you save, you must select positive on all delusions—when positive is an available choice—to obtain their Good End. Otherwise, you'll be stuck with the Normal End. It is recommended to select negative on all delusions when your objective is th

@Enorovan
Enorovan / SciADV_cleaner.sh
Last active September 25, 2020 00:21
SciADV Bash Cleaner
#! /bin/bash
# SciADV_cleaner ONLY FOR MAGES. ENGINE
if [ $# -ne 1 ] ; then
echo "You have to give as a parameter the absolute path of the folder where you keep your extracted scripts (man pwd). NO SPACES ALLOWED IN PATH."
echo "Usage: $0 folder_name game"
echo "Example: $0 /media/salieri/amadeus/RNE_SCRIPTS"
exit -1
elif [ ! -d $1/CLEANED ] ; then
mkdir $1/CLEANED