Advertisement
Kenkaster001

Sevs & Phil's Code

Jul 31st, 2019
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 30.42 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace SEVILLAPHIL
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. Console.WriteLine(@" ▄█ ▄████████ ▄▄▄▄███▄▄▄▄ ▄██████▄ ███ █▄ ▄████████
  14. ███ ███ ███ ▄██▀▀▀███▀▀▀██▄ ███ ███ ███ ███ ███ ███
  15. ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███
  16. ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ▄███▄▄▄▄██▀
  17. ███ ▀███████████ ███ ███ ███ ███ ███ ███ ███ ▀▀███▀▀▀▀▀
  18. ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ▀███████████
  19. ███▌ ▄ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███ ███
  20. █████▄▄██ ███ █▀ ▀█ ███ █▀ ▀██████▀ ████████▀ ███ ███
  21. ▀ ███ ███ ");
  22.  
  23.  
  24. Console.Write("Enter Player Name: ");
  25. string character1, character2;
  26. character1 = Console.ReadLine();
  27. Console.WriteLine("Hello, " + character1 + "." + " Welcome to L'Amour.");
  28.  
  29. Console.WriteLine("Character Choices:");
  30. Console.WriteLine("1 - Martin Daniel");
  31. Console.WriteLine("2 - Tyrian Blatche");
  32. Console.WriteLine("3 - Nanding Macalintal");
  33. Console.WriteLine("4 - Jopet Boystelo");
  34.  
  35. int choice, meter = 0, choice1, choice2, choice3, choice4;
  36.  
  37. Console.Write("Enter choice: ");
  38. choice = int.Parse(Console.ReadLine());
  39.  
  40. if (choice == 1)
  41. {
  42. Console.WriteLine("");
  43. Console.WriteLine("You have chosen Tyrian Blatch as your character");
  44. Console.WriteLine("Here are his personalities: ");
  45. Console.WriteLine(" 1 - Negotiable");
  46. Console.WriteLine(" 2 - Smart");
  47. Console.WriteLine(" 3 - Energetic");
  48. Console.WriteLine(" 4 - Sociable");
  49. Console.Write("Please put the name of your partner: ");
  50. character2 = Console.ReadLine();
  51. Console.WriteLine("");
  52. Console.WriteLine();
  53.  
  54. Console.WriteLine("Great! " + character1 + " & " + character2 + ", " + "This is where your story begins.");
  55.  
  56. Console.WriteLine("The story begins in Baltimore Tech University. This school year will be the very first time Co-Ed will be implemented.");
  57. Console.WriteLine("*" + character1 + "wants to ask his crush if she wants to go out with him");
  58. Console.WriteLine("1 - Make paper airplanes that asks if she wants to go out.");
  59. Console.WriteLine("2 - Ask her while she is talking with her friends.");
  60. Console.WriteLine("3 - She is alone but she's getting ready for class then you ask her.");
  61. Console.WriteLine("4 - She just arrived and you haven't introduced yourself yet.");
  62. Console.WriteLine("What will you do?(1,2,3,4)");
  63. choice1 = int.Parse(Console.ReadLine());
  64. if (choice1 == 1)
  65. {
  66. meter += 30;
  67. Console.WriteLine("You have picked a good choice. . . ");
  68. Console.WriteLine("*Plus 30 points*");
  69. Console.ReadKey();
  70. Console.Clear();
  71. Console.WriteLine("The story continues in the Library of Baltimore Tech University.");
  72. Console.WriteLine(character1 + " sees his crush then he thinks of a plan to interact with her");
  73. Console.WriteLine("1 - You shout out her name.");
  74. Console.WriteLine("2 - Greet her then ask if you could study with her.");
  75. Console.WriteLine("3 - While she is grabbing a book, you help her since she couldn't reach it.");
  76. Console.WriteLine("4 - You sit beside her.");
  77. Console.WriteLine("What will you do?(1,2,3,4)");
  78. choice2 = int.Parse(Console.ReadLine());
  79. if (choice2 == 1)
  80. {
  81. meter += 10;
  82. Console.WriteLine("You picked a bad choice . . .");
  83. Console.WriteLine("*Plus 10 points*");
  84. Console.ReadKey();
  85. Console.Clear();
  86. Console.WriteLine("The story continues in the cafeteria. . .");
  87. Console.WriteLine("It is lunch time and " + character1 + " sees his crush in the cafeteria.");
  88. Console.WriteLine("1 - You ask her if she wants you to buy her food for her.");
  89. Console.WriteLine("2 - You'll buy her favorite ice cream as a surprise.");
  90. Console.WriteLine("3 - You'll eat while she has no food.");
  91. Console.WriteLine("4 - You'll buy food then leave her.");
  92. Console.WriteLine("What will you do?(1,2,3,4)");
  93. choice3 = int.Parse(Console.ReadLine());
  94. if (choice3 == 1)
  95. {
  96. meter += 30;
  97. Console.WriteLine("You picked a good choice . . .");
  98. Console.WriteLine("*Plus 30 points*");
  99. Console.ReadKey();
  100. Console.Clear();
  101. Console.WriteLine("The story continues in the gym. . .");
  102. Console.WriteLine("It is the sportsfest season and " + character1 + " wants to impress his crush.");
  103. Console.WriteLine("1 - You join all of the sports.");
  104. Console.WriteLine("2 - You watch all of her games and support her.");
  105. Console.WriteLine("3 - She tells you to watch but you don't watch her game.");
  106. Console.WriteLine("4 - She got a sprain but you didn't do anything about it.");
  107. Console.WriteLine("What will you do?(1,2,3,4)");
  108. choice4 = int.Parse(Console.ReadLine());
  109. if (choice4 == 1)
  110. {
  111. meter += 30;
  112. Console.WriteLine("You picked a good choice . . .");
  113. Console.WriteLine("*Plus 30 points*");
  114. Console.ReadKey();
  115. Console.Clear();
  116. }
  117. else if (choice4 == 2)
  118. {
  119. meter += 40;
  120. Console.WriteLine("You picked the best choice . . .");
  121. Console.WriteLine("*Plus 40 points*");
  122. Console.ReadKey();
  123. Console.Clear();
  124. }
  125. else if (choice4 == 3)
  126. {
  127. meter += 10;
  128. Console.WriteLine("You picked a bad choice . . .");
  129. Console.WriteLine("*Plus 10 points*");
  130. Console.ReadKey();
  131. Console.Clear();
  132. }
  133. else if (choice4 == 4)
  134. {
  135. meter += 5;
  136. Console.WriteLine("You picked the worst choice . . .");
  137. Console.WriteLine("*Plus 5 points*");
  138. Console.ReadKey();
  139. Console.Clear();
  140. }
  141. }
  142. else if (choice3 == 2)
  143. {
  144. meter += 40;
  145. Console.WriteLine("You picked the best choice . . .");
  146. Console.WriteLine("*Plus 40 points*");
  147. Console.ReadKey();
  148. Console.Clear();
  149. }
  150. else if (choice3 == 3)
  151. {
  152. meter += 10;
  153. Console.WriteLine("You picked a bad choice . . .");
  154. Console.WriteLine("*Plus 10 points*");
  155. Console.ReadKey();
  156. Console.Clear();
  157. }
  158. else if (choice3 == 4)
  159. {
  160. meter += 5;
  161. Console.WriteLine("You picked the worst choice . . .");
  162. Console.WriteLine("*Plus 5 points*");
  163. Console.ReadKey();
  164. Console.Clear();
  165. }
  166. }
  167. else if (choice2 == 2)
  168. {
  169. meter += 40;
  170. Console.WriteLine("You picked the best choice . . .");
  171. Console.WriteLine("*Plus 40 points*");
  172. Console.ReadKey();
  173. Console.Clear();
  174. Console.WriteLine("The story continues in the cafeteria. . .");
  175. Console.WriteLine("It is lunch time and " + character1 + " sees his crush in the cafeteria.");
  176. Console.WriteLine("1 - You ask her if she wants you to buy her food for her.");
  177. Console.WriteLine("2 - You'll buy her favorite ice cream as a surprise.");
  178. Console.WriteLine("3 - You'll eat while she has no food.");
  179. Console.WriteLine("4 - You'll buy food then leave her.");
  180. Console.WriteLine("What will you do?(1,2,3,4)");
  181. choice3 = int.Parse(Console.ReadLine());
  182. if (choice3 == 1)
  183. {
  184. meter += 30;
  185. Console.WriteLine("You picked a good choice . . .");
  186. Console.WriteLine("*Plus 30 points*");
  187. Console.ReadKey();
  188. Console.Clear();
  189. Console.WriteLine("The story continues in the gym. . .");
  190. Console.WriteLine("It is the sportsfest season and " + character1 + " wants to impress his crush.");
  191. Console.WriteLine("1 - You join all of the sports.");
  192. Console.WriteLine("2 - You watch all of her games and support her.");
  193. Console.WriteLine("3 - She tells you to watch but you don't watch her game.");
  194. Console.WriteLine("4 - She got a sprain but you didn't do anything about it.");
  195. Console.WriteLine("What will you do?(1,2,3,4)");
  196. choice4 = int.Parse(Console.ReadLine());
  197. if (choice4 == 1)
  198. {
  199. meter += 30;
  200. Console.WriteLine("You picked a good choice . . .");
  201. Console.WriteLine("*Plus 30 points*");
  202. Console.ReadKey();
  203. Console.Clear();
  204. }
  205. else if (choice4 == 2)
  206. {
  207. meter += 40;
  208. Console.WriteLine("You picked the best choice . . .");
  209. Console.WriteLine("*Plus 40 points*");
  210. Console.ReadKey();
  211. Console.Clear();
  212. }
  213. else if (choice4 == 3)
  214. {
  215. meter += 10;
  216. Console.WriteLine("You picked a bad choice . . .");
  217. Console.WriteLine("*Plus 10 points*");
  218. Console.ReadKey();
  219. Console.Clear();
  220. }
  221. else if (choice4 == 4)
  222. {
  223. meter += 5;
  224. Console.WriteLine("You picked the worst choice . . .");
  225. Console.WriteLine("*Plus 5 points*");
  226. Console.ReadKey();
  227. Console.Clear();
  228. }
  229. }
  230. else if (choice3 == 2)
  231. {
  232. meter += 40;
  233. Console.WriteLine("You picked the best choice . . .");
  234. Console.WriteLine("*Plus 40 points*");
  235. Console.ReadKey();
  236. Console.Clear();
  237. }
  238. else if (choice3 == 3)
  239. {
  240. meter += 10;
  241. Console.WriteLine("You picked a bad choice . . .");
  242. Console.WriteLine("*Plus 10 points*");
  243. Console.ReadKey();
  244. Console.Clear();
  245. }
  246. else if (choice3 == 4)
  247. {
  248. meter += 5;
  249. Console.WriteLine("You picked the worst choice . . .");
  250. Console.WriteLine("*Plus 5 points*");
  251. Console.ReadKey();
  252. Console.Clear();
  253. }
  254. }
  255. else if (choice2 == 3)
  256. {
  257. meter += 30;
  258. Console.WriteLine("You picked a good choice . . .");
  259. Console.WriteLine("*Plus 30 points*");
  260. Console.ReadKey();
  261. Console.Clear();
  262. Console.WriteLine("The story continues in the cafeteria. . .");
  263. Console.WriteLine("It is lunch time and " + character1 + " sees his crush in the cafeteria.");
  264. Console.WriteLine("1 - You ask her if she wants you to buy her food for her.");
  265. Console.WriteLine("2 - You'll buy her favorite ice cream as a surprise.");
  266. Console.WriteLine("3 - You'll eat while she has no food.");
  267. Console.WriteLine("4 - You'll buy food then leave her.");
  268. Console.WriteLine("What will you do?(1,2,3,4)");
  269. choice3 = int.Parse(Console.ReadLine());
  270. if (choice3 == 1)
  271. {
  272. meter += 30;
  273. Console.WriteLine("You picked a good choice . . .");
  274. Console.WriteLine("*Plus 30 points*");
  275. Console.ReadKey();
  276. Console.Clear();
  277. Console.WriteLine("The story continues in the gym. . .");
  278. Console.WriteLine("It is the sportsfest season and " + character1 + " wants to impress his crush.");
  279. Console.WriteLine("1 - You join all of the sports.");
  280. Console.WriteLine("2 - You watch all of her games and support her.");
  281. Console.WriteLine("3 - She tells you to watch but you don't watch her game.");
  282. Console.WriteLine("4 - She got a sprain but you didn't do anything about it.");
  283. Console.WriteLine("What will you do?(1,2,3,4)");
  284. choice4 = int.Parse(Console.ReadLine());
  285. if (choice4 == 1)
  286. {
  287. meter += 30;
  288. Console.WriteLine("You picked a good choice . . .");
  289. Console.WriteLine("*Plus 30 points*");
  290. Console.ReadKey();
  291. Console.Clear();
  292. }
  293. else if (choice4 == 2)
  294. {
  295. meter += 40;
  296. Console.WriteLine("You picked the best choice . . .");
  297. Console.WriteLine("*Plus 40 points*");
  298. Console.ReadKey();
  299. Console.Clear();
  300. }
  301. else if (choice4 == 3)
  302. {
  303. meter += 10;
  304. Console.WriteLine("You picked a bad choice . . .");
  305. Console.WriteLine("*Plus 10 points*");
  306. Console.ReadKey();
  307. Console.Clear();
  308. }
  309. else if (choice4 == 4)
  310. {
  311. meter += 5;
  312. Console.WriteLine("You picked the worst choice . . .");
  313. Console.WriteLine("*Plus 5 points*");
  314. Console.ReadKey();
  315. Console.Clear();
  316. }
  317. }
  318. else if (choice3 == 2)
  319. {
  320. meter += 40;
  321. Console.WriteLine("You picked the best choice . . .");
  322. Console.WriteLine("*Plus 40 points*");
  323. Console.ReadKey();
  324. Console.Clear();
  325. }
  326. else if (choice3 == 3)
  327. {
  328. meter += 10;
  329. Console.WriteLine("You picked a bad choice . . .");
  330. Console.WriteLine("*Plus 10 points*");
  331. Console.ReadKey();
  332. Console.Clear();
  333. }
  334. else if (choice3 == 4)
  335. {
  336. meter += 5;
  337. Console.WriteLine("You picked the worst choice . . .");
  338. Console.WriteLine("*Plus 5 points*");
  339. Console.ReadKey();
  340. Console.Clear();
  341. }
  342. }
  343. else if (choice2 == 4)
  344. {
  345. meter += 5;
  346. Console.WriteLine("You picked the worst choice . . .");
  347. Console.WriteLine("*Plus 5 points*");
  348. Console.ReadKey();
  349. Console.Clear();
  350. Console.WriteLine("The story continues in the cafeteria. . .");
  351. Console.WriteLine("It is lunch time and " + character1 + " sees his crush in the cafeteria.");
  352. Console.WriteLine("1 - You ask her if she wants you to buy her food for her.");
  353. Console.WriteLine("2 - You'll buy her favorite ice cream as a surprise.");
  354. Console.WriteLine("3 - You'll eat while she has no food.");
  355. Console.WriteLine("4 - You'll buy food then leave her.");
  356. Console.WriteLine("What will you do?(1,2,3,4)");
  357. choice3 = int.Parse(Console.ReadLine());
  358. if (choice3 == 1)
  359. {
  360. meter += 30;
  361. Console.WriteLine("You picked a good choice . . .");
  362. Console.WriteLine("*Plus 30 points*");
  363. Console.ReadKey();
  364. Console.Clear();
  365. Console.WriteLine("The story continues in the gym. . .");
  366. Console.WriteLine("It is the sportsfest season and " + character1 + " wants to impress his crush.");
  367. Console.WriteLine("1 - You join all of the sports.");
  368. Console.WriteLine("2 - You watch all of her games and support her.");
  369. Console.WriteLine("3 - She tells you to watch but you don't watch her game.");
  370. Console.WriteLine("4 - She got a sprain but you didn't do anything about it.");
  371. Console.WriteLine("What will you do?(1,2,3,4)");
  372. choice4 = int.Parse(Console.ReadLine());
  373. if (choice4 == 1)
  374. {
  375. meter += 30;
  376. Console.WriteLine("You picked a good choice . . .");
  377. Console.WriteLine("*Plus 30 points*");
  378. Console.ReadKey();
  379. Console.Clear();
  380. }
  381. else if (choice4 == 2)
  382. {
  383. meter += 40;
  384. Console.WriteLine("You picked the best choice . . .");
  385. Console.WriteLine("*Plus 40 points*");
  386. Console.ReadKey();
  387. Console.Clear();
  388. }
  389. else if (choice4 == 3)
  390. {
  391. meter += 10;
  392. Console.WriteLine("You picked a bad choice . . .");
  393. Console.WriteLine("*Plus 10 points*");
  394. Console.ReadKey();
  395. Console.Clear();
  396. }
  397. else if (choice4 == 4)
  398. {
  399. meter += 5;
  400. Console.WriteLine("You picked the worst choice . . .");
  401. Console.WriteLine("*Plus 5 points*");
  402. Console.ReadKey();
  403. Console.Clear();
  404. }
  405. }
  406. else if (choice3 == 2)
  407. {
  408. meter += 40;
  409. Console.WriteLine("You picked the best choice . . .");
  410. Console.WriteLine("*Plus 40 points*");
  411. Console.ReadKey();
  412. Console.Clear();
  413. }
  414. else if (choice3 == 3)
  415. {
  416. meter += 10;
  417. Console.WriteLine("You picked a bad choice . . .");
  418. Console.WriteLine("*Plus 10 points*");
  419. Console.ReadKey();
  420. Console.Clear();
  421. }
  422. else if (choice3 == 4)
  423. {
  424. meter += 5;
  425. Console.WriteLine("You picked the worst choice . . .");
  426. Console.WriteLine("*Plus 5 points*");
  427. Console.ReadKey();
  428. Console.Clear();
  429. }
  430. }
  431. }
  432. else if (choice1 == 2)
  433. {
  434. meter += 10;
  435. Console.WriteLine("You have picked a bad choice. . . ");
  436. Console.WriteLine("*Plus 30 points*");
  437. Console.ReadKey();
  438. Console.Clear();
  439. Console.WriteLine("The story continues in the Library of Baltimore Tech University.");
  440. Console.WriteLine(character1 + " sees his crush then he thinks of a plan to interact with her");
  441. Console.WriteLine("1 - You shout out her name.");
  442. Console.WriteLine("2 - Greet her then ask if you could study with her.");
  443. Console.WriteLine("3 - While she is grabbing a book, you help her since she couldn't reach it.");
  444. Console.WriteLine("4 - You sit beside her.");
  445. Console.WriteLine("What will you do?(1,2,3,4)");
  446. }
  447. else if (choice1 == 3)
  448. {
  449. meter += 40;
  450. Console.WriteLine("You have picked the best choice. . . ");
  451. Console.WriteLine("*Plus 30 points*");
  452. Console.ReadKey();
  453. Console.Clear();
  454. Console.WriteLine("The story continues in the Library of Baltimore Tech University.");
  455. Console.WriteLine(character1 + " sees his crush then he thinks of a plan to interact with her");
  456. Console.WriteLine("1 - You shout out her name.");
  457. Console.WriteLine("2 - Greet her then ask if you could study with her.");
  458. Console.WriteLine("3 - While she is grabbing a book, you help her since she couldn't reach it.");
  459. Console.WriteLine("4 - You sit beside her.");
  460. Console.WriteLine("What will you do?(1,2,3,4)");
  461. }
  462. else if (choice1 == 4)
  463. {
  464. meter += 5;
  465. Console.WriteLine("You have picked the worst choice. . . ");
  466. Console.WriteLine("*Plus 30 points*");
  467. Console.ReadKey();
  468. Console.Clear();
  469. Console.WriteLine("The story continues in the Library of Baltimore Tech University.");
  470. Console.WriteLine(character1 + " sees his crush then he thinks of a plan to interact with her");
  471. Console.WriteLine("1 - You shout out her name.");
  472. Console.WriteLine("2 - Greet her then ask if you could study with her.");
  473. Console.WriteLine("3 - While she is grabbing a book, you help her since she couldn't reach it.");
  474. Console.WriteLine("4 - You sit beside her.");
  475. Console.WriteLine("What will you do?(1,2,3,4)");
  476. }
  477.  
  478. }
  479. else if (choice == 2)
  480. {
  481. Console.WriteLine("");
  482. Console.WriteLine("You have chosen Tyrian Blatche as your character");
  483. Console.WriteLine("Here are his personalities: ");
  484. Console.WriteLine(" 1 - Christ-Centered");
  485. Console.WriteLine(" 2 - Man of Values");
  486. Console.WriteLine(" 3 - Brave");
  487. Console.WriteLine(" 4 - Talkative");
  488. Console.Write("Please put the name of your partner: ");
  489. character2 = Console.ReadLine();
  490. Console.WriteLine("");
  491. Console.WriteLine("");
  492.  
  493. Console.WriteLine("Great! " + character1 + " & " + character2 + ", " + "This is where your story begins.");
  494.  
  495. Console.WriteLine("The story begins in Baltimore Tech University. This school year will be the very first time Co-Ed will be implemented.");
  496. }
  497. else if (choice == 3)
  498. {
  499. Console.WriteLine("");
  500. Console.WriteLine("You have chosen Nanding Macalintal as your character");
  501. Console.WriteLine("Here are his personalities: ");
  502. Console.WriteLine(" 1 - Quiet");
  503. Console.WriteLine(" 2 - Inconsistent");
  504. Console.WriteLine(" 3 - Rowdy");
  505. Console.WriteLine(" 4 - Boastful");
  506. Console.Write("Please put the name of your partner: ");
  507. character2 = Console.ReadLine();
  508. Console.WriteLine("");
  509. Console.WriteLine("");
  510.  
  511. Console.WriteLine("Great! " + character1 + " & " + character2 + ", " + "This is where your story begins.");
  512.  
  513. Console.WriteLine("The story begins in Baltimore Tech University. This school year will be the very first time Co-Ed will be implemented.");
  514. }
  515. else if (choice == 4)
  516. {
  517. Console.WriteLine("");
  518. Console.WriteLine("You have chosen Jopet Boystelo as your character");
  519. Console.WriteLine("Here are his personalties: ");
  520. Console.WriteLine(" 1 - Hardworking");
  521. Console.WriteLine(" 2 - Sociable");
  522. Console.WriteLine(" 3 - Playful");
  523. Console.WriteLine(" 4 - Favorable");
  524. Console.Write("Please put the name of your partner: ");
  525. character2 = Console.ReadLine();
  526. Console.WriteLine("");
  527. Console.WriteLine("");
  528.  
  529. Console.WriteLine("Great! " + character1 + " & " + character2 + ", " + "This is where your story begins.");
  530.  
  531. Console.WriteLine("The story begins in Baltimore Tech University. This school year will be the very first time Co-Ed will be implemented.");
  532. }
  533.  
  534.  
  535.  
  536.  
  537.  
  538.  
  539.  
  540.  
  541.  
  542.  
  543.  
  544.  
  545.  
  546.  
  547.  
  548. Console.ReadKey();
  549. }
  550. }
  551. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement