-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIntro Function.js
27 lines (17 loc) · 1.16 KB
/
Intro Function.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
function intro() {
alert ("???: Hey!");
alert ("[?, I look up from the book I'm reading. I see a person in the distance calling someone.]");
alert ("???: YEAH! YOU there!");
alert ("[Wait they want me?]");
if (buddy == "1") alert ("[A blonde headed girl runs towards you, with a cheerful smile. Waving like she knows you.]");
else if (buddy == "2") alert ("[A blonde headed boy runs towards you, with a cheerful smile. Waving like he knows you.]");
else if (buddy == "3") alert ("[A black headed person runs towards you, with a cheerful smile. Waving like they knows you.]");
else if (buddy == "4") alert ("[A red headed girl runs towards you, with a cheerful smile. Waving like she knows you.]");
else if (buddy == "") alert ("[A red headed girl runs towards you, with a cheerful smile. Waving like she knows you.]");
// thoughts 1 {
if (buddy == "1") alert ("[Why does she look familiar?]");
else if (buddy == "2") alert ("[Why does he look familiar?]");
else if (buddy == "3") alert ("[Why do they look familiar?]");
else if (buddy == "4") alert ("[ Why does she look familiar?]");
else if (buddy == "") alert ("[ Why does she look familiar?]");
}