Guest User

Untitled

a guest
Feb 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. CmdUtils.CreateCommand({
  2. name: "echo",
  3. takes: {"your shout": noun_arb_text},
  4. preview: function( pblock, theShout ) {
  5. pblock.innerHTML = "Will echo: " + theShout.html;
  6. },
  7. execute: function( theShout ) {
  8. var msg = theShout.html+ "... " + theShout.html+ "......";
  9. displayMessage( msg );
  10. }
  11. })
Add Comment
Please, Sign In to add comment