Hidden Places Tele Npc Updated 30+ Now! menu

User Tag List

Page 1 of 3 123 LastLast
Results 1 to 15 of 45
  1. #1
    benzkool's Avatar Member
    Reputation
    23
    Join Date
    Nov 2008
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Hidden Places Tele Npc Updated 30+ Now!

    Hello again this is Ben with an update for my .lua / .sql script for Hidden Ports NPC.
    This new post has screen shots of a few of my favorite places!!

    So lets get started-

    For these to work you cannot have a tele NPC already in your scripts.

    (Not to be rude, if you can't use .sql yet you probably shouldn't be reading this)

    Steps for using-
    1 - Go into server configs and then "arcemu-world" or "ascent-world"
    2 - Find
    Code:
    <ScriptBackends LUA="0" AS="0">
    Change it to
    Code:
    <ScriptBackends LUA="1" AS="0">
    3 - Copy and Paste code below into notepad and save as title of the code box's
    4 - Enter in Hidden Warps.sql into Database using Heisql or Navicat
    5 - Enter in Hidden Warps.lua into folder "scripts" in your server core folder.
    6 - Start or Restart server and type .npc spawn 66666 and see my teles!


    Hidden Warps.SQL
    (No Update From Last Post)


    Code:
    INSERT INTO `creature_names` VALUES ('66666', 'Teleports', 'To Hidden Places', '', '0', '0', '0', '3', '0', '0', '16167', '0', '0', '0', '1', '1', '0', null);
    INSERT INTO `creature_proto` VALUES ('66666', '80', '80', '35', '10000', '10000', '10000', '1', '3', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '360000', '2002', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '100', '0', '0', '2.5', '8', '14', '0', '0', '0', '0', '0', '0', '0');
    Hidden Warps.LUA
    (Ton Of Updates Since Last Post)


    Code:
    function On_Gossip(unit, event, player)
    unit:GossipCreateMenu(3544, player, 0)
    unit:GossipMenuAddItem(2, "Hidden Places", 1, 0)
    unit:GossipMenuAddItem(2, "Hidden Places 2", 3, 0)
    unit:GossipMenuAddItem(2, "(F) = Favorite", 2, 0)
    unit:GossipSendMenu(player)
    end
    
    function Gossip_Submenus(unit, event, player, id, intid, code)
    
    if(intid == 999) then
    unit:GossipCreateMenu(3543, player, 0)
    unit:GossipMenuAddItem(2, "Hidden Places", 1, 0)
    unit:GossipMenuAddItem(2, "Hidden Places 2", 3, 0)
    unit:GossipMenuAddItem(2, "(F) = Favorite", 2, 0)
    unit:GossipSendMenu(player)
    end
    
    if(intid == 1) then
    unit:GossipCreateMenu(3543, player, 0) 
    unit:GossipMenuAddItem(1, "South Seas", 34, 0)
    unit:GossipMenuAddItem(1, "Hidden Camp", 35, 0)
    unit:GossipMenuAddItem(1, "Stonetalon Mountains", 36, 0)
    unit:GossipMenuAddItem(1, "Some Stone", 37, 0)
    unit:GossipMenuAddItem(1, "Unknown", 38, 0)
    unit:GossipMenuAddItem(1, "Old Hillsbrad", 39, 0)
    unit:GossipMenuAddItem(1, "Airport", 40, 0)
    unit:GossipMenuAddItem(1, "Better Darkshore", 41, 0)
    unit:GossipMenuAddItem(1, "On Top Dun Morogh", 42, 0)
    unit:GossipMenuAddItem(1, "Old IF", 43, 0)
    unit:GossipMenuAddItem(1, "Castle, Docks, & Flying Fish!", 44, 0)
    unit:GossipMenuAddItem(1, "Mulgore", 45, 0)
    unit:GossipMenuAddItem(1, "No Name!", 46, 0)
    unit:GossipMenuAddItem(1, "Blackchar Cave", 47, 0)
    unit:GossipMenuAddItem(0, "Back", 999, 0)
    unit:GossipSendMenu(player)
    end
    
    if(intid == 3) then
    unit:GossipCreateMenu(3543, player, 0)
    unit:GossipMenuAddItem(1, "Alter", 16, 0)
    unit:GossipMenuAddItem(1, "Wetlands Farm", 17, 0)
    unit:GossipMenuAddItem(1, "Highest Spot In World", 18, 0)
    unit:GossipMenuAddItem(1, "Ferals", 19, 0)
    unit:GossipMenuAddItem(1, "Dire Maul", 20, 0)
    unit:GossipMenuAddItem(1, "Crypt", 48, 0)
    unit:GossipMenuAddItem(1, "Nice Open Land", 21, 0)
    unit:GossipMenuAddItem(1, "Hyjal", 22, 0)
    unit:GossipMenuAddItem(1, "Water Under Water?", 23, 0)
    unit:GossipMenuAddItem(1, "The Marsh", 29, 0)
    unit:GossipMenuAddItem(1, "Good Place For LvL Road", 27, 0)
    unit:GossipMenuAddItem(1, "Unfinished Region", 30, 0)
    unit:GossipMenuAddItem(1, "Texture Meet", 31, 0)
    unit:GossipMenuAddItem(1, "Quel'Thalas Tower", 32, 0)
    unit:GossipMenuAddItem(0, "Back", 999, 0)
    unit:GossipSendMenu(player)
    end
    
    if(intid== 2) then
    unit:GossipCreateMenu(3543, player, 0)
    unit:GossipMenuAddItem(1, "(F)Cave", 24, 0)
    unit:GossipMenuAddItem(1, "(F)Carnival", 25, 0)
    unit:GossipMenuAddItem(1, "(F)Shack", 28, 0)
    unit:GossipMenuAddItem(1, "(F)Good Place For Mall", 26, 0)
    unit:GossipMenuAddItem(1, "(F)Custom Town", 33, 0)
    unit:GossipMenuAddItem(1, "(F)Custom Town 2", 15, 0)
    unit:GossipMenuAddItem(1, "(F)Alliance Jail", 14, 0)
    unit:GossipMenuAddItem(1, "(F)Horde Jail", 13, 0)
    unit:GossipMenuAddItem(0, "Back", 999, 0)
    unit:GossipSendMenu(player)
    end
    
    if(intid == 34) then
        player:Teleport(1, -11812.622070, -4742.063477, 6.393911)
    end
    if(intid == 35) then
        player:Teleport(0, -6177.947754, -761.462769, 423.045898)
    end
    if(intid == 36) then
        player:Teleport(1, 1806.056152, 1437.497681, 167.147919)
    end
    if(intid == 37) then
        player:Teleport(1, 2814.080322, 2248.703125, 215.486191)
    end
    if(intid == 38) then
        player:Teleport(36, -1939.969604, 443.571930, 59.377697)
    end
    if(intid == 39) then
        player:Teleport(560, 2635.961914, -278.525665, 149.280167)
    end
    if(intid == 40) then
        player:Teleport(0, -4653, -1688, 504)
    end
    if(intid == 41) then
        player:Teleport(1, 7477.748047, -1573.777710, 198.481674)
    end
    if(intid == 42) then
        player:Teleport(0, -4795.883301, -1000.524048, 895.791626)
    end
    if(intid == 43) then
        player:Teleport(0, -4815.312500, -971.277771, 464.708954)
    end
    if(intid == 44) then
        player:Teleport(560, 3602.619873, 2287.018799, 59.256119)
    end
    if(intid == 45) then
        player:Teleport(1, -2204.196289, 423.247314, 173.272491)
    end
    if(intid == 46) then
        player:Teleport(1, -9140.728516, 1594.322510, 20.035799)
    end
    if(intid == 47) then
        player:Teleport(0, -7347, -642, 294.586121)
    end
    if(intid == 48) then
        player:Teleport(0, -11069, -1795, 53.731037)
    end
    if(intid == 16) then
        player:Teleport(560, 3672.952881, -214.583542, 80.487816)
    end
    if(intid == 17) then
        player:Teleport(0, -4008.987549, -1280.995850, 146.769638)
    end
    if(intid == 18) then
        player:Teleport(1, 5128.426758, -3800.285156, 1970.802490)
    end
    if(intid == 19) then
        player:Teleport(1, -2797.171387, 1023.446533, 63.361565)
    end
    if(intid == 20) then
        player:Teleport(1, -3390.920654, 1114.148193, 137.641739)
    end
    if(intid == 21) then
        player:Teleport(0, -5582, 887, 393)
    end
    if(intid == 22) then
        player:Teleport(1, 4674, -3638, 966)
    end
    if(intid == 23) then
        player:Teleport(1, -12205, 3061, -22)
    end
    if(intid == 24) then
        player:Teleport(1, 4849, -1775, 1163)
    end
    if(intid == 25) then
        player:Teleport(1, -6310, -3952, -58)
    end
    if(intid == 26) then
        player:Teleport(37, -598, -227, 355)
    end
    if(intid == 27) then
        player:Teleport(0, -8119, -9, 172)
    end
    if(intid == 28) then
        player:Teleport(0, -8261, -199, 270)
    end
    if(intid == 29) then
        player:Teleport(0, -11122, -3790, 38)
    end
    if(intid == 30) then
        player:Teleport(0, 2231.971191, 2242.839111, 99.736877)
    end
    if(intid == 31) then
        player:Teleport(0, -13010.2, -1617.82, 143.272476)
    end
    if(intid == 32) then
        player:Teleport(0, 4299.212402, -2761.831299, 16.694981)
    end
    if(intid == 33) then
        player:Teleport(1, -10736.7, 2445, 7.531)
    end
    if(intid == 15) then
        player:Teleport(0, -1850.22, -4149.4, 9.76771)
    end
    if(intid == 14) then
        player:Teleport(35, -98, 149, -40)
    end
    if(intid == 13) then
        player:Teleport(0, -11139, -1742, -29)
    end
    end
    
    RegisterUnitGossipEvent(66666, 1, "On_Gossip")
    RegisterUnitGossipEvent(66666, 2, "Gossip_Submenus")
    If you have any problems make sure to tell me!!
    Here are some screen shots!!






























    Hope you like it!!
    Last edited by benzkool; 12-11-2008 at 03:02 PM.

    Hidden Places Tele Npc Updated 30+ Now!
  2. #2
    bsod-staff14's Avatar Member
    Reputation
    35
    Join Date
    Nov 2008
    Posts
    443
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks this was useful.
    Immortal GamerZ Under Development!

  3. #3
    stoneharry's Avatar Moderator Harry


    Reputation
    1618
    Join Date
    Sep 2007
    Posts
    4,564
    Thanks G/R
    151/150
    Trade Feedback
    0 (0%)
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    A teleporter that doesn't do the same as the others! +Rep

  4. #4
    benzkool's Avatar Member
    Reputation
    23
    Join Date
    Nov 2008
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bsod-staff14 View Post
    Thanks this was useful.
    Im not even sure your being serious when you say it like that

  5. #5
    benzkool's Avatar Member
    Reputation
    23
    Join Date
    Nov 2008
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by stoneharry View Post
    A teleporter that doesn't do the same as the others! +Rep
    Thx goes to 32 locations that you cant ordinarily just walk into..


    Edit- omg i double posted my own thread!!!

  6. #6
    bsod-staff14's Avatar Member
    Reputation
    35
    Join Date
    Nov 2008
    Posts
    443
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I didnt say that someone else did but I mean to say THANKS SO MUCH
    Immortal GamerZ Under Development!

  7. #7
    Ground Zero's Avatar ★ Elder ★
    Reputation
    1132
    Join Date
    Aug 2008
    Posts
    3,504
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice, a unusual teleporter, Unique non the less. +Rep

  8. #8
    benzkool's Avatar Member
    Reputation
    23
    Join Date
    Nov 2008
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thx guys, I need something else that you don't see often on teleport npcs! any ideas anyone?

  9. #9
    dongel's Avatar Member
    Reputation
    7
    Join Date
    Nov 2007
    Posts
    137
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    NIce O.O +rep

  10. #10
    benzkool's Avatar Member
    Reputation
    23
    Join Date
    Nov 2008
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by dongel View Post
    NIce O.O +rep
    Thx

    How is it that i have more rep but you have more rep power?
    I'm not getting these mmowned ranks at all!

  11. #11
    Ziddy1337's Avatar Contributor
    Reputation
    136
    Join Date
    Aug 2008
    Posts
    486
    Thanks G/R
    4/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wow this is a very nice release buddy. Good to see newer members contributing.

    Have some Rep

  12. #12
    benzkool's Avatar Member
    Reputation
    23
    Join Date
    Nov 2008
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ziddy1232 View Post
    Wow this is a very nice release buddy. Good to see newer members contributing.

    Have some Rep
    Thx wait till you see my next release it will make the news!!!
    Well a man can only hope lol

  13. #13
    936714825's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Good job i love it fun teleports :wave: +Rep

  14. #14
    borra's Avatar Member
    Reputation
    3
    Join Date
    Nov 2008
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the code. I know my kids are going to have a blast with this.

  15. #15
    benzkool's Avatar Member
    Reputation
    23
    Join Date
    Nov 2008
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If you have any problems tell me

Page 1 of 3 123 LastLast

Similar Threads

  1. 25 Hidden Locations Tele's All On 1 NPC!! (LUA CODE)
    By benzkool in forum WoW EMU General Releases
    Replies: 20
    Last Post: 12-11-2008, 01:20 PM
  2. Tele Npc and trainer question
    By Anarchy in forum World of Warcraft Emulator Servers
    Replies: 13
    Last Post: 02-24-2008, 02:17 PM
  3. Tele NPC
    By delldude1989 in forum World of Warcraft Emulator Servers
    Replies: 18
    Last Post: 02-20-2008, 12:29 PM
  4. Hidden Places in WOW !
    By buwinkle17 in forum World of Warcraft Exploration
    Replies: 7
    Last Post: 01-23-2008, 10:29 PM
  5. Some hidden places in WoW
    By Maaby in forum World of Warcraft Guides
    Replies: 8
    Last Post: 05-17-2006, 12:02 PM
All times are GMT -5. The time now is 05:15 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search