Advertisement
Guest User

Untitled

a guest
Oct 20th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. RIBBONS.menuKey = KEY_F5; // What key to open the medal menu? (You can also just bind a key to the menu command)
  2. RIBBONS.maxMedals = 5;
  3.  
  4. RIBBONS.commandCategory = "Medals";
  5.  
  6. RIBBONS.menuChatCommand = "/medalmenu";
  7. RIBBONS.menuConsoleCommand = "ulx medalmenu";
  8.  
  9. RIBBONS.listChatCommand = "/listmedals";
  10. RIBBONS.listConsoleCommand = "ulx medallist";
  11.  
  12. RIBBONS.giveMedalChatCommand = "/givemedal";
  13. RIBBONS.giveMedalConsoleCommand = "ulx givemedal";
  14.  
  15. RIBBONS.takeMedalChatCommand = "/takemedal";
  16. RIBBONS.takeMedalConsoleCommand = "ulx takemedal";
  17.  
  18. // Menu Settings
  19. RIBBONS.menuColor = Color(0, 0, 0, 200);
  20. RIBBONS.menuInnerColor = Color(200, 200, 200, 200);
  21.  
  22. RIBBONS.medalNameColor = Color(255, 255, 255);
  23.  
  24. RIBBONS.ownedMedalsText = "Owned Medals";
  25. RIBBONS.ownedMedalsTextColor = Color(255, 255, 255);
  26.  
  27. RIBBONS.selectedMedalsText = "Selected Medals";
  28. RIBBONS.selectedMedalsTextColor = Color(255, 255, 255);
  29.  
  30.  
  31. RIBBONS.medals = {
  32. ["Runnner"] = {
  33. image = "icon16/award_star_bronze_1.png",
  34. allowed = {"superadmin"}, // What ranks can give this medal? (Note: If not set, anyone who can use the give medal command can give this)
  35. description = [[Awarded for wasting time running around]],
  36. },
  37. ["Mass killer"] = {
  38. image = "icon16/award_star_gold_3.png",
  39. description = [[Awarded for killing many users without getting banned]],
  40. },
  41. ["Admin badge"] = {
  42. image = "icon16/award_star_gold_2.png",
  43. description = [[Be an admin]],
  44. },
  45. ["Tyrant"] = {
  46. image = "icon16/award_star_gold_1.png",
  47. description = [[Be the owner]],
  48. },
  49. ["Joker"] = {
  50. image = "icon16/award_star_Silver_3.png",
  51. description = [[Laugh your way out of trouble]],
  52. },
  53. ["Officer"] = {
  54. image = "icon16/award_star_Silver_1.png",
  55. description = [[Outstanding police work]],
  56. },
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement