Advertisement
kolton

Untitled

Jan 29th, 2012
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. function Test() {
  2. print("ΓΏc8TESTING");
  3.  
  4. include("common/collmap.js");
  5.  
  6. function KeyDown(key) {
  7. if (key === 45) {
  8. test();
  9. }
  10. }
  11.  
  12. addEventListener("keydown", KeyDown);
  13.  
  14. addEventListener("chatmsg", qq);
  15.  
  16. while (true) {
  17. delay(2e5);
  18. }
  19. }
  20.  
  21. function qq(nick, msg) {
  22. print(nick + ": " + msg);
  23. }
  24.  
  25. Config.Cubing = true;
  26. Config.Recipes.push([Recipe.Test, 10]);
  27. Cubing.init();
  28.  
  29. function test() {
  30. Town.clearInventory();
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement