[Event] Hide And Seek menu

User Tag List

Page 1 of 5 12345 LastLast
Results 1 to 15 of 71
  1. #1
    Murlock.'s Avatar Knight-Lieutenant
    Reputation
    86
    Join Date
    Oct 2007
    Posts
    271
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Event] Hide And Seek

    This NPC makes Hide And Seek events easier to setup and easier to cleanup. All, you have to do is spawn him somewhere and announce the event!

    Features:
    -Easy prize distribution
    -Announces to players that the NPC has been found
    -Despawns after prize has been claimed

    Just change the ITEMID with the prizes IDs, the ITEM_NAME with the prizes name, finally change the NPCID with your NPCs ID.

    Here's the script!

    function On_Gossip (pUnit, event, player)
    pUnit:GossipCreateMenu(100, player, 0)
    pUnit:GossipMenuAddItem(9, "Claim Your Prize!", 1, 0)
    pUnit:GossipSendMenu(player)
    end

    function Gossip_Submenus(pUnit, event, player, id, intid, code)
    if(intid == 1) then
    pUnit:GossipCreateMenu(101, player, 0)
    pUnit:GossipMenuAddItem(9, "ITEM_NAME", 2, 0)
    pUnit:GossipMenuAddItem(9, "ITEM_NAME", 3, 0)
    pUnit:GossipMenuAddItem(9, "ITEM_NAME", 4, 0)
    pUnit:GossipSendMenu(player)
    end

    if(intid == 2) then
    pUnit:SendChatMessage(14, 0, "I have been found! The event is over!")
    player:AddItem(ITEMID, 1)
    pUnit:Despawn(0, 0)
    end

    if(intid == 3) then
    pUnit:SendChatMessage(14, 0, "I have been found! The event is over!")
    player:AddItem(ITEMID, 1)
    pUnit:Despawn(0, 0)
    end

    if(intid == 4) then
    pUnit:SendChatMessage(14, 0, "I have been found! The event is over!")
    player:AddItem(ITEMID, 1)
    pUnit:Despawn(0, 0)
    end
    end

    RegisterUnitGossipEvent(NPCID, 1, "On_Gossip")
    RegisterUnitGossipEvent(NPCID, 2, "Gossip_Submenus")
    Please post feedback!

    EDIT:
    -credit to Karlo for updating code to work.

    Last edited by Murlock.; 10-05-2008 at 12:27 PM.

    [Event] Hide And Seek
  2. #2
    RyeRye's Avatar Contributor
    Reputation
    240
    Join Date
    Aug 2008
    Posts
    996
    Thanks G/R
    0/1
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Screenshots please?

    Other then that it looks good.



  3. #3
    cyianos's Avatar Member
    Reputation
    6
    Join Date
    Feb 2008
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice! very useful npc! +Rep for ya buddy

  4. #4
    datastream's Avatar Member
    Reputation
    1
    Join Date
    Jun 2007
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Looks good, I will use it thanks.
    Not usre if I can but +rep

  5. #5
    Sounddead's Avatar Contributor
    Reputation
    160
    Join Date
    Sep 2007
    Posts
    1,126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Actually thats really nice. Very nice idea man. +rep

  6. #6
    Murlock.'s Avatar Knight-Lieutenant
    Reputation
    86
    Join Date
    Oct 2007
    Posts
    271
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the positive feedback

    I will try to get screenshots when I have free time

  7. #7
    мιяаgє's Avatar Member
    Reputation
    42
    Join Date
    Jan 2008
    Posts
    210
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Oh mah gawd, I was working on this :S
    Beat me to the punch :P. +Rep


  8. #8
    Gastricpenguin's Avatar Legendary
    Reputation
    980
    Join Date
    Feb 2007
    Posts
    2,236
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Noice work
    Life Puzzler WoW - Website | Forums

  9. #9
    Murlock.'s Avatar Knight-Lieutenant
    Reputation
    86
    Join Date
    Oct 2007
    Posts
    271
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hehe :P

    Thanks gastric

  10. #10
    cristian89's Avatar Member
    CoreCoins Purchaser
    Reputation
    1
    Join Date
    Sep 2007
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    plizz the sql man!

  11. #11
    Deadsmite's Avatar Member
    Reputation
    9
    Join Date
    Sep 2008
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is this run-able on Mangos?

  12. #12
    Murlock.'s Avatar Knight-Lieutenant
    Reputation
    86
    Join Date
    Oct 2007
    Posts
    271
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Deadsmite View Post
    Is this run-able on Mangos?

    No sorry

  13. #13
    azeon's Avatar Banned
    Reputation
    29
    Join Date
    Sep 2007
    Posts
    163
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    awesome man

  14. #14
    mcclouder's Avatar Member
    Reputation
    3
    Join Date
    Jul 2008
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice work ^^ although I am not that familliar with Hide N Seek

  15. #15
    Murlock.'s Avatar Knight-Lieutenant
    Reputation
    86
    Join Date
    Oct 2007
    Posts
    271
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mcclouder View Post
    Nice work ^^ although I am not that familliar with Hide N Seek
    It's simple ^.^
    Pretty fun event where players usually look for a GM. But, with this NPC you can spawn it and let it be until a player find it

Page 1 of 5 12345 LastLast

Similar Threads

  1. [Just4Fun] Rift Hide and Seek Challenge
    By Muramasa in forum Rift
    Replies: 2
    Last Post: 06-11-2011, 06:07 PM
  2. Hide and seek anyone?
    By Hatecrime in forum World of Warcraft General
    Replies: 3
    Last Post: 07-26-2010, 11:49 AM
  3. Snack's Interactive Hide And Seek
    By snuffz in forum Screenshot & Video Showoff
    Replies: 0
    Last Post: 02-24-2009, 05:56 PM
  4. Event: Hide n seek mod
    By pewor in forum World of Warcraft Emulator Servers
    Replies: 5
    Last Post: 08-13-2008, 08:17 AM
  5. Strange Hide 'n' seek place!
    By Strichnine in forum World of Warcraft Exploits
    Replies: 16
    Last Post: 11-17-2007, 07:20 PM
All times are GMT -5. The time now is 08:43 AM. 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