Advertisement
Guest User

Untitled

a guest
Jan 17th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.67 KB | None | 0 0
  1. # MyCommand v3.2 Commands Config File
  2. # - commandsnumber (default 20) it's number of command you want make
  3. # - Don't forget the '/' on runcmd line , example command: /myhelp
  4. # - type accept = text , runcommand , broadcast-text , runcommand-text , runcommand-broadcast-text , perm-broadcast-text --
  5. # - , addpermission , addtimer , runconsole , runcommand-perm-broadcast-text
  6. # - Additional type accept if you use Spoutplugin = spout-text .
  7. # - runcommand type example -> If command: /l and runcmd: /list,when you type /l mycommand execute /list
  8. # - runcmd support custom argument in game.($arg1,$arg2,$arg3,$arg4,$arg5,$multiargs) Example - runcmd : /time $arg1
  9. # - For Delayed command add $delay$ before the command in runcmd Example : - $delay$/list
  10. # - Set delay time with delaytimer: 5 (5 = seconds)
  11. # - http://dev.bukkit.org/server-mods/mycommand/pages/configuration-and-example/
  12. options:
  13. commandsnumber: 20
  14. '1':
  15. command: /mycmd-sampletext
  16. type: text
  17. text:
  18. - $red Hello $darkgreen$player!
  19. runcmd:
  20. - /sample
  21. delaytimer: 5
  22. '2':
  23. command: /mycmd-dice
  24. type: text
  25. text:
  26. - $red You got $darkgreen$rnd6 !
  27. runcmd:
  28. - /sample
  29. delaytimer: 5
  30. '3':
  31. command: /mycmd-runcommand
  32. type: runcommand
  33. text:
  34. - $red Text of command $black3
  35. runcmd:
  36. - /list
  37. delaytimer: 5
  38. '4':
  39. command: /mycmd-args
  40. type: runcommand
  41. text:
  42. - $red Text of command $black4
  43. runcmd:
  44. - /time $arg1 $arg2
  45. delaytimer: 5
  46. '5':
  47. command: /mycmd-runcmdtimer
  48. type: runcommand
  49. text:
  50. - $red Text of command $black5
  51. runcmd:
  52. - $delay$/say 3..
  53. - $delay$/say 2..
  54. - $delay$/say 1..
  55. delaytimer: 1
  56. '6':
  57. command: /mycmd-broadcast
  58. type: broadcast-text
  59. text:
  60. - $blue MyCommand Broadcast Test
  61. runcmd:
  62. - /sample
  63. delaytimer: 5
  64. '7':
  65. command: /mycmd-spoutsample
  66. type: spout-text
  67. text:
  68. - $green -Spout Text-
  69. - $black Line 2
  70. runcmd:
  71. - /sample
  72. delaytimer: 5
  73. '8':
  74. command: /mycmd-runconsole
  75. type: runconsole
  76. text:
  77. - $red Text of command $black8
  78. runcmd:
  79. - /say This /say it's performed by console.
  80. delaytimer: 5
  81. '9':
  82. command: /mycmd-addtimer
  83. type: text
  84. text:
  85. - $gold Put your command over /mycmd-addtimer
  86. - '$gold And change type : from text to addtimer'
  87. runcmd:
  88. - /sample
  89. delaytimer: 5
  90. '10':
  91. command: /mycmd-addpermission
  92. type: text
  93. text:
  94. - $gold Put your command over /mycmd-addpermission
  95. - '$gold And change type : from text to addpermission'
  96. runcmd:
  97. - /sample
  98. delaytimer: 5
  99. '11':
  100. command: /mycmd-textargs
  101. type: text
  102. text:
  103. - 'Player Name : $player'
  104. - 'World : $world'
  105. - 'Health : $health Food : $food'
  106. - 'Exp : $exp Level : $level'
  107. - 'Gamemode : $gamemode'
  108. - 'LastDamage : $lastdamage'
  109. runcmd:
  110. - /sample
  111. delaytimer: 5
  112. '12':
  113. command: /mycmd-online
  114. type: text
  115. text:
  116. - $red There are $online players online.
  117. runcmd:
  118. - /sample
  119. delaytimer: 5
  120. '13':
  121. command: /ClearChat
  122. type: broadcast-text
  123. text:
  124. - '%Repeat%100% '
  125. - $blueThe chat has been cleared by a staff member for an unknown reason
  126. - $redThe chat has been cleared by a staff member for an unknown reason
  127. - $darkgreenThe chat has been cleared by a staff member for an unknown reason
  128. - $purpleThe chat has been cleared by a staff member for an unknown reason
  129. - $yellowThe chat has been cleared by a staff member for an unknown reason
  130. runcmd:
  131. - /sample
  132. delaytimer: 5
  133. '14':
  134. command: /fleave
  135. type: broadcast-text
  136. text:
  137. - $yellow$player left the game.
  138. runcmd:
  139. - /sample
  140. delaytimer: 5
  141. '15':
  142. command: /fjoin
  143. type: broadcast-text
  144. text:
  145. - $yellow$player joined the game.
  146. runcmd:
  147. - /sample
  148. delaytimer: 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement