You could assign all the params to a single variable and then split it in the script if you wish.

Kix32.exe MyScript.kix $PARAMS="abc 123 def"

Code:
$PARAMS=Split($PARAMS)
For $i=0 To UBound($PARAMS)
"Parameter "+($i+1)+" is "+$PARAMS[$i]+@CRLF
Next