Hey, just a minor thing. When you type just make-char w/o any arguments, you get Java Error ![]()
command delete is not mentioned in the documentation
Could you help me with this please or maybe you can give me some ideas:
I’m automating make-char GRIMTOOLS (from clipboard) by generating batch file. It works but I get two folders instead of one afterwards.
echo make-char %GrimTools% > batch.tmp
echo write %CharName% >> batch.tmp

write creates _ababa character correctly but your program also creates _blank…)
-
renaming
blankdoesn’t work as far as I can tell in batch mode in this case -
I also cannot select / delete characters within my script because it requires inputting a number on a generated list not character’s name
Basically I wonder if you have some idea how to make it - either by renaming the generated character on the fly or deleting the blank one. Or maybe a whole different way altogether. The whole script atm:
@echo off
set "psCmd=powershell -Command "add-type -an system.windows.forms; [System.Windows.Forms.Clipboard]::GetText()""
for /F "usebackq delims=" %%# in (`%psCmd%`) do set "GrimTools=%%#"
set /p CharName=ENTER CHARACTER'S NAME:
echo make-char %GrimTools% > batch.tmp
echo write %CharName% >> batch.tmp
gd-edit.exe -b batch.tmp
PS I know it’s not the intended way to use the tool, just trying to work around it ![]()