[script] add operators, add reboot to payload

- Add a function to reboot to payload
- Add an "Empty array" variable type that is created when you try to assign []. This will get filled with a valid entry upon first addition
- Adds operator string array plus string
This commit is contained in:
suchmememanyskill
2021-01-10 16:32:50 +01:00
parent 3f80693d9e
commit 963987d639
3 changed files with 70 additions and 23 deletions

View File

@@ -74,6 +74,7 @@ enum Variables {
DictType,
NullType,
ErrType,
EmptyArrayType,
};
typedef struct { // this is to keep track of how many {} we passed. Keep an internal var with the "indentation level", +1 for {, -1 for }. have an array with the following def on what to do (on func: enter, set indentation & jump back, on while, jump to while, use while as if, on if simply set true or false)