My old Portal guide re explained to be read easier and done easier and has more INFO menu

User Tag List

Results 1 to 12 of 12
  1. #1
    mager1794's Avatar Member
    Reputation
    356
    Join Date
    Feb 2008
    Posts
    703
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    My old Portal guide re explained to be read easier and done easier and has more INFO

    FIrst were gonnna make a GO object its really easy

    INSERT INTO `gameobject_names` (entry, Type, DisplayID, Name, spellfocus, sound1, sound2, sound3, sound4, sound5, sound6, sound7, sound8, sound9, unknown1, unknown2, unknown3, unknown4, unknown5, unknown6, unknown7, unknown8, unknown9, unknown10, unknown11, unknown12, unknown13, unknown14)
    VALUES (entry,22,DisplayID,'Name',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)

    Change the entry, displayID and name to match what u want ur portal to be

    heres some good portal ID's

    1327 = The one for summons
    4393 = A darnassus look
    6955 = Exodar look
    4394 = ironforge look
    4395 = orgrimmar look
    6956 = silvermoon look
    4397 = thunderbluff look
    4398 = UC look
    7146 = shattrath portal look


    and now for the scripting part its easy with this info so yeah it should be done fast

    use .gps to learn what ur X,Y,and Z and Map Id are first and wright them down



    function Teleporting_onUse (pUnit, Event, pMisc)
    pMisc:Teleport (MapID, Xcoord, Ycoord, Zcoord)
    end
    RegisterGameObjectEvent (GOID, 2, "Teleporting_onUse")



    lets just say our X coord is supposed to be -345.49

    so waht would we do with that well we do this

    function Teleporting_onUse (pUnit, Event, pMisc)
    pMisc:Teleport (MapID,-345.49 , Ycoord, Zcoord)
    end
    RegisterGameObjectEvent (GOID, 2, "Teleporting_onUse")

    thats for the X point But first and formost and most needed is the MapID or u dont know where ur gonna be put

    in this case its 530

    so now after placing that it shoul be

    function Teleporting_onUse (pUnit, Event, pMisc)
    pMisc:Teleport (530,-345.49 , Ycoord, Zcoord)
    end
    RegisterGameObjectEvent (GOID, 2, "Teleporting_onUse")

    Now for the rest of the coords Z and Y well u do same as you did wtih X
    Z= -102.0
    Y= 3149.1

    So now we get

    function Teleporting_onUse (pUnit, Event, pMisc)
    pMisc:Teleport (MapID,-345.49 , 3149.1, -102.0)
    end
    RegisterGameObjectEvent (GOID, 2, "Teleporting_onUse")

    and last we change the GOID to the nessacry object that u want to cause you to port
    in this case its 70001

    function Teleporting_onUse (pUnit, Event, pMisc)
    pMisc:Teleport (530, -345.49, 3149.1, -102.0)
    end
    RegisterGameObjectEvent (70001, 2, "Teleporting_onUse")

    and walah (or how ever you spell it)

    Next just save it as like Mag.LUA or something like that and put it into you Scripts fold in your server folder and you done grats u made a scripted portal

    maybe ill learn more about LUA and send out another portal tell me what u think

    (be sure to use your info for you coords not mine
    Last edited by mager1794; 02-22-2008 at 11:38 PM. Reason: cut off half of info

    My old Portal guide re explained to be read easier and done easier and has more INFO
  2. #2
    Lich King's Avatar Contributor
    Reputation
    100
    Join Date
    May 2007
    Posts
    911
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Pretty good guide, +Rep

  3. #3
    mager1794's Avatar Member
    Reputation
    356
    Join Date
    Feb 2008
    Posts
    703
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks man XD

  4. #4
    roguesownu's Avatar Member
    Reputation
    10
    Join Date
    Nov 2006
    Posts
    189
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    not working

    Hello, I've tried this guide and many others for LUA portals. All goes well until I spawn the game object, I click on the portal and it starts casting "Recall World (OLD)" or something of that sort and when it finishes it doesn't do anything.


    yes I have the LUA in my scripts folder.

    I am running the latest Ascent Rev (3.8_stable) which I compiled myself, so its not a repack (if that effects it at all)


    Need some help!

    Thanks
    The following statement is true
    The previous statement is false

  5. #5
    Lilltimmy's Avatar Member
    Reputation
    20
    Join Date
    Jun 2007
    Posts
    275
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I Tried this for a time ago, didnt work... I tried 5 different tries to create a Portal,
    This time... it Worked


    +rep to you :P

    EDIT: When i create 2 or more Portals, and i click on it 1: I get WoW Error, when i log in again im here in Old Ironforge where i should be... But...All the 3 Portals should teleport to different places but all 3 Portals; Teleports me to Old Ironforge
    Last edited by Lilltimmy; 02-23-2008 at 02:14 PM.

  6. #6
    Lilltimmy's Avatar Member
    Reputation
    20
    Join Date
    Jun 2007
    Posts
    275
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Why dont you guys give him rep?...

  7. #7
    doggy99's Avatar Member
    Reputation
    2
    Join Date
    Nov 2007
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    cool beens dude

  8. #8
    mager1794's Avatar Member
    Reputation
    356
    Join Date
    Feb 2008
    Posts
    703
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by roguesownu View Post
    Hello, I've tried this guide and many others for LUA portals. All goes well until I spawn the game object, I click on the portal and it starts casting "Recall World (OLD)" or something of that sort and when it finishes it doesn't do anything.


    yes I have the LUA in my scripts folder.

    I am running the latest Ascent Rev (3.8_stable) which I compiled myself, so its not a repack (if that effects it at all)


    Need some help!

    Thanks
    well send me a PM of the game object and what u want the portal to send you to ok help ill ya XD
    Last edited by mager1794; 02-23-2008 at 10:22 PM.

  9. #9
    lilvic12's Avatar Member
    Reputation
    9
    Join Date
    Dec 2007
    Posts
    47
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you this post helped alot :P

    urewin:

  10. #10
    TehShyOne's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hey thanks +rep =).

  11. #11
    mager1794's Avatar Member
    Reputation
    356
    Join Date
    Feb 2008
    Posts
    703
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok guys Im working on that u cant get more than two portals problem so far after looking at the ones for the other portals i say put all your portals in 1 .LUA file and see if that can get you anywhere if not then back to the drawing board /cry

  12. #12
    casperj's Avatar Member
    Reputation
    1
    Join Date
    Sep 2007
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    good guide+Rep

Similar Threads

  1. Replies: 2
    Last Post: 05-20-2010, 08:56 PM
  2. [Guide] Wallwalking explained!
    By Mythorim in forum Age of Conan Exploits|Hacks
    Replies: 2
    Last Post: 07-01-2008, 10:36 AM
  3. How to Make a portal guide
    By mager1794 in forum WoW EMU Guides & Tutorials
    Replies: 6
    Last Post: 02-13-2008, 04:40 PM
  4. no old hillsbrad guide?
    By Meister in forum World of Warcraft General
    Replies: 4
    Last Post: 12-27-2006, 01:42 PM
All times are GMT -5. The time now is 11:15 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