Advertisement
Guest User

Untitled

a guest
May 27th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1.  
  2. if turn == 1 then
  3. characters["Cagliostro"]:UseSkill(1)
  4. characters["Threo"]:UseSkill(2)
  5. characters["Threo"]:UseSkill(3)
  6. characters["Eahta"]:UseSkill(2)
  7. characters["Eahta"]:UseSkill(3)
  8. characters["ゆうさく"]:UseSkill(3)
  9. characters["ゆうさく"]:UseSkill(2)
  10. characters["ゆうさく"]:UseSkill(4)
  11. end
  12.  
  13. if turn == 2 then
  14. characters["Eahta"]:UseSkill(2)
  15. end
  16.  
  17. if turn == 3 then
  18. characters["Eahta"]:UseSkill(2)
  19. characters["Threo"]:UseSkill(1)
  20. characters["Cagliostro"]:UseSkill(3)
  21. if (characters["Threo"].charge_gauge >= 100) then
  22. EnableChargeAttack()
  23. end
  24. end
  25.  
  26. if turn == 4 then
  27. characters["Eahta"]:UseSkill(1)
  28. characters["ゆうさく"]:UseSkill(1)
  29. end
  30.  
  31. if turn == 5 then
  32. UseSupportPotion()
  33. UseGreenPotionOnPartyMember(2)
  34. end
  35.  
  36. if turn == 6 then
  37. characters["Cagliostro"]:UseSkill(2)
  38. characters["Eahta"]:UseSkill(3)
  39. characters["Eahta"]:UseSkill(1)
  40. UseSupportPotion()
  41. end
  42.  
  43. if turn == 7 then
  44. Summon(1)
  45. end
  46.  
  47. if turn == 8 then
  48. UseGreenPotionOnPartyMember(2)
  49. end
  50.  
  51. if turn >= 9 then
  52. if characters["Cagliostro"] ~= nil then
  53. characters["Cagliostro"]:UseSkill(1)
  54. characters["Cagliostro"]:UseSkill(2)
  55. characters["Cagliostro"]:UseSkill(3)
  56. end
  57. if characters["Threo"] ~= nil then
  58. characters["Threo"]:UseSkill(2)
  59. characters["Threo"]:UseSkill(1)
  60. if turn == 12 then
  61. characters["Threo"]:UseSkill(4)
  62. end
  63. end
  64. if characters["Eahta"] ~= nil then
  65. characters["Eahta"]:UseSkill(1)
  66. if (characters["Eahta"].charge_gauge >= 30) then
  67. characters["Eahta"]:UseSkill(2)
  68. end
  69. characters["Eahta"]:UseSkill(3)
  70. end
  71. if characters["ゆうさく"] ~= nil then
  72. characters["ゆうさく"]:UseSkill(1)
  73. characters["ゆうさく"]:UseSkill(3)
  74. characters["ゆうさく"]:UseSkill(2)
  75. characters["ゆうさく"]:UseSkill(4)
  76. end
  77. if characters["Melleau"] ~= nil then
  78. characters["Melleau"]:UseSkill(1)
  79. characters["Melleau"]:UseSkill(3)
  80. characters["Melleau"]:UseSkill(2)
  81. end
  82. if characters["Yggdrasil"] ~= nil then
  83. if (characters["Yggdrasil"].charge_gauge >= 10) then
  84. characters["Yggdrasil"]:UseSkill(1)
  85. end
  86. if (characters["Yggdrasil"].charge_gauge >= 20) then
  87. characters["Yggdrasil"]:UseSkill(2)
  88. end
  89. characters["Yggdrasil"]:UseSkill(3)
  90. end
  91. Summon(4)
  92. end
  93.  
  94.  
  95. if turn == 10 then
  96. Summon(4)
  97. end
  98.  
  99. if turn == 11 then
  100. Summon(6)
  101. UseGreenPotionOnPartyMember(2)
  102. end
  103.  
  104. if turn == 12 then
  105. Summon(5)
  106. end
  107.  
  108.  
  109. Summon(2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement