tuecher.txt 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. event.load("quest_start");
  2. event.load("quest_term");
  3. event.load("entity_click");
  4. event.load("player_toss");
  5. event.load("player_pickup");
  6. stage = 0;
  7. all_stages = 5;
  8. quest_name = "Tücher";
  9. wool = 0;
  10. wool_tag = item.getTag("minecraft:wool");
  11. loom_list = list.new();
  12. loom_list_2 = list.new();
  13. par = particle.get("minecraft:witch");
  14. loom_coarse = 0;
  15. loom_cloth = 0;
  16. needed_amount = 4;
  17. @wait
  18. wait();
  19. if(event == "living_death") {
  20. player = player.getFromDamageSource(damage_source);
  21. if(player == null) {
  22. goto("wait");
  23. }
  24. }
  25. if(!player.isQuester(player, script)) {
  26. goto("wait");
  27. }
  28. if(event == "quest_term") {
  29. //Hier Code einfügen...
  30. wait(); //Script wird von außen terminiert
  31. }
  32. if(event == "quest_start") {
  33. quest.display(player, quest_name, stage, all_stages);
  34. msg.prefix(player, "§dRolf", "Mh… Hallo. Ich brauche Tücher. Schere doch 8 Schafe, aber zackig!");
  35. player.giveSingleItem(player, read.item("minecraft:shears"), false);
  36. goto("wait");
  37. }
  38. label = concat("stage", text.number(stage));
  39. goto(label);
  40. @stage0
  41. if(event == "entity_click") {
  42. entity_type = entity.getType(entity);
  43. if(entity_type == "sheep") {
  44. if(!sheep.isSheared(entity)) {
  45. item = entity.getEquip(player, "hand");
  46. item_type = item.getType(item);
  47. if(item_type == "minecraft:shears") {
  48. wool++;
  49. if(wool == 8) {
  50. stage.increase(player);
  51. }
  52. }
  53. }
  54. }
  55. }
  56. goto("wait");
  57. @stage1
  58. if(event == "entity_click" && hand == "MAIN_HAND" && entity.getType(entity) == "human") {
  59. entity_name = entity.getName(entity);
  60. if(entity_name == "Rolf") {
  61. msg.prefix(player, "§dRolf", "Ich brauch doch keine Wolle, ich will Tücher!");
  62. scheduler.msgPrefix(30, player, concat("§5", player.getName(player)), "Und wie geht das?");
  63. scheduler.msgPrefix(60, player, "§dRolf", "Siehst du den Webstuhl da? Schmeiß die Wolle einzeln darauf.");
  64. scheduler.msgPrefix(90, player, "§dRolf", "Schaue ihn direkt an und drücke Q (Drop-Taste) um ihn zu benutzen.");
  65. stage.increase(player);
  66. }
  67. }
  68. goto("wait");
  69. @stage2
  70. if(event == "player_pickup") {
  71. if(item.hasTag(wool_tag, item)) {
  72. loom_coarse -= item.getAmount(item);
  73. if(loom_coarse < 0) {
  74. loom_coarse = 0;
  75. }
  76. }
  77. goto("wait");
  78. }
  79. if(event == "player_toss") {
  80. target_loc = player.getTarget(player, 5);
  81. block_type = block.getType(target_loc);
  82. if(block_type == "minecraft:loom") {
  83. cancel = true;
  84. if(!item.hasTag(wool_tag, item)) {
  85. player.giveItem(player, item);
  86. inv.update(player);
  87. goto("wait");
  88. }
  89. item_entity = item.entity.new(loc.mod(target_loc, 0.5, 1.5, 0.5), item);
  90. item.entity.spawn(item_entity);
  91. a = array.new(3);
  92. a[0] = target_loc;
  93. a[1] = item_entity;
  94. a[2] = read.item("km:coarse_cloth");
  95. list.add(loom_list, a);
  96. sgoto(40, "sloom");
  97. }
  98. }
  99. goto("wait");
  100. @sloom
  101. if(loom_coarse > 4) {
  102. goto("wait");
  103. }
  104. a = list.getIndex(loom_list, 0);
  105. list.removeIndex(loom_list, 0);
  106. location = a[0];
  107. input_item_entity = a[1];
  108. output_item = a[2];
  109. loom_coarse += loom(location, input_item_entity, output_item);
  110. if(loom_coarse >= 4) {
  111. if(msg_01 == null) {
  112. msg.prefix(player, "§dRolf", "Stop! Ich will doch nicht noch mehr raue Tücher! Wirf nun jeweils ein Wollstück und ein raues Tuch auf den Webstuhl.");
  113. msg_01 = true;
  114. stage.increase(player);
  115. }
  116. }
  117. goto("wait");
  118. function loom(location, input_item_entity, output_item) {
  119. input_item = item.entity.get(input_item_entity);
  120. amount = item.getAmount(input_item);
  121. item.setAmount(output_item, amount);
  122. item.entity.set(input_item_entity, output_item);
  123. entity.throw(input_item_entity, 0, 0.3, 0);
  124. particle.spawn(loc.mod(location, 0.5, 1.4, 0.5), $par, 20, 0, 0.25, 0.25, 0.25);
  125. return amount;
  126. }
  127. @stage3
  128. if(event == "player_pickup") {
  129. if(item.getType(item) == "km:cloth") {
  130. loom_cloth += item.getAmount(item);
  131. if(loom_cloth >= 4) {
  132. stage.increase(player);
  133. msg.prefix(player, "§dRolf", "Perfekt. Jetzt gib mir die Tücher.");
  134. }
  135. }
  136. goto("wait");
  137. }
  138. if(event == "player_toss") {
  139. item_type = item.getType(item);
  140. if(item_type == "km:cloth") {
  141. loom_cloth -= item.getAmount(item);
  142. if(loom_cloth < 0) {
  143. loom_cloth = 0;
  144. }
  145. goto("wait");
  146. }
  147. target_loc = player.getTarget(player, 5);
  148. block_type = block.getType(target_loc);
  149. if(block_type == "minecraft:loom") {
  150. cancel = true;
  151. if(!(item.hasTag(wool_tag, item) || item_type == "km:coarse_cloth")) {
  152. player.giveItem(player, item);
  153. inv.update(player);
  154. goto("wait");
  155. }
  156. item_entity = item.entity.new(loc.mod(target_loc, 0.5, 1.5, 0.5), item);
  157. item.entity.spawn(item_entity);
  158. a = array.new(3);
  159. a[0] = target_loc;
  160. a[1] = item_entity;
  161. a[2] = read.item("km:cloth");
  162. list.add(loom_list_2, a);
  163. sgoto(40, "sloom_2");
  164. }
  165. }
  166. goto("wait");
  167. @sloom_2
  168. a = list.getIndex(loom_list_2, 0);
  169. list.removeIndex(loom_list_2, 0);
  170. location = a[0];
  171. input_item_entity = a[1];
  172. output_item = a[2];
  173. loom2(location, input_item_entity, output_item);
  174. goto("wait");
  175. function loom2(location, input_item_entity_1, output_item) {
  176. input_item_1 = item.entity.get(input_item_entity_1);
  177. amount_1 = item.getAmount(input_item_1);
  178. type_1 = item.getType(input_item_1);
  179. list = entity.near(input_item_entity_1, 0.2);
  180. list.add(list, input_item_entity_1);
  181. if(list.getSize(list) < 2) {
  182. return;
  183. }
  184. iter = list.iterator(list);
  185. while(hasNext(iter)) {
  186. input_item_entity_2 = next(iter);
  187. input_item_2 = item.entity.get(input_item_entity_2);
  188. type_2 = item.getType(input_item_2);
  189. if(type_1 == type_2) {
  190. continue;
  191. }
  192. if(item.hasTag($wool_tag, input_item_2) || type_2 == "km:coarse_cloth") {
  193. amount_2 = item.getAmount(input_item_2);
  194. break;
  195. }
  196. }
  197. if(amount_2 == null) {
  198. return;
  199. }
  200. if(amount_1 > amount_2) {
  201. amount = amount_2;
  202. amount_2 = 0;
  203. amount_1 -= amount;
  204. } else {
  205. amount = amount_1;
  206. amount_1 = 0;
  207. amount_2 -= amount;
  208. }
  209. item.setAmount(input_item_1, amount_1);
  210. item.setAmount(input_item_2, amount_2);
  211. item.entity.set(input_item_entity_1, input_item_1);
  212. item.entity.set(input_item_entity_2, input_item_2);
  213. item.setAmount(output_item, amount);
  214. item_entity_output = item.entity.new(loc.mod(location, 0.5, 1.1, 0.5), output_item);
  215. item.entity.spawn(item_entity_output);
  216. entity.throw(item_entity_output, 0, 0.2, 0);
  217. particle.spawn(loc.mod(location, 0.5, 1.4, 0.5), $par, 20, 0, 0.25, 0.25, 0.25);
  218. }
  219. @stage4
  220. if(event == "entity_click" && hand == "MAIN_HAND" && entity.getType(entity) == "human") {
  221. entity_name = entity.getName(entity);
  222. if(entity_name == "Rolf") {
  223. rest_amount = human.giveItem(entity_name, player, "km:cloth", needed_amount);
  224. if(rest_amount == 0) {
  225. msg.prefix(player, "§dRolf", "Vielen Dank!");
  226. money.addBoost(player, 8);
  227. msg(player, "§dQuest abgeschlossen. Belohnung: 8 Snuvis!");
  228. quest.finish(script, player);
  229. } else {
  230. needed_amount = rest_amount;
  231. }
  232. }
  233. }
  234. goto("wait");