char c = (char)74;
printf("%c",c); //J
c++;
printf("%c",c); //K My best guess:
StrCpy $R2 "J"
IntOp $R2 $R2 + 1
MessageBox MB_OK $R2 $R2 is treated as 0 in this example. Is there a way to have integers represented as their char-equivalent in NSIS?I know how to do it with System plugin and using wsprintf but I'd prefer to not use that method