[LUA]Music NPC menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 20
  1. #1
    Edude's Avatar Member
    Reputation
    98
    Join Date
    Jul 2008
    Posts
    406
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [LUA]Music NPC

    Hi this is a simple script made by me

    Code:
    function Music_OnGossipTalk(pUnit, event, player, pMisc)
    pUnit:GossipCreateMenu(100, player, 1)
    pUnit:GossipMenuAddItem(0, "Power of the Horde!", 1, 0)
    pUnit:GossipMenuAddItem(0, "Religious Music", 2, 0)
    pUnit:GossipMenuAddItem(0, "War Drums", 3, 0)
    pUnit:GossipMenuAddItem(0, "MURLOC!!!", 4, 0)
    pUnit:GossipMenuAddItem(0, "Wooot? Illidan??", 5, 0)
    pUnit:GossipSendMenu(player)
    end
    
    
    function Music_OnGossipSelect(pUnit, event, player, id, intid, code, pMisc)
    if (intid == 1) then
    pUnit:SendChatMessage(14, 0, "LETS ROCK!")
    pUnit:PlaySoundToSet(11803)
    pUnit:GossipComplete(player)
    end
    
    if (intid == 2) then
    pUnit:SendChatMessage(12, 0, "Relax and listen...")
    pUnit:PlaySoundToSet(11699)
    pUnit:GossipComplete(player)
    end
    
    if (intid == 3) then
    pUnit:PlaySoundToSet(11704)
    pUnit:GossipComplete(player)
    end
    
    if (intid == 4) then
    pUnit:SendChatMessage(12, 0, "Rgrglrgrlgrl")
    pUnit:PlaySoundToSet(11802)
    pUnit:GossipComplete(player)
    end
    
    if (intid == 5) then
    pUnit:SendChatMessage(14, 0, "You are not prepared!")
    pUnit:PlaySoundToSet(11466)
    pUnit:GossipComplete(player)
    end
    end
    
    RegisterUnitGossipEvent(ID, 1, "Music_OnGossipTalk")
    RegisterUnitGossipEvent(ID, 2, "Music_OnGossipSelect")
    Hope you guys like it!



    CREDITS

    Me
    Succy = .Playall List
    Last edited by Edude; 11-01-2008 at 05:14 AM.

    [LUA]Music NPC
  2. #2
    lilbdiablo12's Avatar Active Member
    Reputation
    40
    Join Date
    Feb 2008
    Posts
    535
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have seen this before, i dont think it was by you though. I got it from x Elite x's Repack GM repack he made along time ago. Im not saying you didnt make it, but i have seen it

  3. #3
    Edude's Avatar Member
    Reputation
    98
    Join Date
    Jul 2008
    Posts
    406
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I never used that repack... but in that case, thanks for saying that.

    And yes I have done the script by myself ^^

  4. #4
    lilbdiablo12's Avatar Active Member
    Reputation
    40
    Join Date
    Feb 2008
    Posts
    535
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anytime, but =rep for the contribution

  5. #5
    Edude's Avatar Member
    Reputation
    98
    Join Date
    Jul 2008
    Posts
    406
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks mate

  6. #6
    volitle's Avatar Contributor
    Reputation
    181
    Join Date
    Nov 2007
    Posts
    1,127
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    looks good +rep from me


  7. #7
    Nymphx's Avatar Active Member
    Reputation
    83
    Join Date
    Sep 2008
    Posts
    212
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This dosen't look like anything you have made before, Edude. It's not your 'style' of scripting. Tbh i'd get annoyed of random noobs spamming murlocks and power for the horde.

  8. #8
    Edude's Avatar Member
    Reputation
    98
    Join Date
    Jul 2008
    Posts
    406
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So you're saying i didnt make it... <.<

  9. #9
    Nymphx's Avatar Active Member
    Reputation
    83
    Join Date
    Sep 2008
    Posts
    212
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    No i'm saying that it dosen't look like your style..

    Then again it is written in plain, like a notepad job. It's hard to distinguise similar scripts.

  10. #10
    Etna's Avatar Banned
    Reputation
    20
    Join Date
    Sep 2007
    Posts
    349
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Como on Nymphx,Be nice to this good Lua Scripter It's really nice and i like it +rep x2 when i can mate ( IF i forgot PLEASE PM me.. i got a really bad brain xD ) well Nice script and i will use this

  11. #11
    Moaradin's Avatar Contributor
    Reputation
    163
    Join Date
    Feb 2008
    Posts
    439
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Looks good. +Rep

    +rep people who help you

  12. #12
    Hellgawd's Avatar Account not activated by Email
    Reputation
    710
    Join Date
    Jun 2007
    Posts
    2,480
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hmm.. most interesting indeed. Seen this exact same thing somewhere else before, and I mean exactly. Except the text was different, but the same songs and same SendTextMessages.
    I'm sorry, but this is obviously not your work, I'm trying to find the script now

  13. #13
    Edude's Avatar Member
    Reputation
    98
    Join Date
    Jul 2008
    Posts
    406
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sorry about this, but when I copy a work, or use as a template, I say it... I made this one without copying, wether you like it or not...

    But if you guys have doubts, im gonna make a lua script for an event, to clear your heads <.<
    Last edited by Edude; 11-01-2008 at 05:16 AM.

  14. #14
    Ollox's Avatar Member
    Reputation
    5
    Join Date
    Oct 2007
    Posts
    122
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    easy script ._. sorry no +rep from me
    Lua knowledge [||||||||||]

  15. #15
    Edude's Avatar Member
    Reputation
    98
    Join Date
    Jul 2008
    Posts
    406
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Np, I understand

Page 1 of 2 12 LastLast

Similar Threads

  1. [Guide] LUA teleporter NPC template and guide!!
    By Jackie Moon in forum WoW EMU Guides & Tutorials
    Replies: 34
    Last Post: 04-07-2009, 03:36 PM
  2. [Template] LUA Teleporter NPC and Mini guide!!
    By Jackie Moon in forum WoW EMU General Releases
    Replies: 13
    Last Post: 03-15-2009, 04:07 PM
  3. LUA Teleporter NPC Template and Guide!! (easy)
    By Jackie Moon in forum WoW EMU Guides & Tutorials
    Replies: 10
    Last Post: 02-20-2009, 07:38 PM
  4. Lua Warp Npc , but it wont load -.-
    By mafiaboy in forum World of Warcraft Emulator Servers
    Replies: 1
    Last Post: 06-28-2008, 02:58 AM
  5. LUA Tele NPC.
    By Ickybad in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 06-08-2008, 06:08 AM
All times are GMT -5. The time now is 10:39 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search