test.txt 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. p = read.player("marvinius");
  2. command2.unregister("cmdsendworkaround");
  3. cmd = command2.newHelp("fly", "fly");
  4. command2.addHelpArgument(cmd, command2.newHelpSpecial("Player", "player"));
  5. command2.addHelpArgument(cmd, command2.newHelpLiteral("wusi"));
  6. command2.registerHelp(cmd);
  7. cmd = command2.newHelp("icon", "icon");
  8. command2.addHelpArgument(cmd, command2.newhelpstring("gusi", false));
  9. command2.registerHelp(cmd);
  10. cmd = command2.newHelp("tp", "tp");
  11. command2.addHelpArgument(cmd, command2.newHelpLiteral("wusi"));
  12. command2.registerHelp(cmd);
  13. cmd = command2.newHelp("allsounds", "allsounds");
  14. command2.addHelpArgument(cmd, command2.newHelpInt("wusi", 0, 100));
  15. command2.registerHelp(cmd);
  16. cmd = command2.newHelp("abc", "abc");
  17. command2.addHelpArgument(cmd, command2.newHelpInt("wusi", 0, 100));
  18. command2.registerHelp(cmd);
  19. cmd = command2.newHelp("iteminfo", "iteminfo");
  20. command2.addHelpArgument(cmd, command2.newHelpSpecial("Item", "item"));
  21. command2.addHelpArgument(cmd, command2.newHelpSpecial("Player", "player"));
  22. command2.registerHelp(cmd);
  23. cmd = command2.newHelp("iteminfo", "iteminfo");
  24. command2.addHelpArgument(cmd, command2.newHelpLiteral("gusi"));
  25. command2.addHelpArgument(cmd, command2.newHelpLiteral("wusi"));
  26. command2.addHelpArgument(cmd, command2.newHelpLiteral("susi", "susi"));
  27. command2.addHelpArgument(cmd, command2.newHelpLiteral("kusi"));
  28. command2.registerHelp(cmd);
  29. msg("dev",text.new("wusi"));
  30. msg("SERVER",text.new("wusi"));