Guest User

C3notes.py

a guest
Nov 8th, 2015
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.20 KB | None | 0 0
  1. notesname_instruments_array = {
  2. "PART DRUMS" : "DRUMS",
  3. "PART GUITAR" : "5LANES",
  4. "PART BASS" : "5LANES",
  5. "PART VOCALS" : "VOCALS",
  6. "PART KEYS" : "5LANES",
  7. "PART REAL_KEYS_X": "PROKEYS",
  8. "PART REAL_KEYS_H": "PROKEYS",
  9. "PART REAL_KEYS_M": "PROKEYS",
  10. "PART REAL_KEYS_E": "PROKEYS",
  11. "PART KEYS_ANIM_LH": "PROKEYS",
  12. "PART KEYS_ANIM_RH": "PROKEYS",
  13. "HARM1": "VOCALS",
  14. "HARM2": "VOCALS",
  15. "HARM3": "VOCALS",
  16. "PART DRUMS 2X": "DRUMS",
  17. "PART RHYTHM": "5LANES",
  18. "PART REAL_GUITAR": "PROGUITAR",
  19. "PART REAL_GUITAR_22": "PROGUITAR",
  20. "PART REAL_BASS": "PROGUITAR",
  21. "PART REAL_BASS_22": "PROGUITAR"
  22. }
  23.  
  24. ...
  25.  
  26. "PROGUITAR" :
  27. {
  28. 127 : ["TRILL MARKER", "markers"],
  29. 126 : ["TREMOLO MARKER", "markers"],
  30. 125 : ["BRE", "bre"],
  31. 124 : ["BRE", "bre"],
  32. 123 : ["BRE", "bre"],
  33. 122 : ["BRE", "bre"],
  34. 121 : ["BRE", "bre"],
  35. 120 : ["BRE", "bre"],
  36. 116 : ["Overdrive", "od"],
  37. 115 : ["Solo Marker", "solo"],
  38. 108 : ["LEFT HAND POSITION", "markers"],
  39. 104 : ["Expert Arpeggio Marker", "markers"],
  40. 103 : ["Expert Slider Marker", "markers"],
  41. 102 : ["Expert Force HOPO On", "markers"],
  42. 101 : ["Expert E String (High)", "notes_x"],
  43. 100 : ["Expert B String", "notes_x"],
  44. 99 : ["Expert G String", "notes_x"],
  45. 98 : ["Expert D String", "notes_x"],
  46. 97 : ["Expert A String", "notes_x",],
  47. 96 : ["Expert E String (Low)", "notes_x"],
  48. 80 : ["Expert Arpeggio Marker", "markers"],
  49. 79 : ["Hard Slider Marker", "markers"],
  50. 78 : ["Hard Force HOPO On", "markers"],
  51. 77 : ["Hard E String (High)", "markers"],
  52. 76 : ["Hard B String", "notes_h"],
  53. 75 : ["Hard G String", "notes_h"],
  54. 74 : ["Hard D String", "notes_h"],
  55. 73 : ["Hard A String", "notes_h"],
  56. 72 : ["Hard E String (Low)", "notes_h"],
  57. 55 : ["Medium Slider Marker", "markers"],
  58. 54 : ["Medium Force HOPO On", "markers"],
  59. 53 : ["Medium E String (High)", "markers"],
  60. 52 : ["Medium B String", "notes_m"],
  61. 51 : ["Medium G String", "notes_m"],
  62. 50 : ["Medium D String", "notes_m"],
  63. 49 : ["Medium A String", "notes_m"],
  64. 48 : ["Medium E String (Low)", "notes_m"],
  65. 31 : ["Easy Slider Marker", "markers"],
  66. 29 : ["Easy E String (High)", "notes_e"],
  67. 28 : ["Easy B String", "notes_e"],
  68. 27 : ["Easy G String", "notes_e"],
  69. 26 : ["Easy D String", "notes_e"],
  70. 25 : ["Easy A String", "notes_e"],
  71. 24 : ["Easy E String (Low)", "notes_e"],
  72. 17 : ["Hide Chord Names", "markers"],
  73. 15 : ["Eb root note", "root_notes"],
  74. 14 : ["D root note", "root_notes"],
  75. 13 : ["Db root note", "root_notes"],
  76. 12 : ["C root note", "root_notes"],
  77. 11 : ["B root note", "root_notes"],
  78. 10 : ["Bb root note", "root_notes"],
  79. 9 : ["A root note", "root_notes"],
  80. 8 : ["Ab root note", "root_notes"],
  81. 7 : ["G root note", "root_notes"],
  82. 6 : ["Gb root note", "root_notes"],
  83. 5 : ["F root note", "root_notes"],
  84. 4 : ["E root note", "root_notes"]
  85. }
Advertisement
Add Comment
Please, Sign In to add comment