einbroch.txt 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972
  1. //===== rAthena Script =======================================
  2. //= Einbroch Town
  3. //===== By: ==================================================
  4. //= Everybody mentioned in the comments
  5. //===== Current Version: =====================================
  6. //= 1.7
  7. //===== Compatible With: =====================================
  8. //= rAthena Project
  9. //===== Description: =========================================
  10. //= Einbroch Town Script
  11. //===== Additional Comments: =================================
  12. //= 0.2 Added some NPCs [MasterOfMuppets]
  13. //= 0.3 Added a few npcs by reddozen [MasterOfMuppets]
  14. //= 0.4 Added a crappy quest, have fun guys... [MasterOfMuppets]
  15. //= 0.4a Added exp bonus for the factory quest, borrowed from a Korean fansite.
  16. //= 0.4b Added missing close [Komurka]
  17. //= 0.5 Added Temporal Locations of Gunslinger Job Change map.
  18. //= Info provided by RockmanEXE [erKURITA]
  19. //= 0.6 Implemented a crap quest [MasterOfMuppets]
  20. //= 0.7 Implemented an inn NPC [MasterOfMuppets]
  21. //= 0.8 Implemented the Shinokas quest, thanks to [MasterOfMuppets]
  22. //= Dj-Yhn for scripting it.
  23. //= 0.9 Removed Duplicates [Silent]
  24. //= 1.0 Implemented the Lover's quest. [MasterOfMuppets]
  25. //= 1.1 Split quests into quests/cities_einbroch.txt [Evera]
  26. //= 1.2 Split more quests into above file [Evera]
  27. //= 1.3 Added (finally) the Garrison quest npc [erKURITA]
  28. //= 1.4 Implemented the polution script. [MasterOfMuppets]
  29. //= 1.5 Updated Hotel Employee to work with Airship Ticket Quest [Samuray22]
  30. //= 1.6 Optimized several NPCs [DZeroX]
  31. //= 1.7 Replaced outdated variable with getarg. [L0ne_W0lf]
  32. //= 1.8 Fixed Occurances of PcName. [L0ne_W0lf]
  33. //============================================================
  34. einbroch,218,198,5 script Mark#ein 855,{
  35. .@npc_name$ = strnpcinfo(1);
  36. mes "["+ .@npc_name$ +"]";
  37. mes "Good day~";
  38. mes "I'm "+ .@npc_name$ +", your";
  39. mes "guide to exploring";
  40. mes "the Einbroch Tower.";
  41. next;
  42. mes "["+ .@npc_name$ +"]";
  43. mes "Einbroch Tower offers";
  44. mes "the best view of our city";
  45. mes "and it's a great place to";
  46. mes "meet with friends or take";
  47. mes "a date. The Einbroch Tower";
  48. mes "admission fee is 10 zeny.";
  49. next;
  50. mes "["+ .@npc_name$ +"]";
  51. mes "Right now, we're offering";
  52. mes "a special promotion called";
  53. mes "the Apple Combo Set for only";
  54. mes "20 zeny. This set includes";
  55. mes "Einbroch Tower admission";
  56. mes "and an Apple to snack on.";
  57. next;
  58. switch(select("Tower Admission Only:Apple Combo Set:Cancel")) {
  59. case 1:
  60. if (Zeny < 10) {
  61. mes "["+ .@npc_name$ +"]";
  62. mes "I'm sorry, but you";
  63. mes "don't have enough";
  64. mes "zeny. The Einbroch";
  65. mes "Tower Admission";
  66. mes "fee is 10 zeny.";
  67. close;
  68. }
  69. else {
  70. mes "["+ .@npc_name$ +"]";
  71. mes "Thank you for";
  72. mes "using our services.";
  73. mes "Let me guide you to";
  74. mes "the tower right away.";
  75. set Zeny, Zeny-10;
  76. close2;
  77. warp "einbroch",181,196;
  78. end;
  79. }
  80. case 2:
  81. if (Zeny < 20) {
  82. mes "["+ .@npc_name$ +"]";
  83. mes "I'm sorry, but you don't";
  84. mes "have enough zeny. The";
  85. mes "Apple Combo Set is 20 zeny.";
  86. close;
  87. }
  88. else {
  89. mes "["+ .@npc_name$ +"]";
  90. mes "Before I guide you to";
  91. mes "the tower, let me check";
  92. mes "your status to insure";
  93. mes "your safety before I give";
  94. mes "you the Apple Combo Set.";
  95. next;
  96. if (checkweight(512,1)) {
  97. mes "["+ .@npc_name$ +"]";
  98. mes "Thank you for";
  99. mes "using our services.";
  100. mes "Let me guide you to";
  101. mes "the tower right away.";
  102. set Zeny, Zeny-20;
  103. getitem 512,1; //Apple
  104. close2;
  105. warp "einbroch",174,204;
  106. end;
  107. }
  108. else {
  109. mes "["+ .@npc_name$ +"]";
  110. mes "I'm sorry, but you're carrying";
  111. mes "too many items with you. Please store some of your things in your Kafra Storage before purchasing";
  112. mes "the Apple Combo Set.";
  113. close;
  114. }
  115. }
  116. case 3:
  117. mes "["+ .@npc_name$ +"]";
  118. mes "I see.";
  119. mes "Feel free to";
  120. mes "come back any";
  121. mes "time. Thank you.";
  122. close;
  123. }
  124. }
  125. einbroch,175,196,5 script Morei#ein 854,{
  126. mes "[Morei]";
  127. mes "Greetings,";
  128. mes "I am Morei,";
  129. mes "Assistant Guide";
  130. mes "of Einbroch Tower.";
  131. next;
  132. mes "[Morei]";
  133. mes "If you wish to return";
  134. mes "to the ground floor,";
  135. mes "please let me know.";
  136. mes "Would you like to go";
  137. mes "back to ground level?";
  138. next;
  139. switch(select("Yes.:No.")) {
  140. case 1:
  141. mes "[Morei]";
  142. mes "I see.";
  143. mes "Let me lead you";
  144. mes "to the ground floor.";
  145. mes "Thank you for using";
  146. mes "our services.";
  147. close2;
  148. switch(rand(1,3)) {
  149. case 1:
  150. warp "einbroch",170,229;
  151. end;
  152. case 2:
  153. warp "einbroch",216,188;
  154. end;
  155. case 3:
  156. warp "einbroch",178,167;
  157. end;
  158. }
  159. case 2:
  160. mes "[Morei]";
  161. mes "I see.";
  162. mes "I hope you";
  163. mes "enjoy your time";
  164. mes "in Einbroch Tower.";
  165. close;
  166. }
  167. }
  168. einbroch,173,229,5 duplicate(Mark#ein) Oberu#ein 855
  169. einbroch,176,172,5 duplicate(Mark#ein) Khemko#ein 855
  170. einbroch,232,272,3 script Train Station Staff#ein1::EinbrochTrain 852,{
  171. mes "[Staff]";
  172. mes "Welcome to";
  173. mes "the Train Station.";
  174. mes "Trains to Einbech";
  175. mes "are always running";
  176. mes "so if you miss one,";
  177. mes "it's no problem.";
  178. next;
  179. mes "[Staff]";
  180. mes "The fare to board the";
  181. mes "train that runs the Einbroch";
  182. mes "to Einbech line is 200 zeny.";
  183. mes "Would you like to buy a ticket?";
  184. next;
  185. switch(select("Yes.:No.:About the Environment...")) {
  186. case 1:
  187. if (Zeny > 199) {
  188. mes "[Staff]";
  189. mes "Thank you";
  190. mes "very much.";
  191. mes "Have a safe trip.";
  192. mes "^333333*Ahem*^000000 All aboard!";
  193. close2;
  194. set Zeny, Zeny-200;
  195. warp "einbech",43,215;
  196. end;
  197. }
  198. else {
  199. mes "[Staff]";
  200. mes "I'm sorry, but this";
  201. mes "isn't enough zeny";
  202. mes "to pay the train fare.";
  203. close;
  204. }
  205. case 2:
  206. mes "[Staff]";
  207. mes "Very well, then.";
  208. mes "Please enjoy your";
  209. mes "stay in Einbroch.";
  210. close;
  211. case 3:
  212. mes "[Staff]";
  213. mes "Einbroch is infamous for";
  214. mes "its air pollution, no doubt";
  215. mes "caused by the industrial";
  216. mes "facilities located here.";
  217. mes "It's really horrible...";
  218. next;
  219. mes "[Staff]";
  220. mes "Sometimes the air pollution";
  221. mes "gets so bad that it becomes";
  222. mes "hard to breathe. If you hear";
  223. mes "the Einbroch Smog Alert, you";
  224. mes "should find shelter immediately!";
  225. close;
  226. }
  227. }
  228. einbroch,252,301,3 duplicate(EinbrochTrain) Train Station Staff#ein2 852
  229. einbroch,259,326,3 script Leslie#ein_1 846,{
  230. mes "[Leslie]";
  231. mes "^666666*Cough cough!*^000000";
  232. mes "Laaaand sakes!";
  233. next;
  234. mes "[Leslie]";
  235. mes "An old woman like me";
  236. mes "can't breathe this air! How";
  237. mes "do people even live in all this";
  238. mes "smog? Sure, the air in Einbech";
  239. mes "isn't pristine, but the air here in Einbroch is much worse! ^333333*Cough~!*^000000";
  240. next;
  241. mes "[Leslie]";
  242. mes "I hate coming here";
  243. mes "sometimes! The air is";
  244. mes "totally polluted and this";
  245. mes "city is full of stuck up";
  246. mes "pricks! But they sell stuff";
  247. mes "here I can't buy back home...";
  248. close;
  249. }
  250. einbroch,236,191,3 script Tan#ein 855,{
  251. mes "[Tan]";
  252. mes "All the factories";
  253. mes "here in Einbroch are";
  254. mes "causing a serious air";
  255. mes "pollution problem.";
  256. next;
  257. mes "[Tan]";
  258. mes "I'm an Airship engineer and";
  259. mes "everyday, all day long, I deal";
  260. mes "with oil stains and all sorts";
  261. mes "of pollutants. I'm surprised";
  262. mes "I haven't gotten sick yet...";
  263. next;
  264. mes "[Tan]";
  265. mes "Still, I try to be careful";
  266. mes "when I can. Whenever I go";
  267. mes "out into the city's red fog,";
  268. mes "I always wear my Flu Mask.";
  269. mes "If you'll be here for a while,";
  270. mes "you should carry one with you.";
  271. close;
  272. }
  273. einbroch,228,121,5 script Little Toby#ein-1 855,{
  274. mes "[Little Toby]";
  275. mes "Excuse me...";
  276. mes "But I'm lost!";
  277. mes "I can't find my";
  278. mes "mom or dad!";
  279. next;
  280. mes "[Little Toby]";
  281. mes "A-am I at the Airport?!";
  282. mes "My parents are supposed";
  283. mes "to come get me, but I still";
  284. mes "haven't found them! We just";
  285. mes "moved here, so I don't know";
  286. mes "where anything is!";
  287. next;
  288. mes "[Little Toby]";
  289. mes "W-wait!";
  290. mes "Where are you";
  291. mes "going?! Don't leave";
  292. mes "me, I'm all alone...!";
  293. close;
  294. }
  295. einbroch,40,116,1 script Airship Engineer#ein-1 855,{
  296. mes "[Airship Engineer]";
  297. mes "H-hey! Don't";
  298. mes "touch my precious";
  299. mes "Burielle! I just finished";
  300. mes "her tune-up and now she's";
  301. mes "sleeping! J-just step away!";
  302. next;
  303. switch(select("Who's Burielle?:Sorry about That.")) {
  304. case 1:
  305. mes "[Airship Engineer]";
  306. mes "Burielle is the prettiest";
  307. mes "model among all the Airships";
  308. mes "made within the last ten years!";
  309. mes "She might be grounded now, but";
  310. mes "with my healing hands, she'll";
  311. mes "conquer the skies again!";
  312. next;
  313. switch(select("Ah~:Uh huh...")) {
  314. case 1:
  315. mes "["+strcharinfo(0)+"]";
  316. mes "Ah~";
  317. mes "I see, so you're";
  318. mes "working on restoring";
  319. mes "this magnificent specimen";
  320. mes "of an Airship. Best of luck~";
  321. next;
  322. mes "[Airship Engineer]";
  323. mes "Yeah. I'd appreciate";
  324. mes "it if you'd just be careful.";
  325. mes "I've put a lot of love into";
  326. mes "fixing up Burielle...";
  327. close;
  328. case 2:
  329. mes "["+strcharinfo(0)+"]";
  330. mes "Uh huh...";
  331. mes "Right. For a second";
  332. mes "there, I thought you were";
  333. mes "talking about a person, but";
  334. mes "then I also assumed that you";
  335. mes "weren't, you know, a nutcase.";
  336. next;
  337. mes "["+strcharinfo(0)+"]";
  338. mes "Oh, did you say,";
  339. mes "''prettiest model?''";
  340. mes "All Airships look the";
  341. mes "same to me, this one";
  342. mes "ain't special at all. You've";
  343. mes "gone loony tunes, paley boy.";
  344. next;
  345. emotion ET_FRET;
  346. mes "[Airship Engineer]";
  347. mes "Wh-what...?!";
  348. close;
  349. }
  350. case 2:
  351. mes "[Airship Engineer]";
  352. mes "Well, at least you know";
  353. mes "what you did wrong. Now";
  354. mes "quit disturbing her and git!";
  355. close;
  356. }
  357. }
  358. einbroch,294,312,3 script Centzu#ein 854,{
  359. mes "[Centzu]";
  360. mes "I've lived here for";
  361. mes "a long time and I see";
  362. mes "that this huge city is still";
  363. mes "growing bigger everyday.";
  364. next;
  365. mes "[Centzu]";
  366. mes "How did Einbroch get so";
  367. mes "huge so quickly? I still can't";
  368. mes "believe there's been this much";
  369. mes "development. Well, I suppose";
  370. mes "it's not my concern. Nothing";
  371. mes "I do will make a difference... ";
  372. next;
  373. mes "[Centzu]";
  374. mes "Even though such";
  375. mes "rapid industrialization";
  376. mes "can't be good for the";
  377. mes "environment or the people,";
  378. mes "I'll just sit back, watch what";
  379. mes "happens and just enjoy life...";
  380. close;
  381. }
  382. einbroch,232,255,5 script Khowropher#ein 847,{
  383. mes "[Khowropher]";
  384. mes "^666666*Cough cough*^000000";
  385. mes "Jiminy! The air here";
  386. mes "is so thick and grimy!";
  387. mes "And it's worse for us old";
  388. mes "people with breathing";
  389. mes "problems! ^333333*Haaack!*^000000";
  390. next;
  391. mes "[Khowropher]";
  392. mes "I don't care if they keep";
  393. mes "building more and more";
  394. mes "factories and homes in this";
  395. mes "town. Still, I'd like to spend";
  396. mes "the rest of my life somewhere";
  397. mes "quiet and with clean air...";
  398. next;
  399. mes "[Khowropher]";
  400. mes "Then again, Einbroch is my";
  401. mes "hometown and I can't just up";
  402. mes "and leave. I suppose it's my";
  403. mes "fate to suffer from this foul air until the day I die. ^666666*Sigh...*^000000";
  404. close;
  405. }
  406. einbroch,143,109,5 script Khetine#ein 855,{
  407. mes "[Khetine]";
  408. mes "Lately, there's been";
  409. mes "talk about this empty";
  410. mes "building downtown that's";
  411. mes "been converted into some";
  412. mes "sort of mysterious facility.";
  413. next;
  414. mes "[Khetine]";
  415. mes "It all seems pretty";
  416. mes "shady, but I guess it's";
  417. mes "not really my job to know";
  418. mes "about that. I mean, if it";
  419. mes "doesn't affect me, why";
  420. mes "should I be concerned?";
  421. close;
  422. }
  423. einbroch,229,149,3 script Sleik#ein 854,{
  424. mes "[Sleik]";
  425. mes "Surprisingly, we have";
  426. mes "a Train Station that everyone";
  427. mes "has been calling a victory for";
  428. mes "science. I mean, shouldn't we";
  429. mes "be more amazed by the Airship?";
  430. next;
  431. mes "[Sleik]";
  432. mes "Now, if you want to know";
  433. mes "where the train actually goes,";
  434. mes "I wouldn't be able to tell you.";
  435. mes "After all, I never rode it. But";
  436. mes "still, I guess having our own";
  437. mes "Train Station is a good thing.";
  438. close;
  439. }
  440. airport,174,41,6 script Young Man#air 99,{
  441. mes "[Runnan]";
  442. mes "...And that's why";
  443. mes "I travel around the";
  444. mes "globe. My bosses have";
  445. mes "a keen eye for the most";
  446. mes "exotic goods, so I acquire";
  447. mes "them and make deliveries.";
  448. next;
  449. mes "[Runnan]";
  450. mes "There even was a time";
  451. mes "when they had me collect";
  452. mes "Jellopy, though that stuff is";
  453. mes "pretty common nowadays.";
  454. mes "Now that I think about it, why";
  455. mes "did they need so much stuff?";
  456. close;
  457. }
  458. airport,176,41,4 script Old Man#air 88,{
  459. mes "[Zhen Lan]";
  460. mes "Now, I hear that the";
  461. mes "monsters around here";
  462. mes "carry around some ore";
  463. mes "that dazzles with a sublimely";
  464. mes "beautiful light. Neat, huh?";
  465. next;
  466. mes "[Zhen Lan]";
  467. mes "These ores are a great";
  468. mes "material to use in making";
  469. mes "flower vases. My friend, who";
  470. mes "happens to be a doll maker,";
  471. mes "told me that. He makes these dolls using all sorts of materials.";
  472. next;
  473. mes "[Zhen Lan]";
  474. mes "He fashions them out of";
  475. mes "Well-Tanned Leather, stuffs";
  476. mes "them with Bird Feathers, and";
  477. mes "uses Cyfar or Zargon to make";
  478. mes "the eyes. He even uses a Jellopy at the bottom to balance the doll.";
  479. next;
  480. mes "[Zhen Lan]";
  481. mes "I guess that goes to show";
  482. mes "that things that seem useless";
  483. mes "might actually be handy in some";
  484. mes "way. So don't worry about having too much stuff. Sooner or later, it might be useful to someone.";
  485. close;
  486. }
  487. ein_in01,113,211,3 script Teinz#ein 851,{
  488. mes "[Teinz]";
  489. mes "If you just pay me money,";
  490. mes "I'll be your slave! There's";
  491. mes "nothing I won't do! Anything";
  492. mes "is fair game. Hell, I'll get buck naked if you pay me enough.";
  493. next;
  494. mes "[Teinz]";
  495. mes "If you pay me what I'm";
  496. mes "worth, I'll work hard at";
  497. mes "any task you set me to.";
  498. mes "Sure, mining's rough, but";
  499. mes "as long as the zeny's coming";
  500. mes "in, I'm happy. Heh heh heh~";
  501. close;
  502. }
  503. ein_in01,48,220,5 script Lowe#ein 851,{
  504. mes "[Lowe]";
  505. mes "...";
  506. mes "......";
  507. next;
  508. mes "[Lowe]";
  509. mes "...";
  510. mes "......";
  511. mes ".........";
  512. next;
  513. mes "[Lowe]";
  514. mes "Hey. Why are you";
  515. mes "looking at me like";
  516. mes "that? There's no idle";
  517. mes "chatting allowed at work.";
  518. mes "If Canphotii catches";
  519. mes "you, you'll be punished...";
  520. next;
  521. mes "[Lowe]";
  522. mes "Oh wait...";
  523. mes "You don't work here.";
  524. mes "I apologize, that kind";
  525. mes "of reaction's an old";
  526. mes "habit for me, adventurer.";
  527. close;
  528. }
  529. ein_in01,87,237,5 script Dinje#ein 850,{
  530. mes "[Dinje]";
  531. mes "Do you know why a woman";
  532. mes "like me has to work in this";
  533. mes "factory? I'll tell you why... ";
  534. next;
  535. mes "[Dinje]";
  536. mes "My lazy husband, Gesin,";
  537. mes "is just lying there on the";
  538. mes "ground! So I have to work";
  539. mes "in order to support us!";
  540. next;
  541. mes "[Dinje]";
  542. mes "We can't rest for even";
  543. mes "a second if we want to save";
  544. mes "enough money to become";
  545. mes "wealthy and powerful some";
  546. mes "day. Don't you understand?";
  547. next;
  548. mes "[Dinje]";
  549. mes "Well, my husband obviously";
  550. mes "doesn't! How can he not know";
  551. mes "how the real world works?!";
  552. mes "Hey, kick his ass for me if";
  553. mes "he doesn't wake up soon!";
  554. close;
  555. }
  556. ein_in01,84,218,3 script Tsuen#ein 851,{
  557. mes "[Tsuen]";
  558. mes "There was a time";
  559. mes "when I dreamed of";
  560. mes "being an adventurer,";
  561. mes "just like you. But that";
  562. mes "was a long time ago...";
  563. next;
  564. mes "[Tsuen]";
  565. mes "Now, I'm nothing but";
  566. mes "a factory manager. Still,";
  567. mes "even if my job's not that";
  568. mes "great, I'm pretty satisfied.";
  569. mes "I'm sure people enjoy the";
  570. mes "products I oversee and all...";
  571. next;
  572. mes "[Tsuen]";
  573. mes "Maybe my life was meant";
  574. mes "to be this way, even if it's";
  575. mes "not how I planned it. But the";
  576. mes "time will come when I up and";
  577. mes "leave and travel the world";
  578. mes "once I get my chance!";
  579. next;
  580. mes "[Tsuen]";
  581. mes "I hope the day will";
  582. mes "come when I can meet";
  583. mes "you out in that big wide";
  584. mes "world and greet you as";
  585. mes "a fellow adventurer.";
  586. close;
  587. }
  588. ein_in01,103,239,1 script Gesin#ein 849,{
  589. mes "[Gesin]";
  590. mes "Arrrgh!";
  591. mes "This is killing me!";
  592. mes "Why should I be rich?";
  593. mes "What's wrong with living";
  594. mes "within our means?";
  595. next;
  596. mes "[Gesin]";
  597. mes "I've got no problem";
  598. mes "with my current way";
  599. mes "of life, but the old ball";
  600. mes "and chain disagrees.";
  601. mes "Why is she so obsessed";
  602. mes "with riches and power?";
  603. next;
  604. mes "[Gesin]";
  605. mes "Well, in any case, I'd";
  606. mes "like to help her, but I can't";
  607. mes "get up! I'm exhausted and";
  608. mes "my body is just overtaxed.";
  609. mes "I have no strength at all.";
  610. next;
  611. mes "[Gesin]";
  612. mes "This is horrible~";
  613. mes "I should be resting";
  614. mes "instead of worrying";
  615. mes "about making money...";
  616. close;
  617. }
  618. ein_in01,33,275,1 script Pevtatin#ein 848,{
  619. mes "[Pevtatin]";
  620. mes "Good god!";
  621. mes "I'm so stressed!";
  622. mes "It's been nonstop";
  623. mes "since I moved here!";
  624. next;
  625. mes "[Pevtatin]";
  626. mes "The work is tough and";
  627. mes "already the boss hates";
  628. mes "me! I didn't move here";
  629. mes "for this! Still, the pay is";
  630. mes "decent so I guess I should";
  631. mes "endure just a little longer.";
  632. next;
  633. mes "[Pevtatin]";
  634. mes "Here goes...!";
  635. mes "Yo-heave-ho!";
  636. mes "Yo-heave-ho~!";
  637. close;
  638. }
  639. ein_in01,36,204,3 script Rombell#ein 851,{
  640. mes "[Rombell]";
  641. mes "It's great that the";
  642. mes "factory is making good";
  643. mes "business and drawing";
  644. mes "in a lot of profit, but I still";
  645. mes "have one major concern.";
  646. next;
  647. mes "[Rombell]";
  648. mes "The amount of pollution";
  649. mes "that this place is causing";
  650. mes "is horrific! We've got these";
  651. mes "machines blowing out toxic";
  652. mes "gas all day long! The air";
  653. mes "can't be safe for very long...";
  654. next;
  655. mes "[Rombell]";
  656. mes "I mean, the air we're";
  657. mes "breathing right now is";
  658. mes "pretty foul and things";
  659. mes "are only going to get";
  660. mes "worse. How can we";
  661. mes "solve this problem?";
  662. close;
  663. }
  664. ein_in01,64,271,3 script Vonstein#ein 855,{
  665. mes "[Vonstein]";
  666. mes "Staring at this";
  667. mes "bubbling hot liquid";
  668. mes "metal gives me a good";
  669. mes "feeling inside. It's like";
  670. mes "that stuff can melt anything!";
  671. next;
  672. mes "[Vonstein]";
  673. mes "Imagine covering an";
  674. mes "entire street of people";
  675. mes "with that stuff! Bwahah--";
  676. mes "Oh, I'm sorry if I'm talking";
  677. mes "crazy talk! I'm just kidding~";
  678. close;
  679. }
  680. ein_in01,49,202,3 script Dorf#ein 851,{
  681. mes "[Dorf]";
  682. mes "Machines are sooo";
  683. mes "convenient. Just look";
  684. mes "at this contraption easily";
  685. mes "do tasks that'd be tough";
  686. mes "for me to finish alone.";
  687. next;
  688. mes "[Dorf]";
  689. mes "Now this is what";
  690. mes "I call technology!";
  691. mes "Sure, it takes effort and";
  692. mes "money to make one of";
  693. mes "these, but what do I care?";
  694. next;
  695. mes "[Dorf]";
  696. mes "I've got no problems,";
  697. mes "so long as this freaking";
  698. mes "thing keeps working the";
  699. mes "way I want it to!";
  700. close;
  701. }
  702. ein_in01,68,209,5 script Khashurantze#ein 852,{
  703. mes "[Khashurantze]";
  704. mes "I'm sorry, but you need";
  705. mes "special authority in order";
  706. mes "to enter this place. I'll have";
  707. mes "to ask you to leave right now.";
  708. close2;
  709. warp "einbroch",179,63;
  710. end;
  711. }
  712. ein_in01,85,261,3 script Zherin#ein 851,{
  713. mes "[Zherin]";
  714. mes "I'm in charge of this";
  715. mes "blast furnace which";
  716. mes "contains all of this";
  717. mes "boiling magma.";
  718. next;
  719. mes "[Zherin]";
  720. mes "Even though it doesn't";
  721. mes "require actual labor, this";
  722. mes "job is pretty tiring. I've got";
  723. mes "to pay careful attention all";
  724. mes "the time. It's pretty stressful.";
  725. next;
  726. mes "[Zherin]";
  727. mes "Still, I'm proud of my job";
  728. mes "since I have the responsibility";
  729. mes "of ensuring employee safety.";
  730. mes "Anyway, don't get too close";
  731. mes "to the furnace. It won't do if";
  732. mes "you get burned on accident!";
  733. close;
  734. }
  735. ein_in01,43,252,3 script Canphotii#ein 852,{
  736. mes "[Canphotii]";
  737. mes "Hustle, hustle!";
  738. mes "Pick up the pace!";
  739. mes "Anyone working too";
  740. mes "slowly will be punished!";
  741. next;
  742. mes "[Canphotii]";
  743. mes "Can't you understand";
  744. mes "that?! Now go to your";
  745. mes "station and get back to";
  746. mes "work! Wait, are you even";
  747. mes "an employee? If not, then";
  748. mes "stop wandering around!";
  749. next;
  750. mes "[Canphotii]";
  751. mes "You're not supposed";
  752. mes "to be able to get in here!";
  753. mes "I can't believe they let you";
  754. mes "in! This requires extreme";
  755. mes "disciplinary action!";
  756. close;
  757. }
  758. ein_in01,206,224,3 script Hotel Employee#ein 855,{
  759. mes "[Hotel Employee]";
  760. mes "Good day, welcome to the";
  761. mes "Einbroch Hotel. The staff is";
  762. mes "always striving to accommodate";
  763. mes "our guests with the highest";
  764. mes "standards in cleanliness,";
  765. mes "service and convenience~";
  766. next;
  767. if (kain_ticket == 5) {
  768. mes "[Hotel Employee]";
  769. mes "Are you looking";
  770. mes "for Mr. Defru Ark?";
  771. mes "Oh right, he did mention";
  772. mes "waiting for some package";
  773. mes "from the Airport. Now let";
  774. mes "me pull up that information...";
  775. next;
  776. mes "[Hotel Employee]";
  777. mes "Ah, here we are.";
  778. mes "Mr. Defru Ark is";
  779. mes "staying in Room 201.";
  780. next;
  781. }
  782. else {
  783. switch(select("Save:Take Rest - 5,000 zeny:Cancel")) {
  784. case 1:
  785. mes "[Hotel Employee]";
  786. mes "Your Respawn Point";
  787. mes "has been saved here";
  788. mes "in the Einbroch Hotel.";
  789. mes "Thank you, and please";
  790. mes "come again.";
  791. close2;
  792. savepoint "ein_in01",200,224,1,1;
  793. end;
  794. case 2:
  795. if (Zeny > 4999) {
  796. mes "[Hotel Employee]";
  797. mes "Thank you.";
  798. mes "Please enjoy";
  799. mes "your rest~";
  800. close2;
  801. set Zeny, Zeny-5000;
  802. percentheal 100,100;
  803. warp "ein_in01",272,167;
  804. end;
  805. }
  806. else {
  807. mes "[Hotel Employee]";
  808. mes "I'm sorry, but the";
  809. mes "accommodation fee is";
  810. mes "5,000 zeny. Next time,";
  811. mes "please make sure that you";
  812. mes "bring enough zeny, okay?";
  813. close;
  814. }
  815. case 3:
  816. mes "[Hotel Employee]";
  817. mes "Thank you and";
  818. mes "please come again~";
  819. close;
  820. }
  821. }
  822. mes "[Hotel Employee]";
  823. mes "Have a good day.";
  824. close;
  825. }
  826. einbroch,244,255,5 script Bulletin Board#ein1 858,{
  827. mes " ";
  828. mes " Train Station ";
  829. mes " ";
  830. close;
  831. }
  832. einbroch,253,203,5 script Bulletin Board#ein2 858,{
  833. mes " ";
  834. mes " Hotel ";
  835. mes " ";
  836. close;
  837. }
  838. einbroch,68,206,5 script Bulletin Board#ein3 858,{
  839. mes " ";
  840. mes " Airship Airport ";
  841. mes " ";
  842. close;
  843. }
  844. einbroch,90,84,5 script Bulletin Board#ein4 858,{
  845. mes " ";
  846. mes " Laboratory ";
  847. mes " ";
  848. close;
  849. }
  850. einbroch,101,106,5 script Bulletin Board#ein5 858,{
  851. mes " ";
  852. mes " Airship Repair Shop ";
  853. mes " ";
  854. close;
  855. }
  856. einbroch,220,208,5 script Bulletin Board#ein6 858,{
  857. mes " ";
  858. mes " Weapon Shop ";
  859. mes " ";
  860. close;
  861. }
  862. einbroch,132,76,5 script Bulletin Board#ein7 858,{
  863. mes " ";
  864. mes " Factory ";
  865. mes " ";
  866. close;
  867. }
  868. einbroch,152,46,5 script Bulletin Board#ein11 858,{
  869. mes "West - Laboratory, Airship Repair Shop";
  870. mes "South - Einbroch Front Gate";
  871. mes "North - Airport";
  872. mes "Northeast - Train Station, Hotel, Weapon Shop";
  873. close;
  874. }
  875. einbroch,235,141,5 script Bulletin Board#ein22 858,{
  876. mes "Southwest - Airship Repair Shop, Laboratory";
  877. mes "Northwest - Airport";
  878. mes "North - Weapon Shop, Hotel, Train Station";
  879. close;
  880. }
  881. einbroch,162,256,5 script Bulletin Board#ein33 858,{
  882. mes "East - Train Station";
  883. mes "Southeast - Hotel";
  884. mes "South - Weapon Shop,Factory";
  885. mes "Southwest - Airport, Airship Repair Shop, Laboratory";
  886. close;
  887. }
  888. einbroch,183,174,5 script Bulletin Board#ein44 858,{
  889. mes "East - Weapon Shop, Hotel";
  890. mes "South - Factory";
  891. mes "Southwest - Airship Repair Shop, Laboratory";
  892. mes "Northwest - Airport";
  893. close;
  894. }
  895. einbroch,104,202,5 script Bulletin Board#ein55 858,{
  896. mes "Northeast - Train Station";
  897. mes "East - Weapon Shop,Hotel";
  898. mes "South - Airship Repair Shop, Laboratory";
  899. close;
  900. }
  901. ein_in01,31,217,3 script Cendadt#ein 851,{
  902. mes "[Cendadt]";
  903. mes "This factory has a lot";
  904. mes "of things that need fixing,";
  905. mes "pronto! I'm amazed that";
  906. mes "the place is still operating!";
  907. next;
  908. mes "[Cendadt]";
  909. mes "Lucky for us, I hear that";
  910. mes "some altruistic adventurers";
  911. mes "have been donating materials";
  912. mes "to help keep this factory from";
  913. mes "falling apart... Or worse.";
  914. mes "But that's just a rumor.";
  915. next;
  916. mes "[Cendadt]";
  917. mes "^666666*Sigh*^000000";
  918. mes "Even if it is true,";
  919. mes "there's nothing no one";
  920. mes "here can do. Nobody has";
  921. mes "the courage to challenge";
  922. mes "the system, you know?";
  923. next;
  924. mes "[Cendadt]";
  925. mes "I...";
  926. mes "I better get";
  927. mes "back to work";
  928. mes "before I get";
  929. mes "in trouble...";
  930. close;
  931. }