Valkyrie.txt 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //1.1 label fixed [Lupus]
  2. yuno_in02.gat,93,207,0 script Heaven's Door 111,{
  3. if (Class < 7) goto L_Can;
  4. mes "[The writing on the paper]";
  5. mes "You have found the entrance to the temple.";
  6. mes "This path is only open to those who are born again.";
  7. mes "Only heroes can open new paths.";
  8. next;
  9. mes "[The writing on the paper]";
  10. mes "The area for heroes has been completed,";
  11. mes "You cannot be immortal, but in this land...";
  12. mes "Heroes are able to.";
  13. next;
  14. mes "[The writing on the paper]";
  15. mes "The area for heroes has been completed,";
  16. mes "You cannot be immortal, but in this land...";
  17. mes "Heroes are able to.";
  18. next;
  19. menu "Continue reading",-,"Stop reading",L_Can;
  20. mes "[The writing on the paper]";
  21. mes "Heaven and the closest palce,";
  22. mes "In the Valkyrie's temple you shall find the path";
  23. mes "A normal mortal cannot live for ever.";
  24. next;
  25. warp "valkyrie",48,8;
  26. close;
  27. L_Can:
  28. mes "[The writing on the paper]";
  29. mes "....................";
  30. close;
  31. }
  32. valkyrie.gat,48,86,6 script Valkyrie 811,{
  33. if (class > 7) goto L_Rest;
  34. mes "[Valkyrie]";
  35. mes "Welcome to Valhalla.";
  36. mes "But, you have not been invited yet.";
  37. mes "Leave here without leaving a trace.";
  38. mes "Glory to the Swordsmans!";
  39. warp "yuno_in02",93,205;
  40. close;
  41. L_Rest:
  42. mes "[Valkyrie]";
  43. mes "Welcome to Valhalla.";
  44. mes "Take plenty of rest while you are here.";
  45. mes "Honor and glory to the Swordsmans";
  46. close;
  47. }