Ok. I meant that if you want to press multi keys, you can do :
CODE
GKEY "alpha",%alpha
GKEY "fire",%fire
IIFF %alpha*%fire,"bomb"
...
FNCT bomb
boom
But if we can put multi keys in the KAT, it's better !!
One question about arrays :
Will they be static or dynamic ?
I like the way it's used in basic with lists : you define a dimension, and after, if you exceed that dimension, the dimension is extended by one. So you can do so easily : 5->List 1[1+Dim List 1]
Will it be possible to do something as easy as this ? It's not necessary, but would be usefull.
In the same way, if we could delete one line, it could be as usefull :
CODE
KILL @List 1(2)
This would delete the line 2 of the array @List 1. And then put the line 3 in place of the line 2. For exemple :
@Array(0)=0
@Array(1)=1
@Array(2)=2
@Array(3)=3
KILL @Array(2)
@Array would become:
@Array(0)=0
@Array(1)=1
@Array(2)=3
Then if you do : @Array(5)=1
@Array would become:
@Array(0)=0
@Array(1)=1
@Array(2)=3
@Array(3)=0
@Array(4)=0
@Array(5)=1
Could we start Arrays at @Array(1) for the first line, or is it necessary to start at @Array(0) ?