Lesson 11
Good job
Lesson 12
Fail
Did not display unit's point value
Lesson 13
Good job
Lesson 14
Fail
call PrintInteger(i[9321])??
Did not verify position 999
Lesson 14 P2
Good job
Lesson 15
Fail
"12345" -> 12345 -> (3 + 6) -> 12945 -> "12945"
You were supposed to retrieve the 3, add 6 to it, and then combine it with 12 and 45 to get 12945
Lesson 16
Fail
These give incorrect output:
call Print("I said \"jump\"")
call Print("While \"\\\" is awesome\nPickles are even more...\n\tAwesome!")
Lesson 17
Fail
Lesson 19
Fail
You did not set it to 9
set spaz[13] = "9"
Project 2
Fail
Did not follow instructions
* You are only allowed to use the value 5 *one* time, and you may
* only use the value 5
You used values other than 5 here
call Print(GetUnitName(u[4]) + "\n" + GetUnitName(u[10]) + "\n" + GetUnitName(u[420]) + "\n" + GetUnitName(u[55]))
You set positions rather than indexes
set u[4]
That is indeed position 5, but it is index 4
You did not display the correct output
Unit[5] -> "Footman"
Unit[11] -> "Rifleman"
Unit[421] -> "Knight"
Unit[56] -> "Paladin"