schwalz.txt 35 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046
  1. //===== eAthena Script =======================================
  2. //= Lighthalzen, Swaltzwalt Quest Part 1
  3. //= Lighthalzen, Swaltzwalt Quest Part 2
  4. //= Lighthalzen, Swaltzwalt Quest Part 3
  5. //===== By: ==================================================
  6. //= Gravity official script
  7. //= CallNix (Part 1)
  8. //= dunkle (Part 2 & 3)
  9. //===== Current Version: =====================================
  10. //= 1.0 working version
  11. //= 1.1 fixed bug with wrong valuable [dunkle]
  12. //= added and deleted some checks [dunkle]
  13. //= fixed warps (but they are wrong) [dunkle]
  14. //= fixed enabling of A Fine Gentleman [dunkle]
  15. //= fixed bug with reward [dunkle]
  16. //= 1.2 fixed bug in part with overflow timer (now you must wait untill next day, not 12 hours) [dunkle]
  17. // changed some valuables [dunkle]
  18. // fixed bugs in The broken Manufactoring [dunkle]
  19. //= 1.2b fixed timer Ordinary Man [dunkle]
  20. //= 1.3 fixed part1 bugs [dunkle]
  21. //===== Compatible With: =====================================
  22. //= eAthena SVN
  23. //===== Description: =========================================
  24. //=
  25. //=
  26. //===== Additional Comments: =================================
  27. //In alchemist_skills.txt comment because I use this NPC in the script:
  28. //lhz_in01.gat,285,169,7 script Researcher#2 865,{
  29. //Unknown Text
  30. // mes "[Researcher]";
  31. // mes "Hmm... I wonder...";
  32. // close;
  33. //}
  34. //
  35. //============================================================
  36. yuno_pre.gat,79,69,0 warp inside_pre01 1,1,yuno_pre.gat,97,68
  37. yuno_pre.gat,113,50,0 warp inside_pre02 1,1,yuno_pre.gat,58,22
  38. yuno_pre.gat,54,22,0 warp inside_pre03 1,1,yuno_pre.gat,113,55
  39. lhz_in01.gat,275,234,0 warp inside_pre04 1,1,lhz_in01.gat,277,161 //Çäåñü ïîðòàëû ïîñòàâèë íàîáóì, â ìåñòå îêîëî äâåðè,
  40. lhz_in01.gat,277,157,0 warp inside_pre04 1,1,lhz_in01.gat,275,231 //ãäå íå áûëî äðóãîãî ïîðòàëà :
  41. //OnInit!
  42. prontera.gat,0,0,0 script swarzwalt_trilogy -1,1,1{
  43. OnInit:
  44. disablenpc "kurelle";
  45. disablenpc "President's Secretary#2";
  46. disablenpc "Security#2";
  47. disablenpc "area 1-5";
  48. disablenpc "Kurelle#1";
  49. set $SCHWALTZVALT_DOOR_FLAG,0;
  50. stopnpctimer "schwalt2timer";
  51. end;
  52. }
  53. //////////////////////////////////////////////////////////////////////////////////////////////////////////
  54. //Beginning. Lighthalzen, Swaltzwalt Quest Part 1/////////////////////////////////////////////////////////
  55. //////////////////////////////////////////////////////////////////////////////////////////////////////////
  56. lighthalzen.gat,179,170,4 script Ordinary man 48,{
  57. if (SCHWALTZVALT_PART2==23) {
  58. mes "[Ghalstein]";
  59. mes "arrr...";
  60. mes "is you....";
  61. mes ".....";
  62. mes "Now? verything finish...";
  63. mes "dream...vision";
  64. next;
  65. mes "[Ghalstein]";
  66. mes "arr..most forgot...";
  67. mes "This is your...";
  68. mes "...cure...";
  69. mes "Take this pill,";
  70. mes "You'll never have to take it";
  71. mes "anymore...";
  72. next;
  73. mes "[Ghalstein]";
  74. mes ".......";
  75. mes "We'll never meet each other anymore..";
  76. getitem 617,1; //Old Violet Box
  77. getexp 1800000,0; //Exp 1800000
  78. set dtseligible , 1; //Here is Voting Right (dts warper)
  79. set SCHWALTZVALT_PART2, 24;
  80. close;
  81. }
  82. if (questpass_swaltwaltp1==1) goto l_alreadydone;
  83. if ( (SCHWALTZVALT_PART1==2) || (SCHWALTZVALT_PART1==3) ) goto Quest_enable;
  84. if ( (SCHWALTZVALT_PART1==1) && (gettime(5)!=schwalzday) ) goto L_NEXTDAY;
  85. if (SCHWALTZVALT_PART1==1) goto l_hadspoken;
  86. mes "[Ghalstein]";
  87. mes "Hello,";
  88. mes "is this a great city?";
  89. menu "Hello",-,"This is a great city indeed",L_GREAT,"is still ok",L_OK;
  90. next;
  91. mes "[Ghalstein]";
  92. mes " Yes, It a nice day. I wish you have good time in our city. See you later";
  93. close;
  94. L_OK:
  95. next;
  96. mes "[Ghalstein]";
  97. mes "I like such sunny days... In such beautiful town...";
  98. close;
  99. L_GREAT:
  100. next;
  101. mes "[Ghalstein]";
  102. mes "Well. This great city is only for really great people.";
  103. mes "I wish you have good time here. Enjoy.";
  104. close2;
  105. mes "[??????]";
  106. mes "is here";
  107. mes "......";
  108. mes "[??????]";
  109. mes "hurry before we let people discover";
  110. mes "us...";
  111. mes "heard a familiar sound";
  112. menu "Continue listen",l_listen,"do not listen",l_nolisten;
  113. l_listen:
  114. next;
  115. mes "[??????]";
  116. mes "Its all as we suposed to... Everything is similar to our plan";
  117. mes "[??????]";
  118. mes "Yes, thats really cool.";
  119. next;
  120. mes "[??????]";
  121. mes "PSSS. Be silent";
  122. mes "I think somebody else is here listening us. We will meet the other day.";
  123. mes "[??????]";
  124. mes "I agree";
  125. set SCHWALTZVALT_PART1,1;
  126. set schwalzday, gettime(5);
  127. close;
  128. end;
  129. l_nolisten:
  130. next;
  131. mes "["+strcharinfo(0)+"]";
  132. mes "I don't think this is interesting for me.";
  133. close;
  134. end;
  135. L_NEXTDAY:
  136. mes "[Ghalstein]";
  137. mes "hi, how are you,";
  138. mes "today weather is good?";
  139. menu "Yes",l_da,"but last night",-;
  140. next;
  141. mes "[Ghalstein]";
  142. mes "What was last night? I've heard nothing about it. Anything strange had happened?";
  143. menu "I've heard you speaking to somebody about strange things.",-,"Nothing, sorry",L_NOTHING;
  144. next;
  145. mes "[Ghalstein]";
  146. mes "I think you are mistaken guy. I don't know what are you talking about";
  147. menu "Don't make a fool from me.",-,"Ok, sory",L_NOTHING;
  148. next;
  149. mes "[Ghalstein]";
  150. mes "I say you, that i hadn't speak to anybody yesterday.Hey, Protector come here plese";
  151. next;
  152. mes "["+strcharinfo(0)+"]";
  153. mes "..........";
  154. mes "if really not him, he shouldn't";
  155. mes "denied it so strongly";
  156. mes "..........";
  157. next;
  158. mes "[Protector]";
  159. mes "I have no intention to";
  160. mes "interrogation you?";
  161. mes "just because...";
  162. menu "The matter that Mr.Ghalstein dealing with..",-,"i feel curious about it?",l_curious;
  163. next;
  164. mes "["+strcharinfo(0)+"]";
  165. mes "I clearly remember him talking to somebody about some strange plans. I think he is planning something restrickted...";
  166. next;
  167. mes "[Protector]";
  168. mes "Hm... Is that so mr. Ghalstein? Do you remember the constitution? Tell us the truth, or i shall arrest you";
  169. next;
  170. mes "[Ghalstein]";
  171. mes "oh.. Ok. I was speaking about our community. Nothing interesting...";
  172. next;
  173. mes "[Protector]";
  174. mes "Ok. Its about your Fishing clan? If so, i leave you. See you later";
  175. next;
  176. mes "[Ghalstein]";
  177. mes "Well, I will tell you the truth. Please give me sometime to consider....";
  178. mes "I belong to a secret group that antagonistic with another group and so we need some items";
  179. mes "to be protected. So we were going to organize a trip to Reagent Shaw Research Center.";
  180. next;
  181. mes "[Ghalstein]";
  182. mes "You can get there if you have passed BioLab quest. Its the second and third lvl.";
  183. mes "But we have no brave to go there. What about helping us?";
  184. menu "Ok, i shall help",-,"No,thanks",L_NOTHX;
  185. next;
  186. mes "[Ghalstein]";
  187. mes "well then.But you must take this pill to go this quest. This pill will add some status to you.";
  188. mes "when you shall finish quest - i will delete this status from your char.Is it OK with you?. I think It is.";
  189. if ( checkweight(7226,1) == 0 ) goto l_overweight;
  190. getitem (7226),1;
  191. next;
  192. mes "[Ghalstein]";
  193. mes "I want you to collect all related biological exhibit and no need big quantity plus the most important thing.";
  194. mes "You will simply recognize that things";
  195. mes "There are some strange mobs there. So be careful. And last...People who go there dissapear. Nobody was back from there...";
  196. next;
  197. mes "[Ghalstein]";
  198. mes "So you had to go to 2 and 3 lvl of BioLab. Be sure you have finish this quest. And bring me 10 Lab staff records, 10 Armlet of prisoner and 1 Pile of Imir heat";
  199. set SCHWALTZVALT_PART1,2;
  200. set schwalzday,0;
  201. close;
  202. l_curious:
  203. mes "[Ghalstein]";
  204. mes "even so i don't want to speak to smb who say such fool things. Cya.";
  205. close;
  206. L_NOTHX:
  207. mes "[Ghalstein]";
  208. mes "ye, its a pity i think. Have a nice day";
  209. close;
  210. L_NOTHING:
  211. mes "[Ghalstein]";
  212. mes "I've never think guy like you can think this way about me. I don't want to speak to you anymore";
  213. close;
  214. l_overweight:
  215. mes "["+strcharinfo(0)+"]";
  216. mes "sorry you can't take this item";
  217. close;
  218. Quest_enable:
  219. if (countitem (7345) >= 10) && (countitem(7347) >=10) && (countitem(7346) >=1) goto Quest_end;
  220. mes "[Ghalstein]";
  221. mes "You haven't gathered the items yet. Come back when you should.";
  222. close;
  223. Quest_end:
  224. mes "[Ghalstein]";
  225. mes "Well done. You have finished my part of the quest.";
  226. mes "Now, Visit Gushaar. He can be found sowhere around Yuno.";
  227. next;
  228. mes "[Ghalstein]";
  229. mes "Yes, i have forgotten....";
  230. mes "Now you are member of society Wind of Secret!";
  231. mes "congratulations!";
  232. delitem (7345),10;
  233. delitem (7347),10;
  234. delitem (7346),1;
  235. getitem (7226),1;
  236. getitem (7348),1;
  237. set questpass_swaltwaltp1,1;
  238. close;
  239. l_hadspoken:
  240. mes "[Ghalstein]";
  241. mes "Sorry, but i have nothing to say to you anymore. Buy.";
  242. close;
  243. l_da:
  244. mes "[Ghalstein]";
  245. mes "Im happy you have time to think so too. See you";
  246. close;
  247. l_alreadydone:
  248. mes "["+strcharinfo(0)+"]";
  249. mes "I have already done this quest. I don't want to go there once more time!";
  250. close;
  251. }
  252. //=======================================================================
  253. lhz_dun02.gat,268,287,4 script The broken Manufactoring 111,{
  254. if SCHWALTZVALT_PART1!=2 goto l_end;
  255. mes "[The broken Manufactoring]";
  256. mes "You see something shining inside the spoiling machines.Open up the machinr and check it,detected a round shape";
  257. mes "object wich circulate with a mysterious shines.";
  258. menu "Its seems like an important object",-,"But it looks nothing musch",l_nottake;
  259. getitem(7346),1;
  260. set SCHWALTZVALT_PART1,3;
  261. mes "["+strcharinfo(0)+"]";
  262. mes "Well, Now i suppose everything will be ok.";
  263. close2;
  264. npctalk "Creeep... Creeeep-Creep...*pfu*.";
  265. mes "["+strcharinfo(0)+"]";
  266. mes "Oooops....I don't think this machine will work anymore... I'll go better from here";
  267. close;
  268. end;
  269. l_nottake:
  270. close;
  271. l_end:
  272. mes "You see nothing there...";
  273. close;
  274. }
  275. //////////////////////////////////////////////////////////////////////////////////////////////////////////
  276. //Ending. Lighthalzen, Swaltzwalt Quest Part 1/////////////////////////////////////////////////////////
  277. //////////////////////////////////////////////////////////////////////////////////////////////////////////
  278. //NPC01 - Dismal Guy
  279. yuno_fild04.gat,165,245,5 script Dismal Guy 89,{
  280. if (SCHWALTZVALT_PART2>0) {
  281. mes "[Dismal Guy]";
  282. mes "Make your mission..we need you..";
  283. close;
  284. }
  285. mes "[Dismal Guy]";
  286. mes "Maybe you have some thing to show me?";
  287. menu "Yeah, I have it",-,"I don't know what do you mean",DG_end01;
  288. if ((countitem(7348)==0) || (questpass_swaltwaltp1!=1)) { //Membership Card, Çäåñü ïðîâåðêà, ïðîéäåíà ëè ïåðâàÿ ÷àñòü êâåñòà
  289. next;
  290. mes "[Dismal Guy]";
  291. mes "You are trying to cheat me?";
  292. mes "You don't have item which I am interesting in..";
  293. mes "Bye! Come back, when you will have what I want.";
  294. close;
  295. }
  296. //next;
  297. //mes "[Dismal Guy]";
  298. //mes "emm....";
  299. //mes "got red and blue pill,";
  300. //mes "which one you choose?";
  301. //menu "Red pill",-,"Blue pill",-; //Íàäî óçíàòü, ÷òî áóäåò åñëè âûáðàòü ñèíèþ ïèëþëþ (ïî èäåè â ïåðâîé ÷àñòè ÍÏÖ ìîæåò äàòü ëìáî ñèíþþ, ëèáî êðàñíóþ, íî ò.ê. îí äàåò ïðîñòî ïèëþëþ, òî çäåñü åñòåñíî ýòî íåíóæíî)
  302. //mes "Nowadays isn't the best time to live..";
  303. next;
  304. mes "[Dismal Guy]";
  305. mes "Schwaltzvalt is control by evil ^0000FFRekenber Enterprise^000000";
  306. mes "But we have organized a resistance called ^FF0000Wing Of Secret^000000 with the help of the President ^0000FFKarl Weierstrass^000000 to reform Schwaltzvalt Republic from the control of ^0000FFRekenber Enterprise^000000!";
  307. next;
  308. mes "[Dismal Guy]";
  309. mes "I have a task for you.";
  310. mes "You need to meet the candidate which won the president election ^0000FFKarl Weierstrass^000000";
  311. mes "He wants to reform Schwaltzvalt Republic from the control of ^0000FFRekenber Enterprise^000000";
  312. next;
  313. mes "[Dismal Guy]";
  314. mes "If you will unable to see ^0000FFKarl Weierstrass^000000, coordinate with his secrtary in Yuno at appointed time.";
  315. mes "The best time will be betwen 8pm to 11pm or betwen 11am to 2pm";
  316. set SCHWALTZVALT_PART2, 1; //Ïåðâûé ÍÏÖ ïðîéäåí, òåïåðü ìîæíî ê ñåêðåòàðþ.
  317. next;
  318. mes "[Dismal Guy]";
  319. mes "The fate of the whole Republic in your brave hands! Bye!";
  320. close;
  321. DG_end01:
  322. next;
  323. mes "[Dismal Guy]";
  324. mes "It'a a pity, I am finding you a good person..";
  325. close;
  326. }
  327. //NPC02 - President's Secretary
  328. yuno_pre.gat,69,20,5 script President's Secretary::pre 862,{
  329. if (SCHWALTZVALT_PART2==4) {
  330. mes "[Hes O'Neil]";
  331. if(countitem(7342)==0) {mes "Where is documemt?";close;} //Çäåñü ÈÄ äîêóìåíòà, íàäî óçíàòü ó Ëóïóñà.
  332. delitem 7342,1; //Çäåñü ÈÄ äîêóìåíòà, íàäî óçíàòü ó Ëóïóñà.
  333. mes "Thanks a lot!";
  334. set SCHWALTZVALT_PART2, 5; //Òåïåðü ñ ñåêðåòàðøåé âî âòîðîé ðàç âñå, èäåì ê Venice
  335. close;
  336. }
  337. if (SCHWALTZVALT_PART2>=2) {
  338. mes "[Hes O'Neil]";
  339. mes "I glad to see you again!";
  340. close;
  341. }
  342. if ( (gettime(3)>23) && (gettime(3)<11) ) || ( (gettime(3)>14) && (gettime(3)<20) ) {
  343. mes "[Hes O'Neil]";
  344. mes "It isn't reception time.";
  345. mes "Come back betwen 8pm to 11pm or betwen 11am to 2pm.";
  346. close;
  347. }
  348. mes "[Hes O'Neil]";
  349. mes "Who are you?";
  350. mes "How can I help?";
  351. menu "emm..",-,"Meet up with Mr.President",PS_meet,"Nothing",PS_end01;
  352. if (SCHWALTZVALT_PART2==1) {
  353. next;
  354. mes "[Hes O'Neil]";
  355. mes "Heh, you don't know how to explain youself:)";
  356. mes "But I know that Mr.President is waiting for you. Good Luck!";
  357. set SCHWALTZVALT_PART2, 2; //Âòîðîé ÍÏÖ ïðîéäåí, äàëåå ê ñòðàæíèêó.
  358. close;
  359. }
  360. next;
  361. mes "[Hes O'Neil]";
  362. mes "What do you want?";
  363. mes "Don't waste my time please!";
  364. close;
  365. PS_meet:
  366. next;
  367. mes "[Hes O'Neil]";
  368. mes "Sorry, but Mr.President is very busy.";
  369. //emotion 14; //sry
  370. close;
  371. PS_end01:
  372. next;
  373. mes "[Hes O'Neil]";
  374. mes "Sorry, I did't help you:(";
  375. //emotion 14; //sry
  376. close;
  377. }
  378. yuno_pre.gat,75,71,3 duplicate(pre) President's Secretary#2 862,0,0
  379. //NPC03 - Security
  380. yuno_pre.gat,95,71,5 script Security::sec 899,5,5 {
  381. if (SCHWALTZVALT_PART2==4) {
  382. mes "[Security]";
  383. mes "Mr.President still meeting with other person.";
  384. close;
  385. }
  386. if (SCHWALTZVALT_PART2>=3) {
  387. mes "[Security]";
  388. mes "Mr.Presideny is free now. You can come in.";
  389. close2;
  390. warp "yuno_pre.gat",75,70;
  391. end;
  392. }
  393. if (SCHWALTZVALT_PART2!=2) {
  394. mes "[Security]";
  395. mes "Nobody has disposed to pass you!";
  396. close;
  397. }
  398. if (rand(9)!=0) {
  399. mes "[Security]";
  400. mes "Please hold on for a moment.";
  401. mes "Mr.President still meeting with other person.";
  402. close;
  403. }
  404. enablenpc "kurelle";
  405. mes "[Keshnaar]";
  406. mes "Mr.President denied my petition about medical marihuana...";
  407. //emotion 25; //sob
  408. next;
  409. mes "[Keshnaar]";
  410. mes "I have collected 1000 signatures of the townspeople and nothing...";
  411. //emotion 25; //sob
  412. next;
  413. mes "[Keshnaar]";
  414. mes "Ok I must go and collect more signatures!";
  415. next;
  416. disablenpc "A Fine Gentleman";
  417. mes "[Security]";
  418. mes "Now Mr.President is free, you can pass.";
  419. G_menu:
  420. menu "Ok",S_warp,"Who is he?",-;
  421. next;
  422. mes "[Security]";
  423. mes "Are you talking about Mr.Keshnaar?";
  424. mes "Mr.Keshnaar works for Rekenber. He consulted with Mr.President.";
  425. next;
  426. goto G_menu;
  427. S_warp:
  428. set SCHWALTZVALT_PART2, 3; //Ó îõðàííèêà âñå, òåïåðü ê ïðåçèäåíòó.
  429. close2;
  430. warp "yuno_pre.gat",75,70;
  431. OnTouch:
  432. if (SCHWALTZVALT_PART2==4) {
  433. mes "...Suddenly your heard voices behind the door...";
  434. mes "...but is too slighty, can't heard clearly...";
  435. next;
  436. mes "[?????]";
  437. mes "...is true..";
  438. mes "so........";
  439. mes "......president...";
  440. mes "[?????]";
  441. mes "..their Investigation...";
  442. mes ".........";
  443. mes "....trap....";
  444. mes "[?????]";
  445. mes "...stop them....how?";
  446. mes ".....,surely...";
  447. mes "[?????]";
  448. mes "next?...election...";
  449. mes "....elected...";
  450. next;
  451. mes "...the sound became more slighty...";
  452. mes "...can't heard anymore...";
  453. close;
  454. }
  455. }
  456. //NPC04 - A Fine Gentleman
  457. yuno_pre.gat,96,69,3 script A Fine Gentleman::kurelle 82,{
  458. close;
  459. }
  460. //NPC - KURELLE
  461. yuno_pre.gat,69,74,0 duplicate(kurelle) Kurelle#1 109,0,0
  462. //NPC - Security in presidents room
  463. yuno_pre.gat,76,72,8 duplicate(sec) Security#2 899,0,0
  464. //NPC05 - President Karl
  465. yuno_pre.gat,69,79,5 script President Karl 872,{
  466. cutin "lhz_karl",2;
  467. if (SCHWALTZVALT_PART2==22) {
  468. mes "...after the story about traitor ^FF0000Kurelle^000000 president looks stunned...";
  469. next;
  470. mes "[President Karl]";
  471. mes "CALL MY SECRETARY NOOOOOOW!!!";
  472. next;
  473. mes ".....";
  474. next;
  475. enablenpc "President's Secretary#2";
  476. mes "...Secretary looks too afraid...";
  477. next;
  478. cutin "",255;
  479. mes "[Hes O'Neil]";
  480. mes "Yes sir! What is your oders?";
  481. next;
  482. cutin "lhz_karl",2;
  483. mes "[President Karl]";
  484. mes "INVITE THIS TRAITOR ^FF0000KURELLE^000000 NOOOOW!!!";
  485. next;
  486. disablenpc "President's Secretary#2";
  487. mes ".....";
  488. next;
  489. enablenpc "Kurelle#1";
  490. mes "[President Karl]";
  491. mes "What happened? Why did you betray us?";
  492. next;
  493. cutin "",255;
  494. mes "[Kurelle]";
  495. mes "You are right. I did it. I report all of your actions to the enterprise...";
  496. mes "I did it by myself.";
  497. next;
  498. mes "[Kurelle]";
  499. mes "When I carry on my plan, I meet with Rekenber people who are monitoring you...ha-ha!";
  500. next;
  501. mes "[Kurelle]";
  502. mes "Therefore I take those opportunity to propose them my plan,";
  503. mes "I provide information t0 them, to force you step down, I WILL BE THE NEXT PRESIDENT!!! HA-HA-HA";
  504. next;
  505. mes "[Kurelle]";
  506. mes "Although you'll not step down sp soon...but your team will lost seriously!";
  507. next;
  508. mes "[Kurelle]";
  509. mes "Yeap, your era is gone...";
  510. mes "Now you can't do anything, just waiting to step down then is enough...";
  511. mes "Ha ha...";
  512. next;
  513. cutin "lhz_karl",2;
  514. mes "[President Karl]";
  515. mes "SECURITY!!!";
  516. enablenpc "Security#2";
  517. next;
  518. next;
  519. mes "[President Karl]";
  520. mes "He is crazy!! Jail him now!";
  521. next;
  522. cutin "",255;
  523. mes "[Security]";
  524. mes "Yes sir!";
  525. disablenpc "Security#2";
  526. disablenpc "Kurelle#1";
  527. next;
  528. cutin "lhz_karl",2;
  529. mes "[President Karl]";
  530. mes "It is the end of our Rebublic..";
  531. mes "Soon it will fall..";
  532. next;
  533. mes "[President Karl]";
  534. mes "Thank you brave man ..";
  535. mes "...go away. Now I must stay here and wait the END..";
  536. set SCHWALTZVALT_PART2, 23;
  537. cutin "",255;
  538. close;
  539. }
  540. if (SCHWALTZVALT_PART2==20) {
  541. mes "[President Karl]";
  542. mes "Very interesting...";
  543. mes "With this information can give enterprise a big hit.";
  544. if(countitem(7343)==0) {mes "Where is documemt?";cutin "",255; close;} //Sealed documemt
  545. delitem 7343,1; //Sealed documemt
  546. next;
  547. mes "[President Karl]";
  548. mes "But I can't understand why should we withdraw our members?...";
  549. mes "...can you go to Esuna and ask her for reasons?";
  550. set SCHWALTZVALT_PART2, 21; //Îáðàòíî ê Åñóíå! (èçäåâàòåëüñòâî äëÿ èãðîêîâ:))))
  551. cutin "",255;
  552. close;
  553. }
  554. if (SCHWALTZVALT_PART2==18) {
  555. mes "[President Karl]";
  556. mes "It can't be true! You broght me a file containing all details of the Shinokas case!! ";
  557. if(countitem(7344)==0) {mes "Where is Shinokas documemt?";cutin "",255; close;} //Shinokas documemt
  558. delitem 7344,1; //Shinokas documemt
  559. set SCHWALTZVALT_PART2, 19; //Îáðàòíî ê Åñóíå!
  560. next;
  561. mes "...President Karl attentivly looking thought the papers...";
  562. next;
  563. mes "[President Karl]";
  564. mes "The death of ^FF0000Shinokas^000000...";
  565. mes "It is not important for us..";
  566. mes "The most important thing is what they are going to do with ^0000FFYmir Heart Piece^000000 what is their main purpose.";
  567. next;
  568. mes "[President Karl]";
  569. mes "I heard that when you are on the way to me. ^FF0000Esuna^000000 gained new information.";
  570. mes "Bye! I will be waiting for new information. ";
  571. cutin "",255;
  572. close;
  573. }
  574. if (SCHWALTZVALT_PART2==9) {
  575. mes "[President Karl]";
  576. mes "Ohh! You brought me this secret document!? You are awesome!";
  577. if(countitem(7343)==0) {mes "Where is documemt?";cutin "",255; close;} //Sealed Document
  578. delitem 7343,1; //Sealed Document
  579. mes "Let's see...";
  580. next;
  581. mes "[President Karl]";
  582. mes "...";
  583. next;
  584. mes "[President Karl]";
  585. mes "It is very-very interesting! One of ^0000FFRekenber Enterprise^000000 researcher is hiding in a secret place!";
  586. mes "He knows some secret!!!!! His name is ^FF0000Shinokas^000000";
  587. mes "...and the secret place is...";
  588. next;
  589. mes "[President Karl]";
  590. mes "...^FF0000Einbroch^000000";
  591. mes "So..your second mission is to find ^FF0000Shinokas^FF0000 in ^FF0000Einbroch^000000 and to know his secret!";
  592. next;
  593. mes "[President Karl]";
  594. mes "Do you have any questions?";
  595. next;
  596. mes "["+strcharinfo(0)+"]";
  597. mes "Yes...I hane one..";
  598. mes "Shinikas is...";
  599. next;
  600. cutin "",255;
  601. enablenpc "Security#2";
  602. enablenpc "President's Secretary#2";
  603. next;
  604. mes "[Secutity]";
  605. mes "Mr.President, Mrs.Hes O'Neil has urgent matter to see you. ";
  606. next;
  607. mes "...Mrs.Hes O'Neil brooght to the President a pack of documents...";
  608. next;
  609. cutin "lhz_karl",2;
  610. mes "[President Karl]";
  611. mes "Thanks to Mrs.Hes O'Neil we found a secret file! It is in the store room of ^0000FFReagent Belfa Headquater^000000";
  612. next;
  613. mes "[President Karl]";
  614. mes "Ok. Go somewhere around ^FF0000Lighthalzen^000000, waiting for ^FF0000kafra service^000000 to contact with you.";
  615. set SCHWALTZVALT_PART2, 10; //Âçÿëè âòîðóþ ìèññèþ ó Ïðåçèäåíòà,
  616. next;
  617. disablenpc "Security#2";
  618. disablenpc "President's Secretary#2";
  619. cutin "",255;
  620. close;
  621. }
  622. if (SCHWALTZVALT_PART2>=4) {
  623. mes "[President Karl]";
  624. mes "See ya!";
  625. cutin "",255;
  626. close;
  627. }
  628. if (SCHWALTZVALT_PART2<3) {
  629. mes "[President Karl]";
  630. mes "Who are you doing here?!";
  631. next;
  632. mes "[President Karl]";
  633. mes "Secutity!!!!";
  634. cutin "",255;
  635. close2;
  636. warp "yuno.gat",153,313;
  637. }
  638. mes "[President Karl]";
  639. mes "I believe, you have many questions but.. ";
  640. mes "...I am very busy, so the time I have is limited.";
  641. PK_menu01:
  642. menu "Objective of the ^FF0000Wing Of Secret^000000f",PK_obj01,"Objective of the ^0000FFRekenber Enterprise^000000",PK_obj02,"What is my Mission?",-;
  643. next;
  644. mes "[President Karl]";
  645. mes "The first mission is to go ^0000FF'Aldebaran Kafra Headquater'^000000 to meet a guy called ^FF0000 Venice^000000. Then he will let you know what to do." ;
  646. next;
  647. mes "[President Karl]";
  648. mes "One more thing...";
  649. mes "Please, bring this document to ^FF0000Hes O'Neil^000000. Then you can continue your mission.";
  650. getitem 7342,1; //File Folder
  651. set SCHWALTZVALT_PART2, 4; //Ñ Ïðåçèäåíòîì ïîêà âñå, èäåì ê ñåêðåòàðøå îïÿòü.
  652. cutin "",255;
  653. close;
  654. PK_obj01:
  655. next;
  656. mes "[President Karl]";
  657. mes "It is resistance organization which try to reform Schwaltzvalt Republic with my help.";
  658. mes "Before I was elected I was the member of this organization.";
  659. mes "We should not admit the control of authority by ^0000FFRekenber Enterprise^000000!!!";
  660. goto PK_menu01;
  661. PK_obj02:
  662. next;
  663. mes "[President Karl]";
  664. mes "^0000FFRekenber Enterprise^000000 - the worst organization in Rune Midgard!!";
  665. mes "They try to get power.";
  666. mes "To make the prices in shops is more expensive, to receive greater taxes from the townspeople, to start up development Rune Midgard on a way of fear and terror.";
  667. goto PK_menu01;
  668. }
  669. //NPC06 - Venice
  670. aldeba_in.gat,155,240,3 script Kafra Employee 859,{
  671. if (SCHWALTZVALT_PART2==7) {
  672. if(countitem(7343)==0) {mes "Where is documemt?";close;} //Çäåñü ÈÄ äîêóìåíòà
  673. delitem 7343,1; //Sealed Document
  674. mes "[Venice]";
  675. mes "That is great!! You got this document!";
  676. next;
  677. mes "[Venice]";
  678. mes "And how is Jargeah? Where is he?";
  679. next;
  680. mes "["+strcharinfo(0)+"]";
  681. mes "He is....";
  682. next;
  683. mes "[Venice]";
  684. mes "I see...";
  685. mes "Here is document, give it to the President!";
  686. getitem 7343,1; //Sealed Document
  687. set SCHWALTZVALT_PART2, 9; //C Venice âî âòîðîé ðàç ïîêîí÷åíî, èäåì îòäàâàòü äîêóìåíò ê Ïðåçèäåíòó.
  688. close;
  689. }
  690. if (SCHWALTZVALT_PART2==6) {
  691. mes "[Venice]";
  692. mes "Find Jargeah please!";
  693. close;
  694. }
  695. mes "["+strcharinfo(0)+"]";
  696. mes "Can I know... are you Venice?";
  697. next;
  698. if (SCHWALTZVALT_PART2!=5) {
  699. mes "[Kafra Employee]";
  700. mes "May be yes and may be no!";
  701. mes "I am thinking, go away!";
  702. close;
  703. }
  704. mes "[Venice]";
  705. mes "Yes, I am Venice.";
  706. mes "What can I do for you?";
  707. menu "Let her see the logo",-,"Nothing",V_end01;
  708. next;
  709. mes "[Venice]";
  710. mes "Now I think that I can trust you..";
  711. next;
  712. mes "[Venice]";
  713. mes "I am the member of ^FF0000Wing Of Secret^000000 organization.";
  714. mes "I got terrible news...";
  715. next;
  716. mes "[Venice]";
  717. mes "With our agent something happened on the half way between ^FF0000Lighthalzen^000000 and ^FF0000Einbroch^000000 in ^FF0000Grim Reaper's Valley^000000.";
  718. mes "He needs help, his name is ^FF0000Jargeah^000000. Hurry up please!";
  719. set SCHWALTZVALT_PART2, 6; //Ñ Venice â ïåðâûé ïîêîí÷åíî èäåì èñêàòü Jargeah
  720. close;
  721. V_end01:
  722. next;
  723. mes "[Venice]";
  724. mes "Ok, come back when you will ready.";
  725. close;
  726. }
  727. //NPC07 - Jargeah
  728. lhz_fild02.gat,228,214,1 script A Wounded Man 887,{
  729. mes "["+strcharinfo(0)+"]";
  730. mes "It looks like a dead man...";
  731. if (SCHWALTZVALT_PART2!=6) {
  732. mes "["+strcharinfo(0)+"]";
  733. mes "He is dead!!! I must go away from here...";
  734. close;
  735. }
  736. mes "Maybe I can try to find something in his clothes..";
  737. mes "...It isn't good, but I need to make it..";
  738. next;
  739. mes "...";
  740. next;
  741. mes "You found the Sealed Document!";
  742. next;
  743. getitem 7343,1; //Sealed Document
  744. set SCHWALTZVALT_PART2, 7;
  745. close;
  746. }
  747. //NPC08 - Esuna
  748. lhz_fild01.gat,66,219,3 script A Mystery Woman 859,20,20{
  749. if (SCHWALTZVALT_PART2==21) {
  750. mes "[Esuna]";
  751. mes "..........";
  752. mes "The traitor in the internal is the problem!";
  753. mes "..........";
  754. next;
  755. mes "[Esuna]";
  756. mes "Those who able to seal the secret information, and drain it to opponents, only the President ";
  757. mes "or his trusted aide with his ability ^FF0000Kurelle^000000";
  758. next;
  759. mes "[Esuna]";
  760. mes "According to this information, he often meets with the organaizer of enterprize, ";
  761. mes "from here we can said that he is the most suspicious target.";
  762. next;
  763. mes "[Esuna]";
  764. mes "After infiltrated his residence, we found a lot of information and evidences that related with him!";
  765. next;
  766. mes "[Esuna]";
  767. mes "The headquater odered us to hold any actions correlated with the President, ";
  768. mes "and we determined that there is only disadvantage and it won't bring benefits anymore...";
  769. next;
  770. mes "[Esuna]";
  771. mes "I think this is the last, good bye...";
  772. set SCHWALTZVALT_PART2, 22; //Îïÿòü ê ïðåçèäåíòó! (óáåéñÿ îá ñòåíó åùå ðàç, è ïîìíè, òû ýòî äåëàåøü ðàäè 1.8êê îïûòà)
  773. close;
  774. }
  775. if (SCHWALTZVALT_PART2==19) {
  776. mes "[Esuna]";
  777. mes "I am too nervous..I lost many people of my group!";
  778. mes "So we should use plan B. We must withdraw our members from Schwaltsvalt!";
  779. next;
  780. mes "[Esuna]";
  781. mes "I think that it will be the best thing which we can do for our people.";
  782. mes "Here is documents, containing the plan of operation and some negative information about ^0000FFRekenber Enterprise^000000, go to the President he must look throught this documents.";
  783. getitem 7343,1; //Sealed Document
  784. set SCHWALTZVALT_PART2, 20; //Îïÿòü ê ïðåçèäåíòó!
  785. close;
  786. }
  787. if (SCHWALTZVALT_PART2==17) {
  788. mes "[Esuna]";
  789. if(countitem(7344)==0) {mes "Where is Case of Xinucarse";close;} //Çäåñü ÈÄ äîêóìåíòà,
  790. mes "Haha!! You got these secret documents!! You are great!";
  791. delitem 7344,1; //Case of Xinucarse
  792. set SCHWALTZVALT_PART2, 18; //Ìèññèÿ âûïîëíåíà! part 2 finished
  793. mes "[Esuna]";
  794. mes "I addded some new docements to the file! ";
  795. getitem 7344,1; //Case of Xinucarse
  796. next;
  797. mes "[Esuna]";
  798. mes "Now go to the President with this documents! ";
  799. close;
  800. }
  801. if (SCHWALTZVALT_PART2==10) {
  802. mes "[Esuna]";
  803. mes "Due to emergency I'll give you a short brief, firstly the target of the mission is to infiltrate into the internal of enterpeise and steal the secret information.";
  804. next;
  805. mes "[Esuna]";
  806. mes "It's too difficult to ifiltrate into the iternal, but we have secret agent from our side.";
  807. mes "Go to ^0000FFpass^000000 and disarm the security system, and then bring out the information.";
  808. next;
  809. mes "[Esuna]";
  810. mes "To cheat the security system fo first to the ^FF0000L.T.G. Store^000000 and buy some stuff.";
  811. mes "After you entered, find a person called ^FF0000Lestin^000000";
  812. set SCHWALTZVALT_PART2, 11; //C êàôðî ñåðâèñîì âñå, èäåì èñêàòü Ëåñòèíà
  813. close;
  814. }
  815. mes "[Esuna]";
  816. mes "I try to find some mushrooms...bye!";
  817. close;
  818. OnTouch:
  819. if (SCHWALTZVALT_PART2==10) {
  820. mes "?????";
  821. mes "..here..plz...come over..";
  822. close;
  823. }
  824. }
  825. //Òóò âîïðîñ ñ âàðïîì, äî Ëåñòèíà íå íàøåë êàê äîéòè, íàäî âàðï ê íåìó ïîñòàâèòü...âîò òóò lhz_in01 277 157
  826. //NPC09 - Lestin
  827. lhz_in01.gat,285,169,3 script Researcher#2 865,{
  828. if (SCHWALTZVALT_PART2==16) {
  829. mes "[Lestin]";
  830. mes "My entry pass! Thank you.";
  831. if(countitem(7349)==0) {mes "Where is my enty pass?";close;} //Card To Enter Document Room.
  832. delitem 7349,1; //Card To Enter Document Room.
  833. set SCHWALTZVALT_PART2, 17; //Òåïåðü ìîæíî îòäàòü äîêóìåíòû Åñóíå è çàêîí÷èòü âòîðóþ ÷àñòü êâåñòà.
  834. next;
  835. mes "[Lestin]";
  836. mes "Now, go to Esuna with these documents. Bye!";
  837. close;
  838. }
  839. if (SCHWALTZVALT_PART2==11) {
  840. mes "["+strcharinfo(0)+"]";
  841. mes "Are you Lestin?";
  842. next;
  843. mes "[Lestin]";
  844. mes "Yes, I am!";
  845. mes "And you are a member of ^FF0000Wing Of Secret^000000 organization!";
  846. mes "I can help you to steal secret documents!";
  847. next;
  848. mes "[Lestin]";
  849. mes "Here is my ^0000FFpass^000000, but whis this ^0000FFpass^000000 you only can stay for ^FF00003 minutes^000000";
  850. getitem 7349,1; //Card To Enter Document Room.
  851. next;
  852. mes "[Lestin]";
  853. mes "The secret information is located at the right hand-side of the research room where I stayed just now. And this...!";
  854. next;
  855. mes "[Lestin]";
  856. mes "...return me my ^0000FFpass^000000 when you will finish! Good Luck!";
  857. set SCHWALTZVALT_PART2, 12; //Òåïåðü èäåì ïîõèùàòü äîêóìåíò!
  858. }
  859. mes "[Researcher]";
  860. mes "Hmm... I wonder...";
  861. close;
  862. }
  863. //Ðàñïèøó ñèñòåìó äâåðåé:
  864. //Ó Ëåñòèíà ïîëó÷àåì ïåðåìåííóþ 12...
  865. //1. åñëè 12, 13 ,14 è ôëàã äâåðè 0(ò.å. åñòü ñòðàæíèêè) èäåì àêòèâèðîâàòü ãâàðäîâ
  866. //2. çàïóñêàåòñÿ òàéìåð, ñòðàæíèêè ïðîïàäàþò, ôëàã äâåðè = 1
  867. //3. ó íàñ åñòü 3 ìèíóòû, ÷òîáû ñäåëàòü âñå, ïîäõîäèì ê äâåðè, åñëè ïðàâèëüíî ââîäèì êîä, êàðòî÷êà îñòàåòñÿ â äâåðè, íàì ïðèñâàèâàþò ïåðåìåííóþ 13, âàðïàåò âíóòðü
  868. //4. íàæèìàåì íà ñèñòåìó ïîèñêà, ââîäèì Shinokas, òîãäà ïðèñâàèâàþò 14, àêòèâèðóåòñÿ àðåà1-5
  869. //5. òûðêàåì íà àðåà1-5, ïîëó÷àåì äîêóìåíòû, íàì ïðèñâàèâàåòñÿ 15, ìîæíî èäòè ê äâåðè
  870. //6. åñëè ó íàñ 15 è ôëàã äâåðè 1 (ò.å. åøå øâàðäîâ íåò), òî áëàãîïîëó÷íî ïîëó÷àåì êàðòî÷êó íàçàä è âûõîäèì, ïîëó÷àåì 16
  871. //Åñëè íå óñïåëè è ìû âíóòðè, çíà÷èò ó íàñ ïåðåìåííàÿ 13, 14 èëè 15, ôëàã äâåðè 0, ïðîïóñê èñ÷åçàåò è íàñ âûêèäûâàåò èç ëîêàöèè, ïðèäåòñÿ ñíîâà èäòè ê Ëåñòèíó çà ïðîïóñêîì
  872. //Äîïóñòèì ó íàñ 15 î÷êîâ ìû âíóòðè, âðåìÿ èñòåêëî. Äâà âàðèàíòà - íàæàòü íà äâåðü, òîãäà ïðèäåòñÿ èäòè ê ëåñòèíó ñíîâà, ïåðåìåííàÿ 11 ñòàíîâèòñÿ. Ëèáî óìåðåòü è òîïàòü ê àêòèâàöèè ãâàðäîâ.
  873. //NPC10 - Door
  874. lhz_in01.gat,177,30,1 script Door 111,{
  875. if ( (SCHWALTZVALT_PART2==15) && ($SCHWALTZVALT_DOOR_FLAG==1) ) {
  876. mes "You take out enty key.";
  877. next;
  878. mes "["+strcharinfo(0)+"]";
  879. mes "Hm....I need to bring this key to Lestin!";
  880. getitem 7349,1; //Card To Enter Document Room.
  881. set SCHWALTZVALT_PART2, 16; //Ê Ëåñòèíó
  882. menu "Go out!",-;
  883. close2;
  884. warp "lhz_in01.gat",177,27;
  885. end;
  886. }
  887. if ( (SCHWALTZVALT_PART2<15) && (SCHWALTZVALT_PART2>=13) && ($SCHWALTZVALT_DOOR_FLAG==0) ) {
  888. menu "Go out!",-;
  889. set SCHWALTZVALT_PART2,11; //íåóäà÷à, îïÿòü ê ëåñòèíó
  890. mes "[Guards]";
  891. mes "Intruder!!!";
  892. close2;
  893. warp "lighthalzen.gat",104,238;
  894. end;
  895. }
  896. if (SCHWALTZVALT_PART2>15) { mes "I got all the documents I needed!";
  897. close;
  898. }
  899. if ((SCHWALTZVALT_PART2<13) && $SCHWALTZVALT_DOOR_FLAG==0) {
  900. mes "Here is Guards, they can't let you infiltrate!";
  901. mes "You need to wait a little.";
  902. close;
  903. }
  904. if ( (countitem(7349)>0) && (SCHWALTZVALT_PART2==12) && ($SCHWALTZVALT_DOOR_FLAG==1)) {//Card To Enter Document Room. ÈÄ ïðîïóñêà, ñïðîñèòü ó Ëóïóñà
  905. mes "You have the entry pass. You can infiltrate now.";
  906. menu "Infiltrate",-;
  907. mes "Please, input code number!";
  908. input @tmp_code;
  909. if (@tmp_code != 738495) {next; mes "Incorrect code!"; close;} //Ýòî ÷èñëî â îïèñàíèè ïðîïóñêà äîëæíî áûòü
  910. next;
  911. delitem 7349,1; //Card To Enter Document Room
  912. mes "Accepted.";
  913. mes "You can stay in the documents room only for 3 minutes!.";
  914. set SCHWALTZVALT_PART2, 13; //ïóñòèëè âíóòðü
  915. close2;
  916. warp "lhz_in01",178,33;
  917. end;
  918. }
  919. mes "....";
  920. close;
  921. }
  922. //NPC11 - Activate Guards
  923. lhz_in01.gat,187,30,4 script Point of the review 111,1,0{
  924. close;
  925. OnTouch:
  926. if ( (SCHWALTZVALT_PART2<=15) && (SCHWALTZVALT_PART2>=12) && ($SCHWALTZVALT_DOOR_FLAG==0) ){
  927. mes "...It seemed that guards gonna smoke...";
  928. stopnpctimer;
  929. initnpctimer "schwalt2timer";
  930. set $SCHWALTZVALT_DOOR_FLAG,1;
  931. close;
  932. }
  933. mes "Nothing happened..";
  934. close;
  935. }
  936. //NPC12 - File Search Engine
  937. lhz_in01.gat,180,35,4 script File Search Engine 111,1,0{
  938. close;
  939. OnTouch:
  940. if (SCHWALTZVALT_PART2==13) {
  941. mes "-Activating the document seaching program-";
  942. mes "-Please key in the information of the document...-";
  943. mes "-..that you would like to search-";
  944. input @tmp_phrase$;
  945. if (@tmp_phrase$!="Shinokas") {next; mes "Nothing interesting was found!"; close;}
  946. next;
  947. mes "-relevant information of Shinokas-";
  948. mes "-is being kept in area 1-5-";
  949. enablenpc "area 1-5";
  950. set SCHWALTZVALT_PART2, 14; //àêòèâèðîâàëè àðåà1-5
  951. close;
  952. }
  953. mes "Nothing happened..";
  954. close;
  955. }
  956. //NPC13 - area 1-5
  957. lhz_in01.gat,184,49,4 script area 1-5 111,1,0{
  958. close;
  959. OnTouch:
  960. if (SCHWALTZVALT_PART2==14) {
  961. mes "It is interesting. Here is the secret indormation about the heart of Ymir. I must bring this case to Esuna.";
  962. getitem 7344,1; //Case of Xinucarse Èä ñïðîñèòü ó Ëóïóñà
  963. set SCHWALTZVALT_PART2, 15; //Çàáðàëè äîêóìåíò, òåïåðü ê äâåðè íàðóæó
  964. close;
  965. }
  966. mes "["+strcharinfo(0)+"]";
  967. mes "I don't know what to find!";
  968. close;
  969. }
  970. //Timer
  971. lhz_in01.gat,1,1,0 script schwalt2timer -1,{
  972. OnTimer2000:
  973. disablenpc "LhzRekGuard";
  974. disablenpc "Guard#03";
  975. end;
  976. OnTimer182000:
  977. enablenpc "LhzRekGuard";
  978. enablenpc "Guard#03";
  979. disablenpc "area 1-5";
  980. set $SCHWALTZVALT_DOOR_FLAG,0;
  981. stopnpctimer "schwalt2timer";
  982. end;
  983. }