MMOCoin

Likes Likes:  0
Results 1 to 4 of 4

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Beginner
    BadboyStar's Avatar
    Join Date
    Aug 2008
    Posts
    1
    Post Thanks / Like
    Rep Power
    18
    Reputation
    1

    Re:

    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")


    Last edited by BadboyStar; 17-08-08 at 05:50 AM.



  2. Related Threads - Scroll Down after related threads if you are only interested to view replies for above post/thread

 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •