7 Game Show
Use these questions during Game Show time. You can ask any/all the questions in each day’s section.
7.1 Monday
- What keys make your character move?
WASD keys.
- What is the keyword to add a character to your game?
#:avatar
- What is the keyword to change what your character looks like?
#:sprite
- Name 3 available character sprites.
Anything from the Assets Library.
- What is the default speed value?
10.
7.2 Tuesday
- What is the keyword to add enemies?
#:enemy-list
- What does AI stand for?
Artificial Intelligence.
- What is the keyword to change the number of enemies in the game?
#:amount-in-world
- Name the 4 Fortnite character classes.
Commando, Ninja, Outlander, and Constructor.
- Name the 3 Fortnite Game Modes.
Save the World, Battle Royale, and Creative.
7.3 Wednesday
- Name 3 of the 5 weapon rarity levels.
’common, ’uncommon, ’rare, ’epic, ’legendary.
- What is the function to change what the weapon’s pickup crate looks in the game?
(make-icon ... ... ...)
- Name 3 of the available weapons in the language.
sword, spear, fire-magic, ring-of-fire, ring-of-blades, in extras: lava pit, spike mine, dagger tower, rocket tower.
- Name 2 of the fire modes available for the weapons.
’normal, ’random, ’spread, ’homing.
- Tell me a keyboard shortcut; a combination of keys.
CTRL + C, CTRL + V, CTRL + X, CTRL + A, CTRL + Z, CTRL + Y.
7.4 Thursday
- What is the keyword to add power-ups to the game?
#:item-list
- Name 2 types of power-ups.
health, shield, boost, size.
- What is the keyword used to trigger the effect of your item?
#:on-use
- What is the difference between change-health-by and set-health-to?
change-health-by adds the number you provide to your current health, set-health-to sets your health to the number you provide; regardless of your current health.
- What are the 3 parameters (inputs) that the function (make-icon . . .) can take?
The first one is a string like "HP", those will be the letters that show up on the square (this one is required). The second one is a color like ’red, that will be the color of the square (this one is optional). The third ons is also a color like ’blue, that will be the color of the letters (this one is also optional).