Advertisement
Guest User

code

a guest
Mar 23rd, 2012
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 52.90 KB | None | 0 0
  1. function vc_sound()
  2.  
  3. frame = vgui.Create( "DFrame" )
  4. frame:SetPos( 50, 50 )
  5. frame:SetSize( 290, 753 )
  6. frame:SetTitle( "Left 4 Dead Voice Chat" )
  7. frame:SetVisible( true )
  8. frame:SetDraggable( true )
  9. frame:ShowCloseButton( true )
  10. frame:MakePopup()
  11.  
  12. PropertySheet = vgui.Create( "DPropertySheet", frame )
  13. PropertySheet:SetPos( 1, 30 )
  14. PropertySheet:SetSize( 290, 723 )
  15.  
  16. -------------------
  17. --BILL'S VOICE--
  18. -------------------
  19.  
  20. ItemSheetOne = vgui.Create("DCollapsibleCategory", DermaPanel)
  21. ItemSheetOne:SetPos( 25,50 )
  22. ItemSheetOne:SetSize( 200, 50 )
  23. ItemSheetOne:SetExpanded( 1 )
  24. ItemSheetOne:SetLabel( "Bill's Voice" )
  25.  
  26. Category = vgui.Create( "DPanelList" )
  27. Category:SetAutoSize( true )
  28. Category:SetSpacing( 2 )
  29. Category:EnableHorizontal( false )
  30. Category:EnableVerticalScrollbar( true )
  31.  
  32. ItemSheetOne:SetContents( Category )
  33.  
  34. ContentOne = vgui.Create( "DButton" )
  35. ContentOne:SetText( "Take This." )
  36. ContentOne.DoClick = function() frame:Close()
  37. surface.PlaySound( "voice/namvet/AlertGiveItem01.wav" )
  38.  
  39.  
  40. end
  41. Category:AddItem( ContentOne )
  42.  
  43. ContentTwo = vgui.Create( "DButton" )
  44. ContentTwo:SetText( "Ready." )
  45. ContentTwo.DoClick = function() frame:Close()
  46. surface.PlaySound( "voice/namvet/answerready01.wav" )
  47.  
  48.  
  49. end
  50. Category:AddItem( ContentTwo )
  51.  
  52. ContentThree = vgui.Create( "DButton" )
  53. ContentThree:SetText( "Clear." )
  54. ContentThree.DoClick = function() frame:Close()
  55. surface.PlaySound( "voice/namvet/AreaClear01.wav" )
  56.  
  57.  
  58. end
  59. Category:AddItem( ContentThree )
  60.  
  61. ContentFour = vgui.Create( "DButton" )
  62. ContentFour:SetText( "Ready?" )
  63. ContentFour.DoClick = function() frame:Close()
  64. surface.PlaySound( "voice/namvet/askready01.wav" )
  65.  
  66.  
  67. end
  68. Category:AddItem( ContentFour )
  69.  
  70. ContentFive = vgui.Create( "DButton" )
  71. ContentFive:SetText( "Backup!" )
  72. ContentFive.DoClick = function() frame:Close()
  73. surface.PlaySound( "voice/namvet/backup01.wav" )
  74.  
  75.  
  76. end
  77. Category:AddItem( ContentFive )
  78.  
  79. ContentSix = vgui.Create( "DButton" )
  80. ContentSix:SetText( "Backup." )
  81. ContentSix.DoClick = function() frame:Close()
  82. surface.PlaySound( "voice/namvet/backupquiet01.wav" )
  83.  
  84.  
  85. end
  86. Category:AddItem( ContentSix )
  87.  
  88. ContentSeven = vgui.Create( "DButton" )
  89. ContentSeven:SetText( "Choke" )
  90. ContentSeven.DoClick = function() frame:Close()
  91. surface.PlaySound( "voice/namvet/choke01.wav" )
  92.  
  93.  
  94. end
  95. Category:AddItem( ContentSeven )
  96.  
  97. ContentEight = vgui.Create( "DButton" )
  98. ContentEight:SetText( "Close The Door." )
  99. ContentEight.DoClick = function() frame:Close()
  100. surface.PlaySound( "voice/namvet/CloseThedoor01.wav" )
  101.  
  102.  
  103. end
  104. Category:AddItem( ContentEight )
  105.  
  106. ContentNine = vgui.Create( "DButton" )
  107. ContentNine:SetText( "Cough" )
  108. ContentNine.DoClick = function() frame:Close()
  109. surface.PlaySound( "voice/namvet/cough01.wav" )
  110.  
  111.  
  112. end
  113. Category:AddItem( ContentNine )
  114.  
  115. ContentTen = vgui.Create( "DButton" )
  116. ContentTen:SetText( "Cover Me." )
  117. ContentTen.DoClick = function() frame:Close()
  118. surface.PlaySound( "voice/namvet/coverme01.wav" )
  119.  
  120.  
  121. end
  122. Category:AddItem( ContentTen )
  123.  
  124. ContentEleven = vgui.Create( "DButton" )
  125. ContentEleven:SetText( "Scream" )
  126. ContentEleven.DoClick = function() frame:Close()
  127. surface.PlaySound( "voice/namvet/deathscream01.wav" )
  128.  
  129.  
  130. end
  131. Category:AddItem( ContentEleven )
  132.  
  133. ContentTwelve = vgui.Create( "DButton" )
  134. ContentTwelve:SetText( "Generic Atmosphere Response." )
  135. ContentTwelve.DoClick = function() frame:Close()
  136. surface.PlaySound( "voice/namvet/doubledeathresponse01.wav" )
  137.  
  138.  
  139. end
  140. Category:AddItem( ContentTwelve )
  141.  
  142. ContentThirteen = vgui.Create( "DButton" )
  143. ContentThirteen:SetText( "Down in Front!" )
  144. ContentThirteen.DoClick = function() frame:Close()
  145. surface.PlaySound( "voice/namvet/downinfront01.wav" )
  146.  
  147.  
  148. end
  149. Category:AddItem( ContentThirteen )
  150.  
  151. ContentFourteen = vgui.Create( "DButton" )
  152. ContentFourteen:SetText( "I need help, NOW!" )
  153. ContentFourteen.DoClick = function() frame:Close()
  154. surface.PlaySound( "voice/namvet/dying01.wav" )
  155.  
  156.  
  157. end
  158. Category:AddItem( ContentFourteen )
  159.  
  160. ContentFifteen = vgui.Create( "DButton" )
  161. ContentFifteen:SetText( "Go! Go! GO!" )
  162. ContentFifteen.DoClick = function() frame:Close()
  163. surface.PlaySound( "voice/namvet/emphaticgo01.wav" )
  164.  
  165.  
  166. end
  167. Category:AddItem( ContentFifteen )
  168.  
  169. ContentSixteen = vgui.Create( "DButton" )
  170. ContentSixteen:SetText( "RUN!" )
  171. ContentSixteen.DoClick = function() frame:Close()
  172. surface.PlaySound( "voice/namvet/emphaticrun01.wav" )
  173.  
  174.  
  175. end
  176. Category:AddItem( ContentSixteen )
  177.  
  178. ContentSeventeen = vgui.Create( "DButton" )
  179. ContentSeventeen:SetText( "CRITICAL DAMAGE" )
  180. ContentSeventeen.DoClick = function() frame:Close()
  181. surface.PlaySound( "voice/namvet/exertioncritical01.wav" )
  182.  
  183.  
  184. end
  185. Category:AddItem( ContentSeventeen )
  186.  
  187. ContentEighteen = vgui.Create( "DButton" )
  188. ContentEighteen:SetText( "MAJOR DAMAGE" )
  189. ContentEighteen.DoClick = function() frame:Close()
  190. surface.PlaySound( "voice/namvet/exertionmajor01.wav" )
  191.  
  192.  
  193. end
  194. Category:AddItem( ContentEighteen )
  195.  
  196. ContentNineteen = vgui.Create( "DButton" )
  197. ContentNineteen:SetText( "MINOR DAMAGE" )
  198. ContentNineteen.DoClick = function() frame:Close()
  199. surface.PlaySound( "voice/namvet/exertionminor01.wav" )
  200.  
  201.  
  202. end
  203. Category:AddItem( ContentNineteen )
  204.  
  205. ContentTwenty = vgui.Create( "DButton" )
  206. ContentTwenty:SetText( "Fall Scream" )
  207. ContentTwenty.DoClick = function() frame:Close()
  208. surface.PlaySound( "voice/namvet/fall01.wav" )
  209.  
  210.  
  211. end
  212. Category:AddItem( ContentTwenty )
  213.  
  214. ContentTwentyone = vgui.Create( "DButton" )
  215. ContentTwentyone:SetText( "Short Fall Scream" )
  216. ContentTwentyone.DoClick = function() frame:Close()
  217. surface.PlaySound( "voice/namvet/fallshort01.wav" )
  218.  
  219.  
  220. end
  221. Category:AddItem( ContentTwentyone )
  222.  
  223. ContentTwentytwo = vgui.Create( "DButton" )
  224. ContentTwentytwo:SetText( "We're almost out of here!" )
  225. ContentTwentytwo.DoClick = function() frame:Close()
  226. surface.PlaySound( "voice/namvet/Finaleahead01.wav" )
  227.  
  228.  
  229. end
  230. Category:AddItem( ContentTwentytwo )
  231.  
  232. ContentTwentythree = vgui.Create( "DButton" )
  233. ContentTwentythree:SetText( "This way." )
  234. ContentTwentythree.DoClick = function() frame:Close()
  235. surface.PlaySound( "voice/namvet/followme01.wav" )
  236.  
  237.  
  238. end
  239. Category:AddItem( ContentTwentythree )
  240.  
  241. ContentTwentyfour = vgui.Create( "DButton" )
  242. ContentTwentyfour:SetText( "That hurt!" )
  243. ContentTwentyfour.DoClick = function() frame:Close()
  244. surface.PlaySound( "voice/namvet/friendlyfire01.wav" )
  245.  
  246.  
  247. end
  248. Category:AddItem( ContentTwentyfour )
  249.  
  250. ContentTwentyfive = vgui.Create( "DButton" )
  251. ContentTwentyfive:SetText( "Generic Atmosphere Response 2" )
  252. ContentTwentyfive.DoClick = function() frame:Close()
  253. surface.PlaySound( "voice/namvet/generic29.wav" )
  254.  
  255.  
  256. end
  257. Category:AddItem( ContentTwentyfive )
  258.  
  259. ContentTwentysix = vgui.Create( "DButton" )
  260. ContentTwentysix:SetText( "Damn straight." )
  261. ContentTwentysix.DoClick = function() frame:Close()
  262. surface.PlaySound( "voice/namvet/generic32.wav" )
  263.  
  264.  
  265. end
  266. Category:AddItem( ContentTwentysix )
  267.  
  268. ContentTwentyseven = vgui.Create( "DButton" )
  269. ContentTwentyseven:SetText( "Generic Atmosphere Response 3" )
  270. ContentTwentyseven.DoClick = function() frame:Close()
  271. surface.PlaySound( "voice/namvet/generic33.wav" )
  272.  
  273.  
  274. end
  275. Category:AddItem( ContentTwentyseven )
  276.  
  277. ContentTwentyeight = vgui.Create( "DButton" )
  278. ContentTwentyeight:SetText( "Generic Atmosphere Response 4" )
  279. ContentTwentyeight.DoClick = function() frame:Close()
  280. surface.PlaySound( "voice/namvet/generic34.wav" )
  281.  
  282.  
  283. end
  284. Category:AddItem( ContentTwentyeight )
  285.  
  286. ContentTwentynine = vgui.Create( "DButton" )
  287. ContentTwentynine:SetText( "Hey!" )
  288. ContentTwentynine.DoClick = function() frame:Close()
  289. surface.PlaySound( "voice/namvet/generic41.wav" )
  290.  
  291.  
  292. end
  293. Category:AddItem( ContentTwentynine )
  294.  
  295. ContentThirty = vgui.Create( "DButton" )
  296. ContentThirty:SetText( "Generic Atmosphere Response 5" )
  297. ContentThirty.DoClick = function() frame:Close()
  298. surface.PlaySound( "voice/namvet/generic44.wav" )
  299.  
  300.  
  301. end
  302. Category:AddItem( ContentThirty )
  303.  
  304. ContentThirtyone = vgui.Create( "DButton" )
  305. ContentThirtyone:SetText( "Generic Atmosphere Response 6" )
  306. ContentThirtyone.DoClick = function() frame:Close()
  307. surface.PlaySound( "voice/namvet/Generic49.wav" )
  308.  
  309.  
  310. end
  311. Category:AddItem( ContentThirtyone )
  312.  
  313. ContentThirtytwo = vgui.Create( "DButton" )
  314. ContentThirtytwo:SetText( "I don't feel so good." )
  315. ContentThirtytwo.DoClick = function() frame:Close()
  316. surface.PlaySound( "voice/namvet/goingtodie01.wav" )
  317.  
  318.  
  319. end
  320. Category:AddItem( ContentThirtytwo )
  321.  
  322. ContentThirtythree = vgui.Create( "DButton" )
  323. ContentThirtythree:SetText( "This ol' body ain't gonna make it." )
  324. ContentThirtythree.DoClick = function() frame:Close()
  325. surface.PlaySound( "voice/namvet/goingtodielight01.wav" )
  326.  
  327.  
  328. end
  329. Category:AddItem( ContentThirtythree )
  330.  
  331. ContentThirtyfour = vgui.Create( "DButton" )
  332. ContentThirtyfour:SetText( "Grenade!" )
  333. ContentThirtyfour.DoClick = function() frame:Close()
  334. surface.PlaySound( "voice/namvet/grenade01.wav" )
  335.  
  336.  
  337. end
  338. Category:AddItem( ContentThirtyfour )
  339.  
  340. ContentThirtyfive = vgui.Create( "DButton" )
  341. ContentThirtyfive:SetText( "Not Francis..." )
  342. ContentThirtyfive.DoClick = function() frame:Close()
  343. surface.PlaySound( "voice/namvet/griefbiker01.wav" )
  344.  
  345.  
  346. end
  347. Category:AddItem( ContentThirtyfive )
  348.  
  349. ContentThirtysix = vgui.Create( "DButton" )
  350. ContentThirtysix:SetText( "She's dead." )
  351. ContentThirtysix.DoClick = function() frame:Close()
  352. surface.PlaySound( "voice/namvet/grieffemalegeneric01.wav" )
  353.  
  354.  
  355. end
  356. Category:AddItem( ContentThirtysix )
  357.  
  358. ContentThirtyseven = vgui.Create( "DButton" )
  359. ContentThirtyseven:SetText( "Oh, Louis!" )
  360. ContentThirtyseven.DoClick = function() frame:Close()
  361. surface.PlaySound( "voice/namvet/griefmanager01.wav" )
  362.  
  363.  
  364. end
  365. Category:AddItem( ContentThirtyseven )
  366.  
  367. ContentThirtyeight = vgui.Create( "DButton" )
  368. ContentThirtyeight:SetText( "Not Zoey..." )
  369. ContentThirtyeight.DoClick = function() frame:Close()
  370. surface.PlaySound( "voice/namvet/griefteengirl01.wav" )
  371.  
  372.  
  373. end
  374. Category:AddItem( ContentThirtyeight )
  375.  
  376. ContentThirtynine = vgui.Create( "DButton" )
  377. ContentThirtynine:SetText( "Need Help!" )
  378. ContentThirtynine.DoClick = function() frame:Close()
  379. surface.PlaySound( "voice/namvet/help01.wav" )
  380.  
  381.  
  382. end
  383. Category:AddItem( ContentThirtynine )
  384.  
  385. ContentFourty = vgui.Create( "DButton" )
  386. ContentFourty:SetText( "Doin' god damn good." )
  387. ContentFourty.DoClick = function() frame:Close()
  388. surface.PlaySound( "voice/namvet/hurrah02.wav" )
  389.  
  390.  
  391. end
  392. Category:AddItem( ContentFourty )
  393.  
  394. ContentFourtyone = vgui.Create( "DButton" )
  395. ContentFourtyone:SetText( "Here they come." )
  396. ContentFourtyone.DoClick = function() frame:Close()
  397. surface.PlaySound( "voice/namvet/incoming01.wav" )
  398.  
  399.  
  400. end
  401. Category:AddItem( ContentFourtyone )
  402.  
  403. ContentFourtytwo = vgui.Create( "DButton" )
  404. ContentFourtytwo:SetText( "Heh heh." )
  405. ContentFourtytwo.DoClick = function() frame:Close()
  406. surface.PlaySound( "voice/namvet/laughter01.wav" )
  407.  
  408.  
  409. end
  410. Category:AddItem( ContentFourtytwo )
  411.  
  412. ContentFourtythree = vgui.Create( "DButton" )
  413. ContentFourtythree:SetText( "Over there." )
  414. ContentFourtythree.DoClick = function() frame:Close()
  415. surface.PlaySound( "voice/namvet/look01.wav" )
  416.  
  417.  
  418. end
  419. Category:AddItem( ContentFourtythree )
  420.  
  421. ContentFourtyfour = vgui.Create( "DButton" )
  422. ContentFourtyfour:SetText( "No." )
  423. ContentFourtyfour.DoClick = function() frame:Close()
  424. surface.PlaySound( "voice/namvet/no10.wav" )
  425.  
  426.  
  427. end
  428. Category:AddItem( ContentFourtyfour )
  429.  
  430. ContentFourtyfive = vgui.Create( "DButton" )
  431. ContentFourtyfive:SetText( "Sorry." )
  432. ContentFourtyfive.DoClick = function() frame:Close()
  433. surface.PlaySound( "voice/namvet/sorry01.wav" )
  434.  
  435.  
  436. end
  437. Category:AddItem( ContentFourtyfive )
  438.  
  439. ContentFourtysix = vgui.Create( "DButton" )
  440. ContentFourtysix:SetText( "Thanks, I owe ya one." )
  441. ContentFourtysix.DoClick = function() frame:Close()
  442. surface.PlaySound( "voice/namvet/Thanks01.wav" )
  443.  
  444.  
  445. end
  446. Category:AddItem( ContentFourtysix )
  447.  
  448. ContentFourtyseven = vgui.Create( "DButton" )
  449. ContentFourtyseven:SetText( "Wasn't necessary." )
  450. ContentFourtyseven.DoClick = function() frame:Close()
  451. surface.PlaySound( "voice/namvet/Thanks11.wav" )
  452.  
  453.  
  454. end
  455. Category:AddItem( ContentFourtyseven )
  456.  
  457. ContentFourtyeight = vgui.Create( "DButton" )
  458. ContentFourtyeight:SetText( "Yeah." )
  459. ContentFourtyeight.DoClick = function() frame:Close()
  460. surface.PlaySound( "voice/namvet/yes03.wav" )
  461.  
  462.  
  463. end
  464. Category:AddItem( ContentFourtyeight )
  465.  
  466. ContentFourtynine = vgui.Create( "DButton" )
  467. ContentFourtynine:SetText( "Francis." )
  468. ContentFourtynine.DoClick = function() frame:Close()
  469. surface.PlaySound( "voice/namvet/namefrancis03.wav" )
  470.  
  471.  
  472. end
  473. Category:AddItem( ContentFourtynine )
  474.  
  475. ContentFifty = vgui.Create( "DButton" )
  476. ContentFifty:SetText( "Louis." )
  477. ContentFifty.DoClick = function() frame:Close()
  478. surface.PlaySound( "voice/namvet/namelouis03.wav" )
  479.  
  480.  
  481. end
  482. Category:AddItem( ContentFifty )
  483.  
  484. ContentFiftyone = vgui.Create( "DButton" )
  485. ContentFiftyone:SetText( "Zoey." )
  486. ContentFiftyone.DoClick = function() frame:Close()
  487. surface.PlaySound( "voice/namvet/namezoey03.wav" )
  488.  
  489.  
  490. end
  491. Category:AddItem( ContentFiftyone )
  492.  
  493. -------------------
  494. --ZOEY'S VOICE--
  495. -------------------
  496.  
  497. ItemSheetTwo = vgui.Create("DCollapsibleCategory", DermaPanel)
  498. ItemSheetTwo:SetPos( 25,50 )
  499. ItemSheetTwo:SetSize( 200, 50 )
  500. ItemSheetTwo:SetExpanded( 1 )
  501. ItemSheetTwo:SetLabel( "Zoey's Voice" )
  502.  
  503. Category2 = vgui.Create( "DPanelList" )
  504. Category2:SetAutoSize( true )
  505. Category2:SetSpacing( 2 )
  506. Category2:EnableHorizontal( false )
  507. Category2:EnableVerticalScrollbar( true )
  508.  
  509. ItemSheetTwo:SetContents( Category2 )
  510.  
  511. ContentOne = vgui.Create( "DButton" )
  512. ContentOne:SetText( "You can have this." )
  513. ContentOne.DoClick = function() frame:Close()
  514. surface.PlaySound( "voice/teengirl/AlertGiveItem01.wav" )
  515.  
  516.  
  517. end
  518. Category2:AddItem( ContentOne )
  519.  
  520. ContentTwo = vgui.Create( "DButton" )
  521. ContentTwo:SetText( "Ready." )
  522. ContentTwo.DoClick = function() frame:Close()
  523. surface.PlaySound( "voice/teengirl/answerready01.wav" )
  524.  
  525.  
  526. end
  527. Category2:AddItem( ContentTwo )
  528.  
  529. ContentThree = vgui.Create( "DButton" )
  530. ContentThree:SetText( "Clear." )
  531. ContentThree.DoClick = function() frame:Close()
  532. surface.PlaySound( "voice/teengirl/AreaClear01.wav" )
  533.  
  534.  
  535. end
  536. Category2:AddItem( ContentThree )
  537.  
  538. ContentFour = vgui.Create( "DButton" )
  539. ContentFour:SetText( "Ready, guys?" )
  540. ContentFour.DoClick = function() frame:Close()
  541. surface.PlaySound( "voice/teengirl/askready01.wav" )
  542.  
  543.  
  544. end
  545. Category2:AddItem( ContentFour )
  546.  
  547. ContentFive = vgui.Create( "DButton" )
  548. ContentFive:SetText( "Back, back, back!" )
  549. ContentFive.DoClick = function() frame:Close()
  550. surface.PlaySound( "voice/teengirl/backup01.wav" )
  551.  
  552.  
  553. end
  554. Category2:AddItem( ContentFive )
  555.  
  556. ContentSix = vgui.Create( "DButton" )
  557. ContentSix:SetText( "Backup." )
  558. ContentSix.DoClick = function() frame:Close()
  559. surface.PlaySound( "voice/teengirl/backupquiet01.wav" )
  560.  
  561.  
  562. end
  563. Category2:AddItem( ContentSix )
  564.  
  565. ContentSeven = vgui.Create( "DButton" )
  566. ContentSeven:SetText( "Choke" )
  567. ContentSeven.DoClick = function() frame:Close()
  568. surface.PlaySound( "voice/teengirl/choke01.wav" )
  569.  
  570.  
  571. end
  572. Category2:AddItem( ContentSeven )
  573.  
  574. ContentEight = vgui.Create( "DButton" )
  575. ContentEight:SetText( "Lock the Door." )
  576. ContentEight.DoClick = function() frame:Close()
  577. surface.PlaySound( "voice/teengirl/CloseThedoor01.wav" )
  578.  
  579.  
  580. end
  581. Category2:AddItem( ContentEight )
  582.  
  583. ContentNine = vgui.Create( "DButton" )
  584. ContentNine:SetText( "Cough" )
  585. ContentNine.DoClick = function() frame:Close()
  586. surface.PlaySound( "voice/teengirl/cough01.wav" )
  587.  
  588.  
  589. end
  590. Category2:AddItem( ContentNine )
  591.  
  592. ContentTen = vgui.Create( "DButton" )
  593. ContentTen:SetText( "Hold up." )
  594. ContentTen.DoClick = function() frame:Close()
  595. surface.PlaySound( "voice/teengirl/coverme01.wav" )
  596.  
  597.  
  598. end
  599. Category2:AddItem( ContentTen )
  600.  
  601. ContentEleven = vgui.Create( "DButton" )
  602. ContentEleven:SetText( "Death" )
  603. ContentEleven.DoClick = function() frame:Close()
  604. surface.PlaySound( "voice/teengirl/deathscream01.wav" )
  605.  
  606.  
  607. end
  608. Category2:AddItem( ContentEleven )
  609.  
  610. ContentTwelve = vgui.Create( "DButton" )
  611. ContentTwelve:SetText( "Generic Atmosphere Response." )
  612. ContentTwelve.DoClick = function() frame:Close()
  613. surface.PlaySound( "voice/teengirl/doubledeathresponse01.wav" )
  614.  
  615.  
  616. end
  617. Category2:AddItem( ContentTwelve )
  618.  
  619. ContentThirteen = vgui.Create( "DButton" )
  620. ContentThirteen:SetText( "Down in Front!" )
  621. ContentThirteen.DoClick = function() frame:Close()
  622. surface.PlaySound( "voice/teengirl/downinfront01.wav" )
  623.  
  624.  
  625. end
  626. Category2:AddItem( ContentThirteen )
  627.  
  628. ContentFourteen = vgui.Create( "DButton" )
  629. ContentFourteen:SetText( "Guys! I need help, now!" )
  630. ContentFourteen.DoClick = function() frame:Close()
  631. surface.PlaySound( "voice/teengirl/dying01.wav" )
  632.  
  633.  
  634. end
  635. Category2:AddItem( ContentFourteen )
  636.  
  637. ContentFifteen = vgui.Create( "DButton" )
  638. ContentFifteen:SetText( "Go! Go! Go!" )
  639. ContentFifteen.DoClick = function() frame:Close()
  640. surface.PlaySound( "voice/teengirl/emphaticgo01.wav" )
  641.  
  642.  
  643. end
  644. Category2:AddItem( ContentFifteen )
  645.  
  646. ContentSixteen = vgui.Create( "DButton" )
  647. ContentSixteen:SetText( "Let's go, let's go!" )
  648. ContentSixteen.DoClick = function() frame:Close()
  649. surface.PlaySound( "voice/teengirl/emphaticrun01.wav" )
  650.  
  651.  
  652. end
  653. Category2:AddItem( ContentSixteen )
  654.  
  655. ContentSeventeen = vgui.Create( "DButton" )
  656. ContentSeventeen:SetText( "CRITICAL DAMAGE" )
  657. ContentSeventeen.DoClick = function() frame:Close()
  658. surface.PlaySound( "voice/teengirl/exertioncritical01.wav" )
  659.  
  660.  
  661. end
  662. Category2:AddItem( ContentSeventeen )
  663.  
  664. ContentEighteen = vgui.Create( "DButton" )
  665. ContentEighteen:SetText( "MAJOR DAMAGE" )
  666. ContentEighteen.DoClick = function() frame:Close()
  667. surface.PlaySound( "voice/teengirl/exertionmajor01.wav" )
  668.  
  669.  
  670. end
  671. Category2:AddItem( ContentEighteen )
  672.  
  673. ContentNineteen = vgui.Create( "DButton" )
  674. ContentNineteen:SetText( "MINOR DAMAGE" )
  675. ContentNineteen.DoClick = function() frame:Close()
  676. surface.PlaySound( "voice/teengirl/exertionminor01.wav" )
  677.  
  678.  
  679. end
  680. Category2:AddItem( ContentNineteen )
  681.  
  682. ContentTwenty = vgui.Create( "DButton" )
  683. ContentTwenty:SetText( "Fall Scream" )
  684. ContentTwenty.DoClick = function() frame:Close()
  685. surface.PlaySound( "voice/teengirl/fall01.wav" )
  686.  
  687.  
  688. end
  689. Category2:AddItem( ContentTwenty )
  690.  
  691. ContentTwentyone = vgui.Create( "DButton" )
  692. ContentTwentyone:SetText( "Short Fall Scream" )
  693. ContentTwentyone.DoClick = function() frame:Close()
  694. surface.PlaySound( "voice/teengirl/fallshort01.wav" )
  695.  
  696.  
  697. end
  698. Category2:AddItem( ContentTwentyone )
  699.  
  700. ContentTwentytwo = vgui.Create( "DButton" )
  701. ContentTwentytwo:SetText( "I think we're almost there!" )
  702. ContentTwentytwo.DoClick = function() frame:Close()
  703. surface.PlaySound( "voice/teengirl/Finaleahead01.wav" )
  704.  
  705.  
  706. end
  707. Category2:AddItem( ContentTwentytwo )
  708.  
  709. ContentTwentythree = vgui.Create( "DButton" )
  710. ContentTwentythree:SetText( "Come on, this way." )
  711. ContentTwentythree.DoClick = function() frame:Close()
  712. surface.PlaySound( "voice/teengirl/followme01.wav" )
  713.  
  714.  
  715. end
  716. Category2:AddItem( ContentTwentythree )
  717.  
  718. ContentTwentyfour = vgui.Create( "DButton" )
  719. ContentTwentyfour:SetText( "Hey, that hurt!" )
  720. ContentTwentyfour.DoClick = function() frame:Close()
  721. surface.PlaySound( "voice/teengirl/friendlyfire02.wav" )
  722.  
  723.  
  724. end
  725. Category2:AddItem( ContentTwentyfour )
  726.  
  727. ContentTwentyfive = vgui.Create( "DButton" )
  728. ContentTwentyfive:SetText( "Generic Atmosphere Response 2" )
  729. ContentTwentyfive.DoClick = function() frame:Close()
  730. surface.PlaySound( "voice/teengirl/generic01.wav" )
  731.  
  732.  
  733. end
  734. Category2:AddItem( ContentTwentyfive )
  735.  
  736. ContentTwentysix = vgui.Create( "DButton" )
  737. ContentTwentysix:SetText( "Yoink." )
  738. ContentTwentysix.DoClick = function() frame:Close()
  739. surface.PlaySound( "voice/teengirl/generic20.wav" )
  740.  
  741.  
  742. end
  743. Category2:AddItem( ContentTwentysix )
  744.  
  745. ContentTwentyseven = vgui.Create( "DButton" )
  746. ContentTwentyseven:SetText( "Generic Atmosphere Response 3" )
  747. ContentTwentyseven.DoClick = function() frame:Close()
  748. surface.PlaySound( "voice/teengirl/generic03.wav" )
  749.  
  750.  
  751. end
  752. Category2:AddItem( ContentTwentyseven )
  753.  
  754. ContentTwentyeight = vgui.Create( "DButton" )
  755. ContentTwentyeight:SetText( "Generic Atmosphere Response 4" )
  756. ContentTwentyeight.DoClick = function() frame:Close()
  757. surface.PlaySound( "voice/teengirl/generic04.wav" )
  758.  
  759.  
  760. end
  761. Category2:AddItem( ContentTwentyeight )
  762.  
  763. ContentTwentynine = vgui.Create( "DButton" )
  764. ContentTwentynine:SetText( "Hey!" )
  765. ContentTwentynine.DoClick = function() frame:Close()
  766. surface.PlaySound( "voice/teengirl/generic10.wav" )
  767.  
  768.  
  769. end
  770. Category2:AddItem( ContentTwentynine )
  771.  
  772. ContentThirty = vgui.Create( "DButton" )
  773. ContentThirty:SetText( "Generic Atmosphere Response 5" )
  774. ContentThirty.DoClick = function() frame:Close()
  775. surface.PlaySound( "voice/teengirl/generic26.wav" )
  776.  
  777.  
  778. end
  779. Category2:AddItem( ContentThirty )
  780.  
  781. ContentThirtyone = vgui.Create( "DButton" )
  782. ContentThirtyone:SetText( "You're not to miss, Louis." )
  783. ContentThirtyone.DoClick = function() frame:Close()
  784. surface.PlaySound( "voice/teengirl/Generic15.wav" )
  785.  
  786.  
  787. end
  788. Category2:AddItem( ContentThirtyone )
  789.  
  790. ContentThirtytwo = vgui.Create( "DButton" )
  791. ContentThirtytwo:SetText( "I don't feel so hot." )
  792. ContentThirtytwo.DoClick = function() frame:Close()
  793. surface.PlaySound( "voice/teengirl/goingtodie01.wav" )
  794.  
  795.  
  796. end
  797. Category2:AddItem( ContentThirtytwo )
  798.  
  799. ContentThirtythree = vgui.Create( "DButton" )
  800. ContentThirtythree:SetText( "I feel like crap." )
  801. ContentThirtythree.DoClick = function() frame:Close()
  802. surface.PlaySound( "voice/teengirl/goingtodielight06.wav" )
  803.  
  804.  
  805. end
  806. Category2:AddItem( ContentThirtythree )
  807.  
  808. ContentThirtyfour = vgui.Create( "DButton" )
  809. ContentThirtyfour:SetText( "Grenade!" )
  810. ContentThirtyfour.DoClick = function() frame:Close()
  811. surface.PlaySound( "voice/teengirl/grenade02.wav" )
  812.  
  813.  
  814. end
  815. Category2:AddItem( ContentThirtyfour )
  816.  
  817. ContentThirtyfive = vgui.Create( "DButton" )
  818. ContentThirtyfive:SetText( "Francis?!" )
  819. ContentThirtyfive.DoClick = function() frame:Close()
  820. surface.PlaySound( "voice/teengirl/griefbiker01.wav" )
  821.  
  822.  
  823. end
  824. Category2:AddItem( ContentThirtyfive )
  825.  
  826. ContentThirtysix = vgui.Create( "DButton" )
  827. ContentThirtysix:SetText( "Oh no, not Louis!" )
  828. ContentThirtysix.DoClick = function() frame:Close()
  829. surface.PlaySound( "voice/teengirl/griefmanager08.wav" )
  830.  
  831.  
  832. end
  833. Category2:AddItem( ContentThirtysix )
  834.  
  835. ContentThirtyseven = vgui.Create( "DButton" )
  836. ContentThirtyseven:SetText( "Louis!" )
  837. ContentThirtyseven.DoClick = function() frame:Close()
  838. surface.PlaySound( "voice/teengirl/griefmanager02.wav" )
  839.  
  840.  
  841. end
  842. Category2:AddItem( ContentThirtyseven )
  843.  
  844. ContentThirtyeight = vgui.Create( "DButton" )
  845. ContentThirtyeight:SetText( "Oh god, not Bill!" )
  846. ContentThirtyeight.DoClick = function() frame:Close()
  847. surface.PlaySound( "voice/teengirl/griefvet03.wav" )
  848.  
  849.  
  850. end
  851. Category2:AddItem( ContentThirtyeight )
  852.  
  853. ContentThirtynine = vgui.Create( "DButton" )
  854. ContentThirtynine:SetText( "Help!" )
  855. ContentThirtynine.DoClick = function() frame:Close()
  856. surface.PlaySound( "voice/teengirl/help01.wav" )
  857.  
  858.  
  859. end
  860. Category2:AddItem( ContentThirtynine )
  861.  
  862. ContentFourty = vgui.Create( "DButton" )
  863. ContentFourty:SetText( "We're gonna make it." )
  864. ContentFourty.DoClick = function() frame:Close()
  865. surface.PlaySound( "voice/teengirl/hurrah07.wav" )
  866.  
  867.  
  868. end
  869. Category2:AddItem( ContentFourty )
  870.  
  871. ContentFourtyone = vgui.Create( "DButton" )
  872. ContentFourtyone:SetText( "They're comin'." )
  873. ContentFourtyone.DoClick = function() frame:Close()
  874. surface.PlaySound( "voice/teengirl/incoming04.wav" )
  875.  
  876.  
  877. end
  878. Category2:AddItem( ContentFourtyone )
  879.  
  880. ContentFourtytwo = vgui.Create( "DButton" )
  881. ContentFourtytwo:SetText( "Laughter" )
  882. ContentFourtytwo.DoClick = function() frame:Close()
  883. surface.PlaySound( "voice/teengirl/laughter02.wav" )
  884.  
  885.  
  886. end
  887. Category2:AddItem( ContentFourtytwo )
  888.  
  889. ContentFourtythree = vgui.Create( "DButton" )
  890. ContentFourtythree:SetText( "Over there." )
  891. ContentFourtythree.DoClick = function() frame:Close()
  892. surface.PlaySound( "voice/teengirl/look01.wav" )
  893.  
  894.  
  895. end
  896. Category2:AddItem( ContentFourtythree )
  897.  
  898. ContentFourtyfour = vgui.Create( "DButton" )
  899. ContentFourtyfour:SetText( "No." )
  900. ContentFourtyfour.DoClick = function() frame:Close()
  901. surface.PlaySound( "voice/teengirl/no08.wav" )
  902.  
  903.  
  904. end
  905. Category2:AddItem( ContentFourtyfour )
  906.  
  907. ContentFourtyfive = vgui.Create( "DButton" )
  908. ContentFourtyfive:SetText( "Sorry." )
  909. ContentFourtyfive.DoClick = function() frame:Close()
  910. surface.PlaySound( "voice/teengirl/sorry07.wav" )
  911.  
  912.  
  913. end
  914. Category2:AddItem( ContentFourtyfive )
  915.  
  916. ContentFourtysix = vgui.Create( "DButton" )
  917. ContentFourtysix:SetText( "Thanks, I owe ya." )
  918. ContentFourtysix.DoClick = function() frame:Close()
  919. surface.PlaySound( "voice/teengirl/Thanks01.wav" )
  920.  
  921.  
  922. end
  923. Category2:AddItem( ContentFourtysix )
  924.  
  925. ContentFourtyseven = vgui.Create( "DButton" )
  926. ContentFourtyseven:SetText( "Appreciate it." )
  927. ContentFourtyseven.DoClick = function() frame:Close()
  928. surface.PlaySound( "voice/teengirl/Thanks23.wav" )
  929.  
  930.  
  931. end
  932. Category2:AddItem( ContentFourtyseven )
  933.  
  934. ContentFourtyeight = vgui.Create( "DButton" )
  935. ContentFourtyeight:SetText( "Yeah." )
  936. ContentFourtyeight.DoClick = function() frame:Close()
  937. surface.PlaySound( "voice/teengirl/yes01.wav" )
  938.  
  939.  
  940. end
  941. Category2:AddItem( ContentFourtyeight )
  942.  
  943. ContentFourtynine = vgui.Create( "DButton" )
  944. ContentFourtynine:SetText( "Bill." )
  945. ContentFourtynine.DoClick = function() frame:Close()
  946. surface.PlaySound( "voice/teengirl/namebill07.wav" )
  947.  
  948.  
  949. end
  950. Category2:AddItem( ContentFourtynine )
  951.  
  952. ContentFifty = vgui.Create( "DButton" )
  953. ContentFifty:SetText( "Francis." )
  954. ContentFifty.DoClick = function() frame:Close()
  955. surface.PlaySound( "voice/teengirl/namefrancis09.wav" )
  956.  
  957.  
  958. end
  959. Category2:AddItem( ContentFifty )
  960.  
  961. ContentFiftyone = vgui.Create( "DButton" )
  962. ContentFiftyone:SetText( "Louis." )
  963. ContentFiftyone.DoClick = function() frame:Close()
  964. surface.PlaySound( "voice/teengirl/namelouis08.wav" )
  965.  
  966.  
  967. end
  968. Category2:AddItem( ContentFiftyone )
  969.  
  970. -------------------
  971. --FRANCIS'S VOICE--
  972. -------------------
  973.  
  974. ItemSheetThree = vgui.Create("DCollapsibleCategory", DermaPanel)
  975. ItemSheetThree:SetPos( 25,50 )
  976. ItemSheetThree:SetSize( 200, 50 )
  977. ItemSheetThree:SetExpanded( 1 )
  978. ItemSheetThree:SetLabel( "Francis's Voice" )
  979.  
  980. Category3 = vgui.Create( "DPanelList" )
  981. Category3:SetAutoSize( true )
  982. Category3:SetSpacing( 2 )
  983. Category3:EnableHorizontal( false )
  984. Category3:EnableVerticalScrollbar( true )
  985.  
  986. ItemSheetThree:SetContents( Category3 )
  987.  
  988. ContentOne = vgui.Create( "DButton" )
  989. ContentOne:SetText( "Take this." )
  990. ContentOne.DoClick = function() frame:Close()
  991. surface.PlaySound( "voice/biker/AlertGiveItem01.wav" )
  992.  
  993.  
  994. end
  995. Category3:AddItem( ContentOne )
  996.  
  997. ContentTwo = vgui.Create( "DButton" )
  998. ContentTwo:SetText( "Ready." )
  999. ContentTwo.DoClick = function() frame:Close()
  1000. surface.PlaySound( "voice/biker/answerready01.wav" )
  1001.  
  1002.  
  1003. end
  1004. Category3:AddItem( ContentTwo )
  1005.  
  1006. ContentThree = vgui.Create( "DButton" )
  1007. ContentThree:SetText( "Clear." )
  1008. ContentThree.DoClick = function() frame:Close()
  1009. surface.PlaySound( "voice/biker/AreaClear01.wav" )
  1010.  
  1011.  
  1012. end
  1013. Category3:AddItem( ContentThree )
  1014.  
  1015. ContentFour = vgui.Create( "DButton" )
  1016. ContentFour:SetText( "Ready for this?" )
  1017. ContentFour.DoClick = function() frame:Close()
  1018. surface.PlaySound( "voice/biker/askready01.wav" )
  1019.  
  1020.  
  1021. end
  1022. Category3:AddItem( ContentFour )
  1023.  
  1024. ContentFive = vgui.Create( "DButton" )
  1025. ContentFive:SetText( "Back, back, back!" )
  1026. ContentFive.DoClick = function() frame:Close()
  1027. surface.PlaySound( "voice/biker/backup01.wav" )
  1028.  
  1029.  
  1030. end
  1031. Category3:AddItem( ContentFive )
  1032.  
  1033. ContentSix = vgui.Create( "DButton" )
  1034. ContentSix:SetText( "Backup." )
  1035. ContentSix.DoClick = function() frame:Close()
  1036. surface.PlaySound( "voice/biker/backupquiet01.wav" )
  1037.  
  1038.  
  1039. end
  1040. Category3:AddItem( ContentSix )
  1041.  
  1042. ContentSeven = vgui.Create( "DButton" )
  1043. ContentSeven:SetText( "Choke" )
  1044. ContentSeven.DoClick = function() frame:Close()
  1045. surface.PlaySound( "voice/biker/choke01.wav" )
  1046.  
  1047.  
  1048. end
  1049. Category3:AddItem( ContentSeven )
  1050.  
  1051. ContentEight = vgui.Create( "DButton" )
  1052. ContentEight:SetText( "Lock the damn door." )
  1053. ContentEight.DoClick = function() frame:Close()
  1054. surface.PlaySound( "voice/biker/CloseThedoor01.wav" )
  1055.  
  1056.  
  1057. end
  1058. Category3:AddItem( ContentEight )
  1059.  
  1060. ContentNine = vgui.Create( "DButton" )
  1061. ContentNine:SetText( "Cough" )
  1062. ContentNine.DoClick = function() frame:Close()
  1063. surface.PlaySound( "voice/biker/cough01.wav" )
  1064.  
  1065.  
  1066. end
  1067. Category3:AddItem( ContentNine )
  1068.  
  1069. ContentTen = vgui.Create( "DButton" )
  1070. ContentTen:SetText( "Cover me." )
  1071. ContentTen.DoClick = function() frame:Close()
  1072. surface.PlaySound( "voice/biker/coverme01.wav" )
  1073.  
  1074.  
  1075. end
  1076. Category3:AddItem( ContentTen )
  1077.  
  1078. ContentEleven = vgui.Create( "DButton" )
  1079. ContentEleven:SetText( "Death" )
  1080. ContentEleven.DoClick = function() frame:Close()
  1081. surface.PlaySound( "voice/biker/deathscream01.wav" )
  1082.  
  1083.  
  1084. end
  1085. Category3:AddItem( ContentEleven )
  1086.  
  1087. ContentTwelve = vgui.Create( "DButton" )
  1088. ContentTwelve:SetText( "Two of us left." )
  1089. ContentTwelve.DoClick = function() frame:Close()
  1090. surface.PlaySound( "voice/biker/doubledeathresponse01.wav" )
  1091.  
  1092.  
  1093. end
  1094. Category3:AddItem( ContentTwelve )
  1095.  
  1096. ContentThirteen = vgui.Create( "DButton" )
  1097. ContentThirteen:SetText( "Down in Front!" )
  1098. ContentThirteen.DoClick = function() frame:Close()
  1099. surface.PlaySound( "voice/biker/downinfront01.wav" )
  1100.  
  1101.  
  1102. end
  1103. Category3:AddItem( ContentThirteen )
  1104.  
  1105. ContentFourteen = vgui.Create( "DButton" )
  1106. ContentFourteen:SetText( "I need help, now!" )
  1107. ContentFourteen.DoClick = function() frame:Close()
  1108. surface.PlaySound( "voice/biker/dying01.wav" )
  1109.  
  1110.  
  1111. end
  1112. Category3:AddItem( ContentFourteen )
  1113.  
  1114. ContentFifteen = vgui.Create( "DButton" )
  1115. ContentFifteen:SetText( "Get movin'!" )
  1116. ContentFifteen.DoClick = function() frame:Close()
  1117. surface.PlaySound( "voice/biker/emphaticgo01.wav" )
  1118.  
  1119.  
  1120. end
  1121. Category3:AddItem( ContentFifteen )
  1122.  
  1123. ContentSixteen = vgui.Create( "DButton" )
  1124. ContentSixteen:SetText( "RUN!" )
  1125. ContentSixteen.DoClick = function() frame:Close()
  1126. surface.PlaySound( "voice/biker/emphaticrun01.wav" )
  1127.  
  1128.  
  1129. end
  1130. Category3:AddItem( ContentSixteen )
  1131.  
  1132. ContentSeventeen = vgui.Create( "DButton" )
  1133. ContentSeventeen:SetText( "CRITICAL DAMAGE" )
  1134. ContentSeventeen.DoClick = function() frame:Close()
  1135. surface.PlaySound( "voice/biker/exertioncritical01.wav" )
  1136.  
  1137.  
  1138. end
  1139. Category3:AddItem( ContentSeventeen )
  1140.  
  1141. ContentEighteen = vgui.Create( "DButton" )
  1142. ContentEighteen:SetText( "MAJOR DAMAGE" )
  1143. ContentEighteen.DoClick = function() frame:Close()
  1144. surface.PlaySound( "voice/biker/exertionmajor01.wav" )
  1145.  
  1146.  
  1147. end
  1148. Category3:AddItem( ContentEighteen )
  1149.  
  1150. ContentNineteen = vgui.Create( "DButton" )
  1151. ContentNineteen:SetText( "MINOR DAMAGE" )
  1152. ContentNineteen.DoClick = function() frame:Close()
  1153. surface.PlaySound( "voice/biker/exertionminor01.wav" )
  1154.  
  1155.  
  1156. end
  1157. Category3:AddItem( ContentNineteen )
  1158.  
  1159. ContentTwenty = vgui.Create( "DButton" )
  1160. ContentTwenty:SetText( "Fall Scream" )
  1161. ContentTwenty.DoClick = function() frame:Close()
  1162. surface.PlaySound( "voice/biker/fall01.wav" )
  1163.  
  1164.  
  1165. end
  1166. Category3:AddItem( ContentTwenty )
  1167.  
  1168. ContentTwentyone = vgui.Create( "DButton" )
  1169. ContentTwentyone:SetText( "Oh no!" )
  1170. ContentTwentyone.DoClick = function() frame:Close()
  1171. surface.PlaySound( "voice/biker/fallshort01.wav" )
  1172.  
  1173.  
  1174. end
  1175. Category3:AddItem( ContentTwentyone )
  1176.  
  1177. ContentTwentytwo = vgui.Create( "DButton" )
  1178. ContentTwentytwo:SetText( "We're almost there!" )
  1179. ContentTwentytwo.DoClick = function() frame:Close()
  1180. surface.PlaySound( "voice/biker/Finaleahead01.wav" )
  1181.  
  1182.  
  1183. end
  1184. Category3:AddItem( ContentTwentytwo )
  1185.  
  1186. ContentTwentythree = vgui.Create( "DButton" )
  1187. ContentTwentythree:SetText( "Come on, this way." )
  1188. ContentTwentythree.DoClick = function() frame:Close()
  1189. surface.PlaySound( "voice/biker/followme01.wav" )
  1190.  
  1191.  
  1192. end
  1193. Category3:AddItem( ContentTwentythree )
  1194.  
  1195. ContentTwentyfour = vgui.Create( "DButton" )
  1196. ContentTwentyfour:SetText( "That hurt!" )
  1197. ContentTwentyfour.DoClick = function() frame:Close()
  1198. surface.PlaySound( "voice/biker/friendlyfire01.wav" )
  1199.  
  1200.  
  1201. end
  1202. Category3:AddItem( ContentTwentyfour )
  1203.  
  1204. ContentTwentyfive = vgui.Create( "DButton" )
  1205. ContentTwentyfive:SetText( "Generic Atmosphere Response 2" )
  1206. ContentTwentyfive.DoClick = function() frame:Close()
  1207. surface.PlaySound( "voice/biker/generic03.wav" )
  1208.  
  1209.  
  1210. end
  1211. Category3:AddItem( ContentTwentyfive )
  1212.  
  1213. ContentTwentysix = vgui.Create( "DButton" )
  1214. ContentTwentysix:SetText( "That is uncalled for." )
  1215. ContentTwentysix.DoClick = function() frame:Close()
  1216. surface.PlaySound( "voice/biker/generic04.wav" )
  1217.  
  1218.  
  1219. end
  1220. Category3:AddItem( ContentTwentysix )
  1221.  
  1222. ContentTwentyseven = vgui.Create( "DButton" )
  1223. ContentTwentyseven:SetText( "Generic Atmosphere Response 3" )
  1224. ContentTwentyseven.DoClick = function() frame:Close()
  1225. surface.PlaySound( "voice/biker/generic09.wav" )
  1226.  
  1227.  
  1228. end
  1229. Category3:AddItem( ContentTwentyseven )
  1230.  
  1231. ContentTwentyeight = vgui.Create( "DButton" )
  1232. ContentTwentyeight:SetText( "Generic Atmosphere Response 4" )
  1233. ContentTwentyeight.DoClick = function() frame:Close()
  1234. surface.PlaySound( "voice/biker/generic16.wav" )
  1235.  
  1236.  
  1237. end
  1238. Category3:AddItem( ContentTwentyeight )
  1239.  
  1240. ContentTwentynine = vgui.Create( "DButton" )
  1241. ContentTwentynine:SetText( "Generic Atmosphere Response 5" )
  1242. ContentTwentynine.DoClick = function() frame:Close()
  1243. surface.PlaySound( "voice/biker/generic33.wav" )
  1244.  
  1245.  
  1246. end
  1247. Category3:AddItem( ContentTwentynine )
  1248.  
  1249. ContentThirty = vgui.Create( "DButton" )
  1250. ContentThirty:SetText( "Generic Atmosphere Response 6" )
  1251. ContentThirty.DoClick = function() frame:Close()
  1252. surface.PlaySound( "voice/biker/generic70.wav" )
  1253.  
  1254.  
  1255. end
  1256. Category3:AddItem( ContentThirty )
  1257.  
  1258. ContentThirtyone = vgui.Create( "DButton" )
  1259. ContentThirtyone:SetText( "Generic Atmosphere Response 6 Follow-Up" )
  1260. ContentThirtyone.DoClick = function() frame:Close()
  1261. surface.PlaySound( "voice/biker/Generic68.wav" )
  1262.  
  1263.  
  1264. end
  1265. Category3:AddItem( ContentThirtyone )
  1266.  
  1267. ContentThirtytwo = vgui.Create( "DButton" )
  1268. ContentThirtytwo:SetText( "I don't feel so good." )
  1269. ContentThirtytwo.DoClick = function() frame:Close()
  1270. surface.PlaySound( "voice/biker/goingtodie01.wav" )
  1271.  
  1272.  
  1273. end
  1274. Category3:AddItem( ContentThirtytwo )
  1275.  
  1276. ContentThirtythree = vgui.Create( "DButton" )
  1277. ContentThirtythree:SetText( "Hurts like hell." )
  1278. ContentThirtythree.DoClick = function() frame:Close()
  1279. surface.PlaySound( "voice/biker/goingtodielight04.wav" )
  1280.  
  1281.  
  1282. end
  1283. Category3:AddItem( ContentThirtythree )
  1284.  
  1285. ContentThirtyfour = vgui.Create( "DButton" )
  1286. ContentThirtyfour:SetText( "Grenade!" )
  1287. ContentThirtyfour.DoClick = function() frame:Close()
  1288. surface.PlaySound( "voice/biker/grenade01.wav" )
  1289.  
  1290.  
  1291. end
  1292. Category3:AddItem( ContentThirtyfour )
  1293.  
  1294. ContentThirtyfive = vgui.Create( "DButton" )
  1295. ContentThirtyfive:SetText( "Manager's down for the count." )
  1296. ContentThirtyfive.DoClick = function() frame:Close()
  1297. surface.PlaySound( "voice/biker/griefmanager01.wav" )
  1298.  
  1299.  
  1300. end
  1301. Category3:AddItem( ContentThirtyfive )
  1302.  
  1303. ContentThirtysix = vgui.Create( "DButton" )
  1304. ContentThirtysix:SetText( "Damnit, not Zoey." )
  1305. ContentThirtysix.DoClick = function() frame:Close()
  1306. surface.PlaySound( "voice/biker/griefteengirl02.wav" )
  1307.  
  1308.  
  1309. end
  1310. Category3:AddItem( ContentThirtysix )
  1311.  
  1312. ContentThirtyseven = vgui.Create( "DButton" )
  1313. ContentThirtyseven:SetText( "Bill's gone!" )
  1314. ContentThirtyseven.DoClick = function() frame:Close()
  1315. surface.PlaySound( "voice/biker/griefvet01.wav" )
  1316.  
  1317.  
  1318. end
  1319. Category3:AddItem( ContentThirtyseven )
  1320.  
  1321. ContentThirtyeight = vgui.Create( "DButton" )
  1322. ContentThirtyeight:SetText( "I'm gonna miss that ol' guy." )
  1323. ContentThirtyeight.DoClick = function() frame:Close()
  1324. surface.PlaySound( "voice/biker/griefvet03.wav" )
  1325.  
  1326.  
  1327. end
  1328. Category3:AddItem( ContentThirtyeight )
  1329.  
  1330. ContentThirtynine = vgui.Create( "DButton" )
  1331. ContentThirtynine:SetText( "Help!" )
  1332. ContentThirtynine.DoClick = function() frame:Close()
  1333. surface.PlaySound( "voice/biker/help01.wav" )
  1334.  
  1335.  
  1336. end
  1337. Category3:AddItem( ContentThirtynine )
  1338.  
  1339. ContentFourty = vgui.Create( "DButton" )
  1340. ContentFourty:SetText( "We're gonna make it." )
  1341. ContentFourty.DoClick = function() frame:Close()
  1342. surface.PlaySound( "voice/biker/hurrah07.wav" )
  1343.  
  1344.  
  1345. end
  1346. Category3:AddItem( ContentFourty )
  1347.  
  1348. ContentFourtyone = vgui.Create( "DButton" )
  1349. ContentFourtyone:SetText( "Holy shit, here they come!" )
  1350. ContentFourtyone.DoClick = function() frame:Close()
  1351. surface.PlaySound( "voice/biker/incoming02.wav" )
  1352.  
  1353.  
  1354. end
  1355. Category3:AddItem( ContentFourtyone )
  1356.  
  1357. ContentFourtytwo = vgui.Create( "DButton" )
  1358. ContentFourtytwo:SetText( "Laughter" )
  1359. ContentFourtytwo.DoClick = function() frame:Close()
  1360. surface.PlaySound( "voice/biker/laughter04.wav" )
  1361.  
  1362.  
  1363. end
  1364. Category3:AddItem( ContentFourtytwo )
  1365.  
  1366. ContentFourtythree = vgui.Create( "DButton" )
  1367. ContentFourtythree:SetText( "Over there." )
  1368. ContentFourtythree.DoClick = function() frame:Close()
  1369. surface.PlaySound( "voice/biker/look01.wav" )
  1370.  
  1371.  
  1372. end
  1373. Category3:AddItem( ContentFourtythree )
  1374.  
  1375. ContentFourtyfour = vgui.Create( "DButton" )
  1376. ContentFourtyfour:SetText( "No." )
  1377. ContentFourtyfour.DoClick = function() frame:Close()
  1378. surface.PlaySound( "voice/biker/no01.wav" )
  1379.  
  1380.  
  1381. end
  1382. Category3:AddItem( ContentFourtyfour )
  1383.  
  1384. ContentFourtyfive = vgui.Create( "DButton" )
  1385. ContentFourtyfive:SetText( "Sorry." )
  1386. ContentFourtyfive.DoClick = function() frame:Close()
  1387. surface.PlaySound( "voice/biker/sorry01.wav" )
  1388.  
  1389.  
  1390. end
  1391. Category3:AddItem( ContentFourtyfive )
  1392.  
  1393. ContentFourtysix = vgui.Create( "DButton" )
  1394. ContentFourtysix:SetText( "Thanks, I owe ya." )
  1395. ContentFourtysix.DoClick = function() frame:Close()
  1396. surface.PlaySound( "voice/biker/Thanks09.wav" )
  1397.  
  1398.  
  1399. end
  1400. Category3:AddItem( ContentFourtysix )
  1401.  
  1402. ContentFourtyseven = vgui.Create( "DButton" )
  1403. ContentFourtyseven:SetText( "Thanks, bro." )
  1404. ContentFourtyseven.DoClick = function() frame:Close()
  1405. surface.PlaySound( "voice/biker/Thanks13.wav" )
  1406.  
  1407.  
  1408. end
  1409. Category3:AddItem( ContentFourtyseven )
  1410.  
  1411. ContentFourtyeight = vgui.Create( "DButton" )
  1412. ContentFourtyeight:SetText( "Yeah." )
  1413. ContentFourtyeight.DoClick = function() frame:Close()
  1414. surface.PlaySound( "voice/biker/yes05.wav" )
  1415.  
  1416.  
  1417. end
  1418. Category3:AddItem( ContentFourtyeight )
  1419.  
  1420. ContentFourtynine = vgui.Create( "DButton" )
  1421. ContentFourtynine:SetText( "Bill." )
  1422. ContentFourtynine.DoClick = function() frame:Close()
  1423. surface.PlaySound( "voice/biker/namebill03.wav" )
  1424.  
  1425.  
  1426. end
  1427. Category3:AddItem( ContentFourtynine )
  1428.  
  1429. ContentFifty = vgui.Create( "DButton" )
  1430. ContentFifty:SetText( "Louis." )
  1431. ContentFifty.DoClick = function() frame:Close()
  1432. surface.PlaySound( "voice/biker/namelouis03.wav" )
  1433.  
  1434.  
  1435. end
  1436. Category3:AddItem( ContentFifty )
  1437.  
  1438. ContentFiftyone = vgui.Create( "DButton" )
  1439. ContentFiftyone:SetText( "Zoey." )
  1440. ContentFiftyone.DoClick = function() frame:Close()
  1441. surface.PlaySound( "voice/biker/namezoey03.wav" )
  1442.  
  1443.  
  1444. end
  1445. Category3:AddItem( ContentFiftyone )
  1446.  
  1447. ContentFiftytwo = vgui.Create( "DButton" )
  1448. ContentFiftytwo:SetText( "You look like shit." )
  1449. ContentFiftytwo.DoClick = function() frame:Close()
  1450. surface.PlaySound( "voice/biker/looklikeshit.wav" )
  1451.  
  1452.  
  1453. end
  1454. Category3:AddItem( ContentFiftytwo )
  1455.  
  1456. -------------------
  1457. --LOUIS'S VOICE--
  1458. -------------------
  1459.  
  1460. ItemSheetFour = vgui.Create("DCollapsibleCategory", DermaPanel)
  1461. ItemSheetFour:SetPos( 25,50 )
  1462. ItemSheetFour:SetSize( 200, 50 )
  1463. ItemSheetFour:SetExpanded( 1 )
  1464. ItemSheetFour:SetLabel( "Louis's Voice" )
  1465.  
  1466. Category4 = vgui.Create( "DPanelList" )
  1467. Category4:SetAutoSize( true )
  1468. Category4:SetSpacing( 2 )
  1469. Category4:EnableHorizontal( false )
  1470. Category4:EnableVerticalScrollbar( true )
  1471.  
  1472. ItemSheetFour:SetContents( Category4 )
  1473.  
  1474. ContentOne = vgui.Create( "DButton" )
  1475. ContentOne:SetText( "Take this." )
  1476. ContentOne.DoClick = function() frame:Close()
  1477. surface.PlaySound( "voice/manager/AlertGiveItem01.wav" )
  1478.  
  1479.  
  1480. end
  1481. Category4:AddItem( ContentOne )
  1482.  
  1483. ContentTwo = vgui.Create( "DButton" )
  1484. ContentTwo:SetText( "Ready." )
  1485. ContentTwo.DoClick = function() frame:Close()
  1486. surface.PlaySound( "voice/manager/answerready01.wav" )
  1487.  
  1488.  
  1489. end
  1490. Category4:AddItem( ContentTwo )
  1491.  
  1492. ContentThree = vgui.Create( "DButton" )
  1493. ContentThree:SetText( "Clear." )
  1494. ContentThree.DoClick = function() frame:Close()
  1495. surface.PlaySound( "voice/manager/AreaClear01.wav" )
  1496.  
  1497.  
  1498. end
  1499. Category4:AddItem( ContentThree )
  1500.  
  1501. ContentFour = vgui.Create( "DButton" )
  1502. ContentFour:SetText( "Ready?" )
  1503. ContentFour.DoClick = function() frame:Close()
  1504. surface.PlaySound( "voice/manager/askready01.wav" )
  1505.  
  1506.  
  1507. end
  1508. Category4:AddItem( ContentFour )
  1509.  
  1510. ContentFive = vgui.Create( "DButton" )
  1511. ContentFive:SetText( "Back up!" )
  1512. ContentFive.DoClick = function() frame:Close()
  1513. surface.PlaySound( "voice/manager/backup01.wav" )
  1514.  
  1515.  
  1516. end
  1517. Category4:AddItem( ContentFive )
  1518.  
  1519. ContentSix = vgui.Create( "DButton" )
  1520. ContentSix:SetText( "Back up." )
  1521. ContentSix.DoClick = function() frame:Close()
  1522. surface.PlaySound( "voice/manager/backupquiet01.wav" )
  1523.  
  1524.  
  1525. end
  1526. Category4:AddItem( ContentSix )
  1527.  
  1528. ContentSeven = vgui.Create( "DButton" )
  1529. ContentSeven:SetText( "Choke" )
  1530. ContentSeven.DoClick = function() frame:Close()
  1531. surface.PlaySound( "voice/manager/choke01.wav" )
  1532.  
  1533.  
  1534. end
  1535. Category4:AddItem( ContentSeven )
  1536.  
  1537. ContentEight = vgui.Create( "DButton" )
  1538. ContentEight:SetText( "Lock that door." )
  1539. ContentEight.DoClick = function() frame:Close()
  1540. surface.PlaySound( "voice/manager/CloseThedoor01.wav" )
  1541.  
  1542.  
  1543. end
  1544. Category4:AddItem( ContentEight )
  1545.  
  1546. ContentNine = vgui.Create( "DButton" )
  1547. ContentNine:SetText( "Cough" )
  1548. ContentNine.DoClick = function() frame:Close()
  1549. surface.PlaySound( "voice/manager/cough01.wav" )
  1550.  
  1551.  
  1552. end
  1553. Category4:AddItem( ContentNine )
  1554.  
  1555. ContentTen = vgui.Create( "DButton" )
  1556. ContentTen:SetText( "Cover me." )
  1557. ContentTen.DoClick = function() frame:Close()
  1558. surface.PlaySound( "voice/manager/coverme01.wav" )
  1559.  
  1560.  
  1561. end
  1562. Category4:AddItem( ContentTen )
  1563.  
  1564. ContentEleven = vgui.Create( "DButton" )
  1565. ContentEleven:SetText( "Death" )
  1566. ContentEleven.DoClick = function() frame:Close()
  1567. surface.PlaySound( "voice/manager/deathscream01.wav" )
  1568.  
  1569.  
  1570. end
  1571. Category4:AddItem( ContentEleven )
  1572.  
  1573. ContentTwelve = vgui.Create( "DButton" )
  1574. ContentTwelve:SetText( "Double Death Response." )
  1575. ContentTwelve.DoClick = function() frame:Close()
  1576. surface.PlaySound( "voice/manager/doubledeathresponse01.wav" )
  1577.  
  1578.  
  1579. end
  1580. Category4:AddItem( ContentTwelve )
  1581.  
  1582. ContentThirteen = vgui.Create( "DButton" )
  1583. ContentThirteen:SetText( "Down in Front!" )
  1584. ContentThirteen.DoClick = function() frame:Close()
  1585. surface.PlaySound( "voice/manager/downinfront01.wav" )
  1586.  
  1587.  
  1588. end
  1589. Category4:AddItem( ContentThirteen )
  1590.  
  1591. ContentFourteen = vgui.Create( "DButton" )
  1592. ContentFourteen:SetText( "Guys, I need help now!" )
  1593. ContentFourteen.DoClick = function() frame:Close()
  1594. surface.PlaySound( "voice/manager/dying01.wav" )
  1595.  
  1596.  
  1597. end
  1598. Category4:AddItem( ContentFourteen )
  1599.  
  1600. ContentFifteen = vgui.Create( "DButton" )
  1601. ContentFifteen:SetText( "Go go go!" )
  1602. ContentFifteen.DoClick = function() frame:Close()
  1603. surface.PlaySound( "voice/manager/emphaticgo01.wav" )
  1604.  
  1605.  
  1606. end
  1607. Category4:AddItem( ContentFifteen )
  1608.  
  1609. ContentSixteen = vgui.Create( "DButton" )
  1610. ContentSixteen:SetText( "Let's get the HELL outta here!" )
  1611. ContentSixteen.DoClick = function() frame:Close()
  1612. surface.PlaySound( "voice/manager/emphaticrun01.wav" )
  1613.  
  1614.  
  1615. end
  1616. Category4:AddItem( ContentSixteen )
  1617.  
  1618. ContentSeventeen = vgui.Create( "DButton" )
  1619. ContentSeventeen:SetText( "CRITICAL DAMAGE" )
  1620. ContentSeventeen.DoClick = function() frame:Close()
  1621. surface.PlaySound( "voice/manager/exertioncritical01.wav" )
  1622.  
  1623.  
  1624. end
  1625. Category4:AddItem( ContentSeventeen )
  1626.  
  1627. ContentEighteen = vgui.Create( "DButton" )
  1628. ContentEighteen:SetText( "MAJOR DAMAGE" )
  1629. ContentEighteen.DoClick = function() frame:Close()
  1630. surface.PlaySound( "voice/manager/exertionmajor01.wav" )
  1631.  
  1632.  
  1633. end
  1634. Category4:AddItem( ContentEighteen )
  1635.  
  1636. ContentNineteen = vgui.Create( "DButton" )
  1637. ContentNineteen:SetText( "MINOR DAMAGE" )
  1638. ContentNineteen.DoClick = function() frame:Close()
  1639. surface.PlaySound( "voice/manager/exertionminor01.wav" )
  1640.  
  1641.  
  1642. end
  1643. Category4:AddItem( ContentNineteen )
  1644.  
  1645. ContentTwenty = vgui.Create( "DButton" )
  1646. ContentTwenty:SetText( "Fall Scream" )
  1647. ContentTwenty.DoClick = function() frame:Close()
  1648. surface.PlaySound( "voice/manager/fall01.wav" )
  1649.  
  1650.  
  1651. end
  1652. Category4:AddItem( ContentTwenty )
  1653.  
  1654. ContentTwentyone = vgui.Create( "DButton" )
  1655. ContentTwentyone:SetText( "Whoa!" )
  1656. ContentTwentyone.DoClick = function() frame:Close()
  1657. surface.PlaySound( "voice/manager/fallshort01.wav" )
  1658.  
  1659.  
  1660. end
  1661. Category4:AddItem( ContentTwentyone )
  1662.  
  1663. ContentTwentytwo = vgui.Create( "DButton" )
  1664. ContentTwentytwo:SetText( "We're almost outta here!" )
  1665. ContentTwentytwo.DoClick = function() frame:Close()
  1666. surface.PlaySound( "voice/manager/Finaleahead01.wav" )
  1667.  
  1668.  
  1669. end
  1670. Category4:AddItem( ContentTwentytwo )
  1671.  
  1672. ContentTwentythree = vgui.Create( "DButton" )
  1673. ContentTwentythree:SetText( "Come on, this way." )
  1674. ContentTwentythree.DoClick = function() frame:Close()
  1675. surface.PlaySound( "voice/manager/followme01.wav" )
  1676.  
  1677.  
  1678. end
  1679. Category4:AddItem( ContentTwentythree )
  1680.  
  1681. ContentTwentyfour = vgui.Create( "DButton" )
  1682. ContentTwentyfour:SetText( "Hey man, that hurt!" )
  1683. ContentTwentyfour.DoClick = function() frame:Close()
  1684. surface.PlaySound( "voice/manager/friendlyfire01.wav" )
  1685.  
  1686.  
  1687. end
  1688. Category4:AddItem( ContentTwentyfour )
  1689.  
  1690. ContentTwentyfive = vgui.Create( "DButton" )
  1691. ContentTwentyfive:SetText( "Oh, cool." )
  1692. ContentTwentyfive.DoClick = function() frame:Close()
  1693. surface.PlaySound( "voice/manager/generic02.wav" )
  1694.  
  1695.  
  1696. end
  1697. Category4:AddItem( ContentTwentyfive )
  1698.  
  1699. ContentTwentysix = vgui.Create( "DButton" )
  1700. ContentTwentysix:SetText( "Excuse me." )
  1701. ContentTwentysix.DoClick = function() frame:Close()
  1702. surface.PlaySound( "voice/manager/generic14.wav" )
  1703.  
  1704.  
  1705. end
  1706. Category4:AddItem( ContentTwentysix )
  1707.  
  1708. ContentTwentyseven = vgui.Create( "DButton" )
  1709. ContentTwentyseven:SetText( "Generic Atmosphere Response 2" )
  1710. ContentTwentyseven.DoClick = function() frame:Close()
  1711. surface.PlaySound( "voice/manager/generic16.wav" )
  1712.  
  1713.  
  1714. end
  1715. Category4:AddItem( ContentTwentyseven )
  1716.  
  1717. ContentTwentyeight = vgui.Create( "DButton" )
  1718. ContentTwentyeight:SetText( "Generic Atmosphere Response 3" )
  1719. ContentTwentyeight.DoClick = function() frame:Close()
  1720. surface.PlaySound( "voice/manager/generic20.wav" )
  1721.  
  1722.  
  1723. end
  1724. Category4:AddItem( ContentTwentyeight )
  1725.  
  1726. ContentTwentynine = vgui.Create( "DButton" )
  1727. ContentTwentynine:SetText( "Generic Atmosphere Response 5" )
  1728. ContentTwentynine.DoClick = function() frame:Close()
  1729. surface.PlaySound( "voice/manager/generic33.wav" )
  1730.  
  1731.  
  1732. end
  1733. Category4:AddItem( ContentTwentynine )
  1734.  
  1735. ContentThirty = vgui.Create( "DButton" )
  1736. ContentThirty:SetText( "Generic Atmosphere Response 6" )
  1737. ContentThirty.DoClick = function() frame:Close()
  1738. surface.PlaySound( "voice/manager/generic26.wav" )
  1739.  
  1740.  
  1741. end
  1742. Category4:AddItem( ContentThirty )
  1743.  
  1744. ContentThirtyone = vgui.Create( "DButton" )
  1745. ContentThirtyone:SetText( "Not a time to be a hero." )
  1746. ContentThirtyone.DoClick = function() frame:Close()
  1747. surface.PlaySound( "voice/manager/Generic01.wav" )
  1748.  
  1749.  
  1750. end
  1751. Category4:AddItem( ContentThirtyone )
  1752.  
  1753. ContentThirtytwo = vgui.Create( "DButton" )
  1754. ContentThirtytwo:SetText( "I don't feel so good." )
  1755. ContentThirtytwo.DoClick = function() frame:Close()
  1756. surface.PlaySound( "voice/manager/goingtodie01.wav" )
  1757.  
  1758.  
  1759. end
  1760. Category4:AddItem( ContentThirtytwo )
  1761.  
  1762. ContentThirtythree = vgui.Create( "DButton" )
  1763. ContentThirtythree:SetText( "Man, this hurts." )
  1764. ContentThirtythree.DoClick = function() frame:Close()
  1765. surface.PlaySound( "voice/manager/goingtodielight03.wav" )
  1766.  
  1767.  
  1768. end
  1769. Category4:AddItem( ContentThirtythree )
  1770.  
  1771. ContentThirtyfour = vgui.Create( "DButton" )
  1772. ContentThirtyfour:SetText( "Grenade!" )
  1773. ContentThirtyfour.DoClick = function() frame:Close()
  1774. surface.PlaySound( "voice/manager/grenade01.wav" )
  1775.  
  1776.  
  1777. end
  1778. Category4:AddItem( ContentThirtyfour )
  1779.  
  1780. ContentThirtyfive = vgui.Create( "DButton" )
  1781. ContentThirtyfive:SetText( "FRANCIS! NO!" )
  1782. ContentThirtyfive.DoClick = function() frame:Close()
  1783. surface.PlaySound( "voice/manager/griefbiker01.wav" )
  1784.  
  1785.  
  1786. end
  1787. Category4:AddItem( ContentThirtyfive )
  1788.  
  1789. ContentThirtysix = vgui.Create( "DButton" )
  1790. ContentThirtysix:SetText( "This is bad, she's dead!" )
  1791. ContentThirtysix.DoClick = function() frame:Close()
  1792. surface.PlaySound( "voice/manager/grieffemalegeneric02.wav" )
  1793.  
  1794.  
  1795. end
  1796. Category4:AddItem( ContentThirtysix )
  1797.  
  1798. ContentThirtyseven = vgui.Create( "DButton" )
  1799. ContentThirtyseven:SetText( "Zoey! God damnit!" )
  1800. ContentThirtyseven.DoClick = function() frame:Close()
  1801. surface.PlaySound( "voice/manager/griefteengirl02.wav" )
  1802.  
  1803.  
  1804. end
  1805. Category4:AddItem( ContentThirtyseven )
  1806.  
  1807. ContentThirtyeight = vgui.Create( "DButton" )
  1808. ContentThirtyeight:SetText( "Bill, Bill! NO!" )
  1809. ContentThirtyeight.DoClick = function() frame:Close()
  1810. surface.PlaySound( "voice/manager/griefvet04.wav" )
  1811.  
  1812.  
  1813. end
  1814. Category4:AddItem( ContentThirtyeight )
  1815.  
  1816. ContentThirtynine = vgui.Create( "DButton" )
  1817. ContentThirtynine:SetText( "Help!" )
  1818. ContentThirtynine.DoClick = function() frame:Close()
  1819. surface.PlaySound( "voice/manager/help01.wav" )
  1820.  
  1821.  
  1822. end
  1823. Category4:AddItem( ContentThirtynine )
  1824.  
  1825. ContentFourty = vgui.Create( "DButton" )
  1826. ContentFourty:SetText( "We gonna make it." )
  1827. ContentFourty.DoClick = function() frame:Close()
  1828. surface.PlaySound( "voice/manager/hurrah07.wav" )
  1829.  
  1830.  
  1831. end
  1832. Category4:AddItem( ContentFourty )
  1833.  
  1834. ContentFourtyone = vgui.Create( "DButton" )
  1835. ContentFourtyone:SetText( "They're coming!" )
  1836. ContentFourtyone.DoClick = function() frame:Close()
  1837. surface.PlaySound( "voice/manager/incoming02.wav" )
  1838.  
  1839.  
  1840. end
  1841. Category4:AddItem( ContentFourtyone )
  1842.  
  1843. ContentFourtytwo = vgui.Create( "DButton" )
  1844. ContentFourtytwo:SetText( "Laughter" )
  1845. ContentFourtytwo.DoClick = function() frame:Close()
  1846. surface.PlaySound( "voice/manager/laughter04.wav" )
  1847.  
  1848.  
  1849. end
  1850. Category4:AddItem( ContentFourtytwo )
  1851.  
  1852. ContentFourtythree = vgui.Create( "DButton" )
  1853. ContentFourtythree:SetText( "Over there." )
  1854. ContentFourtythree.DoClick = function() frame:Close()
  1855. surface.PlaySound( "voice/manager/look01.wav" )
  1856.  
  1857.  
  1858. end
  1859. Category4:AddItem( ContentFourtythree )
  1860.  
  1861. ContentFourtyfour = vgui.Create( "DButton" )
  1862. ContentFourtyfour:SetText( "No." )
  1863. ContentFourtyfour.DoClick = function() frame:Close()
  1864. surface.PlaySound( "voice/manager/no08.wav" )
  1865.  
  1866.  
  1867. end
  1868. Category4:AddItem( ContentFourtyfour )
  1869.  
  1870. ContentFourtyfive = vgui.Create( "DButton" )
  1871. ContentFourtyfive:SetText( "Sorry." )
  1872. ContentFourtyfive.DoClick = function() frame:Close()
  1873. surface.PlaySound( "voice/manager/sorry02.wav" )
  1874.  
  1875.  
  1876. end
  1877. Category4:AddItem( ContentFourtyfive )
  1878.  
  1879. ContentFourtysix = vgui.Create( "DButton" )
  1880. ContentFourtysix:SetText( "Thanks, I owe you one." )
  1881. ContentFourtysix.DoClick = function() frame:Close()
  1882. surface.PlaySound( "voice/manager/Thanks03.wav" )
  1883.  
  1884.  
  1885. end
  1886. Category4:AddItem( ContentFourtysix )
  1887.  
  1888. ContentFourtyseven = vgui.Create( "DButton" )
  1889. ContentFourtyseven:SetText( "Thanks, I owe you a big one." )
  1890. ContentFourtyseven.DoClick = function() frame:Close()
  1891. surface.PlaySound( "voice/manager/Thanks08.wav" )
  1892.  
  1893.  
  1894. end
  1895. Category4:AddItem( ContentFourtyseven )
  1896.  
  1897. ContentFourtyeight = vgui.Create( "DButton" )
  1898. ContentFourtyeight:SetText( "Yeah." )
  1899. ContentFourtyeight.DoClick = function() frame:Close()
  1900. surface.PlaySound( "voice/manager/yes02.wav" )
  1901.  
  1902.  
  1903. end
  1904. Category4:AddItem( ContentFourtyeight )
  1905.  
  1906. ContentFourtynine = vgui.Create( "DButton" )
  1907. ContentFourtynine:SetText( "Francis." )
  1908. ContentFourtynine.DoClick = function() frame:Close()
  1909. surface.PlaySound( "voice/manager/namefrancis04.wav" )
  1910.  
  1911.  
  1912. end
  1913. Category4:AddItem( ContentFourtynine )
  1914.  
  1915. ContentFifty = vgui.Create( "DButton" )
  1916. ContentFifty:SetText( "Zoey." )
  1917. ContentFifty.DoClick = function() frame:Close()
  1918. surface.PlaySound( "voice/manager/namezoey04.wav" )
  1919.  
  1920.  
  1921. end
  1922. Category4:AddItem( ContentFifty )
  1923.  
  1924. ContentFiftyone = vgui.Create( "DButton" )
  1925. ContentFiftyone:SetText( "Bill." )
  1926. ContentFiftyone.DoClick = function() frame:Close()
  1927. surface.PlaySound( "voice/manager/namebill04.wav" )
  1928.  
  1929.  
  1930. end
  1931. Category4:AddItem( ContentFiftyone )
  1932.  
  1933.  
  1934.  
  1935. PropertySheet:AddSheet("Bill", ItemSheetOne, "gui/silkicons/sound", false, false, "Bill chat")
  1936.  
  1937. PropertySheet:AddSheet("Zoey", ItemSheetTwo, "gui/silkicons/sound", false, false, "Zoey chat")
  1938.  
  1939. PropertySheet:AddSheet("Francis", ItemSheetThree, "gui/silkicons/sound", false, false, "Francis chat")
  1940.  
  1941. PropertySheet:AddSheet("Louis", ItemSheetFour, "gui/silkicons/sound", false, false, "Louis chat")
  1942.  
  1943. end
  1944. concommand.Add( "vc_start", vc_sound )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement