Nice service, very handy for people who can't script it self. And cheap as well.
This is the script he made me, max skill npc:
Code:
local npcid = 5000003
function SKILL_OnGossipTalk(pUnit, event, player, pMisc)
pUnit:GossipCreateMenu(100, player, 0)
pUnit:GossipMenuAddItem(5, "Max my skills.", 1, 0)
pUnit:GossipSendMenu(player)
end
function SKILL_OnGossipSelect(pUnit, event, player, id, intid, code, pMisc)
if (intid == 1) then
player:AdvanceSkill(201,350)
player:AdvanceSkill(202,350)
player:AdvanceSkill(5011,350)
player:AdvanceSkill(1180,350)
player:AdvanceSkill(15590,350)
player:AdvanceSkill(266,350)
player:AdvanceSkill(196,350)
player:AdvanceSkill(198,350)
player:AdvanceSkill(200,350)
player:AdvanceSkill(227,350)
player:AdvanceSkill(197,350)
player:AdvanceSkill(199,350)
player:AdvanceSkill(203,350)
pUnit:GossipComplete(player)
end
end
RegisterUnitGossipEvent(npcid, 1, "SKILL_OnGossipTalk")
RegisterUnitGossipEvent(npcid, 2, "SKILL_OnGossipSelect")
Bookmarks