Advertisement
MiniRoger123

Examples

Dec 15th, 2018
401
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.18 KB | None | 0 0
  1. EFFECT FOR A SPECIFIC PLAYER
  2.  
  3. (create|make) [a ][advanced ]json (for|to) %player% with [message ]%text% with [tooltip ]%text% with [tag ](suggest|command|insertion|url) (and with|with) [the ][tag ][action ]%text%
  4.  
  5. EFFECT FOR ALL PLAYERS:
  6.  
  7. (create|make) [a ][advanced ]json broadcast with [message ]%text% with [tooltip ]%text% with [tag ](suggest|command|insertion|url) (and with|with) [the ][tag ][action ]%text%
  8.  
  9. The text that is enclosed in "( )" is mandatory
  10. The text that is enclosed in "[ ]" is optional
  11.  
  12. Examples:
  13. create json for [player] with message [text] with tooltip [text] with suggest and with the tag action [text]
  14. make a advanced json to [player] with [text] with tooltip [text] with suggest and with action [text]
  15.  
  16. The version 1.1.2 Has a new system of effect's
  17.  
  18. After: (create|make) [a advanced ]json broadcast with [message ]%text% with [tooltip ]%text% with [tag ](suggest|command|insertion|url) (and with|with) [the ][tag ][action ]%text%
  19.  
  20. Now: (create|make) [a ][advanced ]json broadcast with [message ]%text% with [tooltip ]%text% with [tag ](suggest|command|insertion|url) (and with|with) [the ][tag ][action ]%text%
  21.  
  22. Old and New Effects works correctly.
  23.  
  24. Command Examples:
  25.  
  26. command /command [<player>] [<text>] [<text>] [<text>]:
  27. trigger:
  28. if arg 1 is set:
  29. if arg 2 is set:
  30. if arg 4 is set:
  31. if arg 5 is set:
  32. create json for arg 1 with message arg 2 with tooltip arg 3 with tag command with the tag action arg 4
  33.  
  34. command /cmd-bc [<text>] [<text>] [<text>] [<text>]:
  35. trigger:
  36. if arg 1 is set:
  37. if arg 2 is set:
  38. if arg 3 is set:
  39. create json broadcast with message arg 1 with tooltip arg 2 with tag command with the tag action arg 3
  40.  
  41.  
  42. #URL
  43. command /url [<player>] [<text>] [<text>] [<text>]:
  44. trigger:
  45. if arg 1 is set:
  46. if arg 2 is set:
  47. if arg 4 is set:
  48. if arg 5 is set:
  49. make a advanced json to arg 1 with arg 2 with arg 3 with url with tag action arg 4
  50.  
  51. command /url-bc [<text>] [<text>] [<text>] [<text>]:
  52. trigger:
  53. if arg 1 is set:
  54. if arg 2 is set:
  55. if arg 3 is set:
  56. create json broadcast with message arg 1 with tooltip arg 2 with tag url with the tag action arg 3
  57.  
  58. #suggest
  59. command /suggest [<player>] [<text>] [<text>] [<text>]:
  60. trigger:
  61. if arg 1 is set:
  62. if arg 2 is set:
  63. if arg 4 is set:
  64. if arg 5 is set:
  65. create json for arg 1 with message arg 2 with tooltip arg 3 with tag suggest with the tag action arg 4
  66.  
  67. command /sug-bc [<text>] [<text>] [<text>] [<text>]:
  68. trigger:
  69. if arg 1 is set:
  70. if arg 2 is set:
  71. if arg 3 is set:
  72. create json broadcast with message arg 1 with tooltip arg 2 with tag suggest with the tag action arg 3
  73.  
  74. #insertion
  75. command /insertion [<player>] [<text>] [<text>] [<text>]:
  76. trigger:
  77. if arg 1 is set:
  78. if arg 2 is set:
  79. if arg 4 is set:
  80. if arg 5 is set:
  81. create json for arg 1 with message arg 2 with tooltip arg 3 with tag insertion with the tag action arg 4
  82.  
  83. command /ins-bc [<text>] [<text>] [<text>] [<text>]:
  84. trigger:
  85. if arg 1 is set:
  86. if arg 2 is set:
  87. if arg 3 is set:
  88. create json broadcast with message arg 1 with tooltip arg 2 with tag insertion with the tag action arg 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement