#yaml
1 messages · Page 1 of 1 (latest)
https://skripthub.net/docs/ -> skript-yaml 문서 확인
load yaml "A(파일경로)" as "B"
A파일을 B라는 이름으로 로드
set yaml value "B" from "C" to "D"
B yml파일의 키C의 값을 D로 변경 D는 boolean string int 등등 가능
결과
B 파일
C: D
set {변수} to yaml value "B" from "C"
{변수}를 B 파일의 C의 값으로 설정
결과
{변수} = D
save yaml "B"
파일 저장
문서 찾아보면 전부 다 나옵니다