Advertisement
Guest User

Professions Lua

a guest
Jul 12th, 2011
370
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 15.62 KB | None | 0 0
  1. function Skill(unit, event, player)
  2. --Menu
  3. unit:GossipCreateMenu(100, player, 0)
  4. unit:GossipMenuAddItem(3, "Professions", 154, 0)
  5. unit:GossipSendMenu(player)
  6. end
  7.  
  8. function SkillMenu(unit, event, player, id, intid, code)
  9. --Armor Menu Page 1
  10.  
  11. --Professions NPC START
  12. if(intid == 154) then
  13. unit:GossipCreateMenu(50, player, 0)
  14. unit:GossipMenuAddItem(0, "Alchemy", 400, 0)
  15. unit:GossipMenuAddItem(0, "Blacksmithing", 401, 0)
  16. unit:GossipMenuAddItem(0, "Enchanting", 402, 0)
  17. unit:GossipMenuAddItem(0, "Engineering", 403, 0)
  18. unit:GossipMenuAddItem(0, "Herbalism", 404, 0)
  19. unit:GossipMenuAddItem(0, "Inscription", 405, 0)
  20. unit:GossipMenuAddItem(0, "Jewelcrafting", 406, 0)
  21. unit:GossipMenuAddItem(0, "Leatherworking", 407, 0)
  22. unit:GossipMenuAddItem(0, "Mining", 408, 0)
  23. unit:GossipMenuAddItem(0, "Skinning", 409, 0)
  24. unit:GossipMenuAddItem(0, "Cooking", 410, 0)
  25. unit:GossipMenuAddItem(0, "First Aid", 411, 0)
  26. unit:GossipMenuAddItem(0, "Fishing", 412, 0)
  27. unit:GossipMenuAddItem(0, "Tailoring", 413, 0)
  28. unit:GossipMenuAddItem(5, "Set my skills to 450", 450,0)
  29. unit:GossipSendMenu(player)
  30. end
  31. --Alchemy
  32. if(intid == 400) then
  33. unit:GossipCreateMenu(3543, player, 0)
  34. unit:GossipMenuAddItem(3, "Unlearn Grand Master Alchemy", 415, 0)
  35. unit:GossipMenuAddItem(3, "Grand Master Alchemy", 416, 0)
  36. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  37. unit:GossipSendMenu(player)
  38. end
  39. --BlackSmithing
  40. if(intid == 401) then
  41. unit:GossipCreateMenu(3543, player, 0)
  42. unit:GossipMenuAddItem(3, "Unlearn Grand Master Blacksmithing", 417, 0)
  43. unit:GossipMenuAddItem(3, "Grand Master Blacksmithing", 418, 0)
  44. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  45. unit:GossipSendMenu(player)
  46. end
  47. --Enchanting
  48. if(intid == 402) then
  49. unit:GossipCreateMenu(3543, player, 0)
  50. unit:GossipMenuAddItem(3, "UnlearnGrand Master Enchanting", 419, 0)
  51. unit:GossipMenuAddItem(3, "Grand Master Enchanting", 420, 0)
  52. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  53. unit:GossipSendMenu(player)
  54. end
  55. --Engineering
  56. if(intid == 403) then
  57. unit:GossipCreateMenu(3543, player, 0)
  58. unit:GossipMenuAddItem(3, "Unlearn Grand Master Engineering", 421, 0)
  59. unit:GossipMenuAddItem(3, "Grand Master Engineering", 422, 0)
  60. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  61. unit:GossipSendMenu(player)
  62. end
  63. --Herbalism
  64. if(intid == 404) then
  65. unit:GossipCreateMenu(3543, player, 0)
  66. unit:GossipMenuAddItem(3, "Unlearn Grand Master Herbalism", 423, 0)
  67. unit:GossipMenuAddItem(3, "Grand Master Herbalism", 424, 0)
  68. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  69. unit:GossipSendMenu(player)
  70. end
  71. --Inscription
  72. if(intid == 405) then
  73. unit:GossipCreateMenu(3543, player, 0)
  74. unit:GossipMenuAddItem(3, "Unlearn Grand Master Inscription", 425, 0)
  75. unit:GossipMenuAddItem(3, "Grand Master Inscription", 426, 0)
  76. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  77. unit:GossipSendMenu(player)
  78. end
  79. --Jewelcrafting
  80. if(intid == 406) then
  81. unit:GossipCreateMenu(3543, player, 0)
  82. unit:GossipMenuAddItem(3, "Unlearn Grand Master Jewelcrafting", 427, 0)
  83. unit:GossipMenuAddItem(3, "Grand Master Jewelcrafting", 428, 0)
  84. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  85. unit:GossipSendMenu(player)
  86. end
  87. --Leatherworking
  88. if(intid == 407) then
  89. unit:GossipCreateMenu(3543, player, 0)
  90. unit:GossipMenuAddItem(3, "Unlearn Grand Master Leatherworking", 429, 0)
  91. unit:GossipMenuAddItem(3, "Grand Master Leatherworking", 430, 0)
  92. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  93. unit:GossipSendMenu(player)
  94. end
  95. --Mining
  96. if(intid == 408) then
  97. unit:GossipCreateMenu(3543, player, 0)
  98. unit:GossipMenuAddItem(3, "Unlearn Grand Master Mining", 431, 0)
  99. unit:GossipMenuAddItem(3, "Grand Master Mining", 432, 0)
  100. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  101. unit:GossipSendMenu(player)
  102. end
  103. --Skinning
  104. if(intid == 409) then
  105. unit:GossipCreateMenu(3543, player, 0)
  106. unit:GossipMenuAddItem(3, "Unlearn Grand Master Skinning", 433, 0)
  107. unit:GossipMenuAddItem(3, "Grand Master Skinning", 434, 0)
  108. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  109. unit:GossipSendMenu(player)
  110. end
  111. --Cooking
  112. if(intid == 410) then
  113. unit:GossipCreateMenu(3543, player, 0)
  114. unit:GossipMenuAddItem(3, "Unlearn Grand Master Cooking", 435, 0)
  115. unit:GossipMenuAddItem(3, "Grand Master Cooking", 436, 0)
  116. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  117. unit:GossipSendMenu(player)
  118. end
  119. --First Aid
  120. if(intid == 411) then
  121. unit:GossipCreateMenu(3543, player, 0)
  122. unit:GossipMenuAddItem(3, "Unlearn Grand Master First Aid", 437, 0)
  123. unit:GossipMenuAddItem(3, "Grand Master First Aid", 438, 0)
  124. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  125. unit:GossipSendMenu(player)
  126. end
  127. --Fishing
  128. if(intid == 412) then
  129. unit:GossipCreateMenu(3543, player, 0)
  130. unit:GossipMenuAddItem(3, "Unlearn Grand Master Fishing", 439, 0)
  131. unit:GossipMenuAddItem(3, "Grand Master Fishing", 440, 0)
  132. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  133. unit:GossipSendMenu(player)
  134. end
  135. --Tailor
  136. if(intid == 413) then
  137. unit:GossipCreateMenu(3543, player, 0)
  138. unit:GossipMenuAddItem(3, "Unlearn Grand Master Tailor", 441, 0)
  139. unit:GossipMenuAddItem(3, "Grand Master Tailor", 442, 0)
  140. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  141. unit:GossipSendMenu(player)
  142. end
  143. --This is the unlearn/learn procces
  144.  
  145. if(intid == 415) then
  146. unit:GossipCreateMenu(3544, player, 0)
  147. player:UnlearnSpell(51303)
  148. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  149. unit:GossipSendMenu(player)
  150. end
  151.  
  152. if(intid == 416) then
  153. unit:GossipCreateMenu(3544, player, 0)
  154. unit:FullCastSpellOnTarget(2259, player)
  155. unit:FullCastSpellOnTarget(3101, player)
  156. unit:FullCastSpellOnTarget(3464, player)
  157. unit:FullCastSpellOnTarget(11611, player)
  158. unit:FullCastSpellOnTarget(28596, player)
  159. unit:FullCastSpellOnTarget(51303, player)
  160. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  161. unit:GossipSendMenu(player)
  162. end
  163.  
  164. if(intid == 417) then
  165. unit:GossipCreateMenu(3544, player, 0)
  166. player:UnlearnSpell(51298)
  167. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  168. unit:GossipSendMenu(player)
  169. end
  170.  
  171. if(intid == 418) then
  172. unit:GossipCreateMenu(3544, player, 0)
  173. unit:FullCastSpellOnTarget(2018, player)
  174. unit:FullCastSpellOnTarget(3100, player)
  175. unit:FullCastSpellOnTarget(9785, player)
  176. unit:FullCastSpellOnTarget(29844, player)
  177. unit:FullCastSpellOnTarget(51298, player)
  178. unit:FullCastSpellOnTarget(9788, player)
  179. unit:FullCastSpellOnTarget(9787, player)
  180. unit:FullCastSpellOnTarget(17041, player)
  181. unit:FullCastSpellOnTarget(17040, player)
  182. unit:FullCastSpellOnTarget(17039, player)
  183. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  184. unit:GossipSendMenu(player)
  185. end
  186.  
  187. if(intid == 419) then
  188. unit:GossipCreateMenu(3544, player, 0)
  189. player:UnlearnSpell(51312)
  190. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  191. unit:GossipSendMenu(player)
  192. end
  193.  
  194. if(intid == 420) then
  195. unit:GossipCreateMenu(3544, player, 0)
  196. unit:FullCastSpellOnTarget(7411, player)
  197. unit:FullCastSpellOnTarget(7412, player)
  198. unit:FullCastSpellOnTarget(7413, player)
  199. unit:FullCastSpellOnTarget(13920, player)
  200. unit:FullCastSpellOnTarget(28029, player)
  201. unit:FullCastSpellOnTarget(51312, player)
  202. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  203. unit:GossipSendMenu(player)
  204. end
  205.  
  206. if(intid == 421) then
  207. unit:GossipCreateMenu(3544, player, 0)
  208. player:UnlearnSpell(51305)
  209. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  210. unit:GossipSendMenu(player)
  211. end
  212.  
  213. if(intid == 422) then
  214. unit:GossipCreateMenu(3544, player, 0)
  215. unit:FullCastSpellOnTarget(4036, player)
  216. unit:FullCastSpellOnTarget(4037, player)
  217. unit:FullCastSpellOnTarget(4038, player)
  218. unit:FullCastSpellOnTarget(12656, player)
  219. unit:FullCastSpellOnTarget(30350, player)
  220. unit:FullCastSpellOnTarget(51305, player)
  221. unit:FullCastSpellOnTarget(20219, player)
  222. unit:FullCastSpellOnTarget(20222, player)
  223. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  224. unit:GossipSendMenu(player)
  225. end
  226.  
  227. if(intid == 423) then
  228. unit:GossipCreateMenu(3544, player, 0)
  229. player:UnlearnSpell(50301)
  230. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  231. unit:GossipSendMenu(player)
  232. end
  233.  
  234. if(intid == 424) then
  235. unit:GossipCreateMenu(3544, player, 0)
  236. unit:FullCastSpellOnTarget(2366, player)
  237. unit:FullCastSpellOnTarget(2368, player)
  238. unit:FullCastSpellOnTarget(3570, player)
  239. unit:FullCastSpellOnTarget(11993, player)
  240. unit:FullCastSpellOnTarget(28695, player)
  241. unit:FullCastSpellOnTarget(50301, player)
  242. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  243. unit:GossipSendMenu(player)
  244. end
  245.  
  246. if(intid == 425) then
  247. unit:GossipCreateMenu(3544, player, 0)
  248. player:UnlearnSpell(45380)
  249. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  250. unit:GossipSendMenu(player)
  251. end
  252.  
  253. if(intid == 426) then
  254. unit:GossipCreateMenu(3544, player, 0)
  255. unit:FullCastSpellOnTarget(45357, player)
  256. unit:FullCastSpellOnTarget(45358, player)
  257. unit:FullCastSpellOnTarget(45359, player)
  258. unit:FullCastSpellOnTarget(45360, player)
  259. unit:FullCastSpellOnTarget(45361, player)
  260. unit:FullCastSpellOnTarget(45380, player)
  261. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  262. unit:GossipSendMenu(player)
  263. end
  264.  
  265. if(intid == 427) then
  266. unit:GossipCreateMenu(3544, player, 0)
  267. player:UnlearnSpell(51310)
  268. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  269. unit:GossipSendMenu(player)
  270. end
  271.  
  272. if(intid == 428) then
  273. unit:GossipCreateMenu(3544, player, 0)
  274. unit:FullCastSpellOnTarget(25229, player)
  275. unit:FullCastSpellOnTarget(25230, player)
  276. unit:FullCastSpellOnTarget(28894, player)
  277. unit:FullCastSpellOnTarget(28895, player)
  278. unit:FullCastSpellOnTarget(28897, player)
  279. unit:FullCastSpellOnTarget(51310, player)
  280. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  281. unit:GossipSendMenu(player)
  282. end
  283.  
  284. if(intid == 429) then
  285. unit:GossipCreateMenu(3544, player, 0)
  286. player:UnlearnSpell(51301)
  287. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  288. unit:GossipSendMenu(player)
  289. end
  290.  
  291. if(intid == 430) then
  292. unit:GossipCreateMenu(3544, player, 0)
  293. unit:FullCastSpellOnTarget(2108, player)
  294. unit:FullCastSpellOnTarget(3104, player)
  295. unit:FullCastSpellOnTarget(3811, player)
  296. unit:FullCastSpellOnTarget(10662, player)
  297. unit:FullCastSpellOnTarget(32549, player)
  298. unit:FullCastSpellOnTarget(51301, player)
  299. unit:FullCastSpellOnTarget(10656, player)
  300. unit:FullCastSpellOnTarget(10658, player)
  301. unit:FullCastSpellOnTarget(10660, player)
  302. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  303. unit:GossipSendMenu(player)
  304. end
  305.  
  306. if(intid == 431) then
  307. unit:GossipCreateMenu(3544, player, 0)
  308. player:UnlearnSpell(50309)
  309. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  310. unit:GossipSendMenu(player)
  311. end
  312.  
  313. if(intid == 432) then
  314. unit:GossipCreateMenu(3544, player, 0)
  315. unit:FullCastSpellOnTarget(2575, player)
  316. unit:FullCastSpellOnTarget(2576, player)
  317. unit:FullCastSpellOnTarget(3564, player)
  318. unit:FullCastSpellOnTarget(10248, player)
  319. unit:FullCastSpellOnTarget(29354, player)
  320. unit:FullCastSpellOnTarget(50309, player)
  321. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  322. unit:GossipSendMenu(player)
  323. end
  324.  
  325. if(intid == 433) then
  326. unit:GossipCreateMenu(3544, player, 0)
  327. player:UnlearnSpell(50307)
  328. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  329. unit:GossipSendMenu(player)
  330. end
  331.  
  332. if(intid == 434) then
  333. unit:GossipCreateMenu(3544, player, 0)
  334. unit:FullCastSpellOnTarget(8613, player)
  335. unit:FullCastSpellOnTarget(8617, player)
  336. unit:FullCastSpellOnTarget(8618, player)
  337. unit:FullCastSpellOnTarget(10768, player)
  338. unit:FullCastSpellOnTarget( 32678, player)
  339. unit:FullCastSpellOnTarget(50307, player)
  340. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  341. unit:GossipSendMenu(player)
  342. end
  343.  
  344. if(intid == 435) then
  345. unit:GossipCreateMenu(3544, player, 0)
  346. player:UnlearnSpell(51295)
  347. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  348. unit:GossipSendMenu(player)
  349. end
  350.  
  351. if(intid == 436) then
  352. unit:GossipCreateMenu(3544, player, 0)
  353. unit:FullCastSpellOnTarget(2550, player)
  354. unit:FullCastSpellOnTarget(3102, player)
  355. unit:FullCastSpellOnTarget(3413, player)
  356. unit:FullCastSpellOnTarget(18260, player)
  357. unit:FullCastSpellOnTarget(33359, player)
  358. unit:FullCastSpellOnTarget(51295, player)
  359. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  360. unit:GossipSendMenu(player)
  361. end
  362.  
  363. if(intid == 437) then
  364. unit:GossipCreateMenu(3544, player, 0)
  365. player:UnlearnSpell(50299)
  366. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  367. unit:GossipSendMenu(player)
  368. end
  369.  
  370. if(intid == 438) then
  371. unit:GossipCreateMenu(3544, player, 0)
  372. unit:FullCastSpellOnTarget(50299, player)
  373. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  374. unit:GossipSendMenu(player)
  375. end
  376.  
  377. if(intid == 439) then
  378. unit:GossipCreateMenu(3544, player, 0)
  379. player:UnlearnSpell(51293)
  380. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  381. unit:GossipSendMenu(player)
  382. end
  383.  
  384. if(intid == 440) then
  385. unit:GossipCreateMenu(3544, player, 0)
  386. unit:FullCastSpellOnTarget(7620, player)
  387. unit:FullCastSpellOnTarget(7731, player)
  388. unit:FullCastSpellOnTarget(7732, player)
  389. unit:FullCastSpellOnTarget(18248, player)
  390. unit:FullCastSpellOnTarget(33095, player)
  391. unit:FullCastSpellOnTarget(51293, player)
  392. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  393. unit:GossipSendMenu(player)
  394. end
  395.  
  396. if(intid == 441) then
  397. unit:GossipCreateMenu(3544, player, 0)
  398. player:UnlearnSpell(51308)
  399. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  400. unit:GossipSendMenu(player)
  401. end
  402.  
  403. if(intid == 442) then
  404. unit:GossipCreateMenu(3544, player, 0)
  405. unit:FullCastSpellOnTarget(3908, player)
  406. unit:FullCastSpellOnTarget(3909, player)
  407. unit:FullCastSpellOnTarget(3910, player)
  408. unit:FullCastSpellOnTarget(12180, player)
  409. unit:FullCastSpellOnTarget(26790, player)
  410. unit:FullCastSpellOnTarget(51308, player)
  411. unit:FullCastSpellOnTarget(26798, player)
  412. unit:FullCastSpellOnTarget(26801, player)
  413. unit:FullCastSpellOnTarget(26797, player)
  414. unit:GossipMenuAddItem(0, "|cffff0000Back", 154, 0)
  415. unit:GossipSendMenu(player)
  416. end
  417.  
  418. --Advanceskill 450
  419. if (intid == 450) then
  420. unit:GossipCreateMenu(3545, player, 0)
  421. player:AdvanceSkill(333, 450)
  422. player:AdvanceSkill(197, 450)
  423. player:AdvanceSkill(202, 450)
  424. player:AdvanceSkill(755, 450)
  425. player:AdvanceSkill(171, 450)
  426. player:AdvanceSkill(164, 450)
  427. player:AdvanceSkill(182, 450)
  428. player:AdvanceSkill(165, 450)
  429. player:AdvanceSkill(186, 450)
  430. player:AdvanceSkill(393, 450)
  431. player:AdvanceSkill(185, 450)
  432. player:AdvanceSkill(129, 450)
  433. player:AdvanceSkill(356, 450)
  434. player:AdvanceSkill(773, 450)
  435. player:AdvanceSkill(264, 500)
  436. player:AdvanceSkill(5011, 500)
  437. player:AdvanceSkill(1180, 500)
  438. player:AdvanceSkill(204, 500)
  439. player:AdvanceSkill(15590, 500)
  440. player:AdvanceSkill(266, 500)
  441. player:AdvanceSkill(196, 500)
  442. player:AdvanceSkill(198, 500)
  443. player:AdvanceSkill(201, 500)
  444. player:AdvanceSkill(200, 500)
  445. player:AdvanceSkill(227, 500)
  446. player:AdvanceSkill(2567, 500)
  447. player:AdvanceSkill(197, 500)
  448. player:AdvanceSkill(199, 500)
  449. player:AdvanceSkill(202, 500)
  450. player:AdvanceSkill(203, 500)
  451. player:AdvanceSkill(5009, 500)
  452. unit:SendChatMessage(12,0,"Your skills has been set to 450!")
  453. unit:GossipMenuAddItem(0, "|cffff0000Back", 210, 0)
  454. unit:GossipSendMenu(player)
  455. end
  456.  
  457. if(intid == 210) then
  458. unit:GossipCreateMenu(3599, player, 0)
  459. unit:GossipMenuAddItem(0, "Alchemy", 400, 0)
  460. unit:GossipMenuAddItem(0, "Blacksmithing", 401, 0)
  461. unit:GossipMenuAddItem(0, "Enchanting", 402, 0)
  462. unit:GossipMenuAddItem(0, "Engineering", 403, 0)
  463. unit:GossipMenuAddItem(0, "Herbalism", 404, 0)
  464. unit:GossipMenuAddItem(0, "Inscription", 405, 0)
  465. unit:GossipMenuAddItem(0, "Jewelcrafting", 406, 0)
  466. unit:GossipMenuAddItem(0, "Leatherworking", 407, 0)
  467. unit:GossipMenuAddItem(0, "Mining", 408, 0)
  468. unit:GossipMenuAddItem(0, "Skinning", 409, 0)
  469. unit:GossipMenuAddItem(0, "Cooking", 410, 0)
  470. unit:GossipMenuAddItem(0, "First Aid", 411, 0)
  471. unit:GossipMenuAddItem(0, "Fishing", 412, 0)
  472. unit:GossipMenuAddItem(0, "Tailoring", 413, 0)
  473. unit:GossipMenuAddItem(5, "Set my profession skills to 450", 450,0)
  474. unit:GossipMenuAddItem(0, "|cffff0000Back", 200, 0)
  475. unit:GossipSendMenu(player)
  476. end
  477. end
  478.  
  479.  
  480. RegisterUnitGossipEvent(CHANGEID, 1,"Skill")
  481. RegisterUnitGossipEvent(CHANGEID, 2,"SkillMenu")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement