Guest User

Untitled

a guest
Nov 24th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. command
  2. put
  3. keyword = "put"
  4.  
  5. var
  6. arg1Type = kArguments.TOKEN_WORD
  7. arg1Keyword = "item"
  8. arg1Required = TRUE
  9. arg1ErrorNotSpecified = "Put what into what?"
  10. arg1Delimiter = "in"
  11. arg1DelimiterRequired = FALSE
  12.  
  13. arg2Type = kArguments.TOKEN_WORD
  14. arg2Keyword = "container"
  15. arg2Required = TRUE
  16. arg2ErrorNotSpecified = "What do you want to put it into?"
  17.  
  18. execute(client/client, item, container)
  19. client << "You tried to put '[item]' into '[container]'."
Add Comment
Please, Sign In to add comment