Advertisement
Guest User

customs.py

a guest
Jan 12th, 2016
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.18 KB | None | 0 0
  1. import minqlx
  2.  
  3. class customs(minqlx.Plugin):
  4.    
  5.     def __init__(self):
  6.         self.add_command("customs", self.cmd_customs)
  7.  
  8.     def cmd_customs(self, player, msg, channel):
  9.         player.tell("^3100 MB map pack:\n"
  10.         "^7akumacpm1a       ^3- ^7optimized for PQL\n"
  11.         "^7astronomybeta    ^3- ^7optimized for PQL\n"
  12.         "^7astronomy_ix     ^3- ^7optimized for PQL\n"
  13.         "^7cht3\n"
  14.         "^7cpm15            ^3- ^7optimized for PQL\n"
  15.         "^7cpm23            ^3- ^7optimized for PQL\n"
  16.         "^7eizdm4_b15       ^3- ^7optimized for PQL\n"
  17.         "^7fjo3tourney1\n"
  18.         "^7megadm4_09\n"
  19.         "^7necro6\n"
  20.         "^7ne_duel\n"
  21.         "^7ospdm8a\n"
  22.         "^7plduel1          ^3- ^7optimized for PQL\n"
  23.         "^7pukka3dm1        ^3- ^7optimized for PQL\n"
  24.         "^7pukka3tourney3   ^3- ^7optimized for PQL\n"
  25.         "^7pukka3tourney4   ^3- ^7optimized for PQL\n"
  26.         "^7pukka3tourney5   ^3- ^7optimized for PQL\n"
  27.         "^7q3nem06_v2\n"
  28.         "^7q3tourney2\n"
  29.         "^7reqtourney1      ^3- ^7optimized for PQL\n"
  30.         "^7rota3dm1\n"
  31.         "^7rota3dm2\n"
  32.         "^7rota3tourney1\n")
  33.         return minqlx.RET_STOP_ALL
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement