x C:\fQuake-teaser x libjpeg.dll x (new line)
rge.net\docs\pics\particle_muzzleflash.jpg x (new line)
x C:\fQuake-teaser x ezquake\manual\ezquake.sourceforge.net\docs\pics\nailtrail_plasma.jpg x (new line)
when i use this code:
nsisunz::UnzipToStack "${DISTFILES_PATH}\$R0" "$INSTDIR"
Pop $0
${If} $0 == "Error opening ZIP file"
DetailPrint "Extraction Error: $0"
${Else}
FileOpen $R0 $INSTDIR\${INSTLOG} a
${DoUntil} $0 == ""
ClearErrors
${Unless} $0 == "success"
FileWrite $R0 " x $INSTDIR x $0 x"
FileWriteByte $R0 "13"
FileWriteByte $R0 "10"
DetailPrint "Extract: $INSTDIR\$0"
${EndUnless}
Pop $0
${LoopUntil} $0 == ""
FileClose $R0
${EndIf}how can it not extract "x $INSTDIR x " and then only half of the $0 variable?!i just can't figure this one out