Please Modify This Teleporter Script! menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 18
  1. #1
    ProphetWoW's Avatar Corporal
    Reputation
    1
    Join Date
    Aug 2010
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Please Modify This Teleporter Script!

    Hello,

    I tailored the script below for my private server, unfortunately I do not have very much experience working with Lua.

    If anyone has some spare time and is willing to help me out, I would appreciate it very much!

    Below is a list I made containing a few requests that I would like to see in the updated script:

    • I would like to make it so both the Alliance and the Horde can only access areas specific for each race. For example: Only the Alliance races can access the Alliance Mall and corresponding major cities, vice versa for the Horde.
    • I would like to delete the menu selection for both the Alliance and Horde Mall- make it so when the player selects the teleport option it doesn't take them to another menu; it immediately ports them to the mall.
    • The server I'm creating is meant to be "60 Arena", therefore, I would like to add a "Buffs" menu to this script with buffs specific for level 60 players.
    • Finally, I would like to add text to the top of the main menu. When the player first clicks on the NPC I would like to have "Welcome to __________" at the top as a greeting.


    Code:
    function On_Gossip(unit, event, player)
    unit:GossipCreateMenu(50, player, 0)
    unit:GossipMenuAddItem(2, "Horde Mall", 1, 0)
    unit:GossipMenuAddItem(2, "Alliance Mall", 2, 0)
    unit:GossipMenuAddItem(9, "Horde Cities", 3, 0)
    unit:GossipMenuAddItem(9, "Alliance Cities", 4, 0)
    unit:GossipMenuAddItem(9, "Gurubashi Arena", 45,  0)
    unit:GossipMenuAddItem(4, "Remove Ressurection Sickness", 900, 0)
    unit:GossipSendMenu(player)
    end
    
    function Gossip_Submenus(unit, event, player, id, intid, code)
    
    if(intid == 50) then
    unit:GossipCreateMenu(50, player, 0)
    unit:GossipMenuAddItem(2, "Horde Mall", 1, 0)
    unit:GossipMenuAddItem(2, "Alliance Mall", 2, 0)
    unit:GossipMenuAddItem(9, "Horde Cities", 3, 0)
    unit:GossipMenuAddItem(9, "Alliance Cities", 4, 0)
    unit:GossipMenuAddItem(9, "Gurubashi Arena", 45,  0)
    unit:GossipMenuAddItem(4, "Remove Ressurection Sickness", 900, 0)
    unit:GossipSendMenu(player)
    end
    
    if(intid == 1) then
    unit:GossipCreateMenu(51, player, 0)
    unit:GossipMenuAddItem(2, I would like to delete this second menu.  This is for the Horde Mall., 19, 0)
    unit:GossipMenuAddItem(0, "[Back]", 50, 0)
    unit:GossipSendMenu(player)
    end
    
    if(intid == 2) then
    unit:GossipCreateMenu(51, player, 0)
    unit:GossipMenuAddItem(2, I would like to delete this second menu.  This is for the Alliance Mall.", 20, 0)
    unit:GossipMenuAddItem(0, "[Back]", 50, 0)
    unit:GossipSendMenu(player)
    end
    
    if(intid == 3) then
    unit:GossipCreateMenu(51, player, 0)
    unit:GossipMenuAddItem(9, "Orgrimmar", 10, 0)
    unit:GossipMenuAddItem(9, "Undercity", 11, 0)
    unit:GossipMenuAddItem(9, "Thunder Bluff", 12, 0)
    unit:GossipMenuAddItem(9, "Silvermoon", 13, 0)
    unit:GossipMenuAddItem(0, "[Back]", 50, 0)
    unit:GossipSendMenu(player)
    end
    
    if(intid == 4) then
    unit:GossipCreateMenu(52, player, 0)
    unit:GossipMenuAddItem(9, "Stormwind", 14, 0)
    unit:GossipMenuAddItem(9, "Ironforge", 15, 0)
    unit:GossipMenuAddItem(9, "Darnassus", 16, 0)
    unit:GossipMenuAddItem(9, "Exodar", 17, 0)
    unit:GossipMenuAddItem(0, "[Back]", 50, 0)
    unit:GossipSendMenu(player)
    end
    
    if(intid == 8) then
    unit:GossipCreateMenu(50, player, 0)
    unit:GossipMenuAddItem(1, "The Great Arena", 38, 0)
    unit:GossipSendMenu(player)
    end
    
    if(intid == 900) then
    player:LearnSpell(15007)
    player:UnlearnSpell(15007)
    end
    
    if(intid == 10) then
    player:Teleport(1, 1374.44, -4371.12, 26.03)
    end
    
    if(intid == 11) then
    player:Teleport(0, 1881, 237.57, 59.04)
    end
    
    if(intid == 12) then
    player:Teleport(1, -1264.37, 212.11, 59.56)
    end
    
    if(intid == 13) then
    player:Teleport(530, 9344.70, -7277.72, 14.33)
    end
    
    if(intid == 14) then
    player:Teleport(0, -9112.70, 398.54, 92.51)
    end
    
    if(intid == 15) then
    player:Teleport(0, -5039.30, -813.25, 495.13)
    end
    
    if(intid == 16) then
    player:Teleport(1, 9985.28, 1950.22, 1325.44)
    end
    
    if(intid == 17) then
    player:Teleport(530, -4072.44, -12017.14, -1.34)
    end
    
    if(intid == 19) then
    player:Teleport(571, 8194.35, -1963.53, 1738.48)
    end
    
    if(intid == 20) then
    player:Teleport(571, 7865.57, -1397.5, 1534.06)
    end
    
    if(intid == 45) then
    player:Teleport(0, -13226.41, 231.95, 33.28)
    end
    end
    
    RegisterUnitGossipEvent(70500, 1, "On_Gossip")
    RegisterUnitGossipEvent(70500, 2, "Gossip_Submenus")
    I would like to thank anyone in advance for any assistance in modifying this script.

    Regards,
    ProphetWoW

    Please Modify This Teleporter Script!
  2. #2
    Terrorblade's Avatar Contributor I spent 5k CC and all I got was this user title
    CoreCoins Purchaser
    Reputation
    153
    Join Date
    Oct 2010
    Posts
    312
    Thanks G/R
    6/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    function On_Gossip(unit, event, player)
    unit:GossipCreateMenu(50, player, 0)
    unit:GossipMenuAddItem(0, "Welcome to ____________", 50, 0)
    if(player:GetTeam() == 1) then
    unit:GossipMenuAddItem(2, "Horde Mall", 1, 0)
    unit:GossipMenuAddItem(9, "Horde Cities", 3, 0)
    else
    unit:GossipMenuAddItem(2, "Alliance Mall", 2, 0)
    unit:GossipMenuAddItem(9, "Alliance Cities", 4, 0)
    end
    if(player:GetLevel() >= 60) then
    unit:GossipMenuAddItem(9, "Gurubashi Arena", 45,  0)
    ense
    unit:GossipMenuAddItem(4, "Remove Ressurection Sickness", 900, 0)
    unit:GossipSendMenu(player)
    end
    
    function Gossip_Submenus(unit, event, player, id, intid, code)
    
    if(intid == 50) then
    unit:GossipCreateMenu(50, player, 0)
    unit:GossipMenuAddItem(0, "Welcome to ____________", 50, 0)
    if(player:GetTeam() == 1) then
    unit:GossipMenuAddItem(2, "Horde Mall", 1, 0)
    unit:GossipMenuAddItem(9, "Horde Cities", 3, 0)
    else
    unit:GossipMenuAddItem(2, "Alliance Mall", 2, 0)
    unit:GossipMenuAddItem(9, "Alliance Cities", 4, 0)
    end
    if(player:GetLevel() >= 60) then
    unit:GossipMenuAddItem(9, "Gurubashi Arena", 45,  0)
    ense
    unit:GossipMenuAddItem(4, "Remove Ressurection Sickness", 900, 0)
    unit:GossipSendMenu(player)
    end
    
    
    if(intid == 3) then
    unit:GossipCreateMenu(51, player, 0)
    unit:GossipMenuAddItem(9, "Orgrimmar", 10, 0)
    unit:GossipMenuAddItem(9, "Undercity", 11, 0)
    unit:GossipMenuAddItem(9, "Thunder Bluff", 12, 0)
    unit:GossipMenuAddItem(9, "Silvermoon", 13, 0)
    unit:GossipMenuAddItem(0, "[Back]", 50, 0)
    unit:GossipSendMenu(player)
    end
    
    if(intid == 4) then
    unit:GossipCreateMenu(52, player, 0)
    unit:GossipMenuAddItem(9, "Stormwind", 14, 0)
    unit:GossipMenuAddItem(9, "Ironforge", 15, 0)
    unit:GossipMenuAddItem(9, "Darnassus", 16, 0)
    unit:GossipMenuAddItem(9, "Exodar", 17, 0)
    unit:GossipMenuAddItem(0, "[Back]", 50, 0)
    unit:GossipSendMenu(player)
    end
    
    if(intid == 8) then
    unit:GossipCreateMenu(50, player, 0)
    unit:GossipMenuAddItem(1, "The Great Arena", 38, 0)
    unit:GossipSendMenu(player)
    end
    
    if(intid == 900) then
    player:RemoveAura(15007)
    end
    
    if(intid == 10) then
    player:Teleport(1, 1374.44, -4371.12, 26.03)
    end
    
    if(intid == 11) then
    player:Teleport(0, 1881, 237.57, 59.04)
    end
    
    if(intid == 12) then
    player:Teleport(1, -1264.37, 212.11, 59.56)
    end
    
    if(intid == 13) then
    player:Teleport(530, 9344.70, -7277.72, 14.33)
    end
    
    if(intid == 14) then
    player:Teleport(0, -9112.70, 398.54, 92.51)
    end
    
    if(intid == 15) then
    player:Teleport(0, -5039.30, -813.25, 495.13)
    end
    
    if(intid == 16) then
    player:Teleport(1, 9985.28, 1950.22, 1325.44)
    end
    
    if(intid == 17) then
    player:Teleport(530, -4072.44, -12017.14, -1.34)
    end
    
    if(intid == 19) then
    player:Teleport(571, 8194.35, -1963.53, 1738.48)
    end
    
    if(intid == 20) then
    player:Teleport(571, 7865.57, -1397.5, 1534.06)
    end
    
    if(intid == 45) then
    player:Teleport(0, -13226.41, 231.95, 33.28)
    end
    end
    
    RegisterUnitGossipEvent(70500, 1, "On_Gossip")
    RegisterUnitGossipEvent(70500, 2, "Gossip_Submenus")
    It's been a while since I did Lua so I don't know if it works, I did everything you wanted except the buffs.
    Stuff & Things

  3. #3
    ProphetWoW's Avatar Corporal
    Reputation
    1
    Join Date
    Aug 2010
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Looks like the script did not work, but I really appreciate the time and effort. +Rep

    Still looking for more assistance. If anyone is willing to give this another shot, please try to have the requirements that I originally posted. Don't mind the "Buffs" menu.

    Thanks again!
    Last edited by ProphetWoW; 10-18-2010 at 09:38 PM. Reason: Tested the script- failed.

  4. #4
    TheChosenPessimist's Avatar Sergeant
    Reputation
    17
    Join Date
    Oct 2010
    Posts
    40
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    function On_Gossip(unit, event, player)
    	unit:GossipCreateMenu(50, player, 0)
    	unit:GossipMenuAddItem(0, "Welcome to ____________", 50, 0)
    	if(player:GetTeam() == 1) then
    		unit:GossipMenuAddItem(2, "Horde Mall", 1, 0)
    		unit:GossipMenuAddItem(9, "Horde Cities", 3, 0)
    	else
    		unit:GossipMenuAddItem(2, "Alliance Mall", 2, 0)
    		unit:GossipMenuAddItem(9, "Alliance Cities", 4, 0)
    	end
    	if(player:GetLevel() >= 60) then
    		unit:GossipMenuAddItem(9, "Gurubashi Arena", 45,  0)
    	else
    		unit:GossipMenuAddItem(4, "Remove Ressurection Sickness", 900, 0)
    		unit:GossipSendMenu(player)
    end
    
    function Gossip_Submenus(unit, event, player, id, intid, code)
    	if(intid == 50) then
    		unit:GossipCreateMenu(50, player, 0)
    		unit:GossipMenuAddItem(0, "Welcome to ____________", 50, 0)
    	if(player:GetTeam() == 1) then
    		unit:GossipMenuAddItem(2, "Horde Mall", 1, 0)
    		unit:GossipMenuAddItem(9, "Horde Cities", 3, 0)
    	else
    		unit:GossipMenuAddItem(2, "Alliance Mall", 2, 0)
    		unit:GossipMenuAddItem(9, "Alliance Cities", 4, 0)
    	end
    	if(player:GetLevel() >= 60) then
    		unit:GossipMenuAddItem(9, "Gurubashi Arena", 45,  0)
    	else
    		unit:GossipMenuAddItem(4, "Remove Ressurection Sickness", 900, 0)
    		unit:GossipSendMenu(player)
    	end
    
    	if(intid == 3) then
    		unit:GossipCreateMenu(51, player, 0)
    		unit:GossipMenuAddItem(9, "Orgrimmar", 10, 0)
    		unit:GossipMenuAddItem(9, "Undercity", 11, 0)
    		unit:GossipMenuAddItem(9, "Thunder Bluff", 12, 0)
    		unit:GossipMenuAddItem(9, "Silvermoon", 13, 0)
    		unit:GossipMenuAddItem(0, "[Back]", 50, 0)
    		unit:GossipSendMenu(player)
    	end
    
    	if(intid == 4) then
    		unit:GossipCreateMenu(52, player, 0)
    		unit:GossipMenuAddItem(9, "Stormwind", 14, 0)
    		unit:GossipMenuAddItem(9, "Ironforge", 15, 0)
    		unit:GossipMenuAddItem(9, "Darnassus", 16, 0)
    		unit:GossipMenuAddItem(9, "Exodar", 17, 0)
    		unit:GossipMenuAddItem(0, "[Back]", 50, 0)
    		unit:GossipSendMenu(player)
    	end
    
    	if(intid == 8) then
    		unit:GossipCreateMenu(50, player, 0)
    		unit:GossipMenuAddItem(1, "The Great Arena", 38, 0)
    		unit:GossipSendMenu(player)
    	end
    
    	if(intid == 900) then
    		player:RemoveAura(15007)
    	end
    
    	if(intid == 10) then
    		player:Teleport(1, 1374.44, -4371.12, 26.03)
    	end
    
    	if(intid == 11) then
    		player:Teleport(0, 1881, 237.57, 59.04)
    	end
    
    	if(intid == 12) then
    		player:Teleport(1, -1264.37, 212.11, 59.56)
    	end
    
    	if(intid == 13) then
    		player:Teleport(530, 9344.70, -7277.72, 14.33)
    	end
    
    	if(intid == 14) then
    		player:Teleport(0, -9112.70, 398.54, 92.51)
    	end
    
    	if(intid == 15) then
    		player:Teleport(0, -5039.30, -813.25, 495.13)
    	end
    
    	if(intid == 16) then
    		player:Teleport(1, 9985.28, 1950.22, 1325.44)
    	end
    
    	if(intid == 17) then
    		player:Teleport(530, -4072.44, -12017.14, -1.34)
    	end
    
    	if(intid == 19) then
    		player:Teleport(571, 8194.35, -1963.53, 1738.48)
    	end
    
    	if(intid == 20) then
    		player:Teleport(571, 7865.57, -1397.5, 1534.06)
    	end
    
    	if(intid == 45) then
    		player:Teleport(0, -13226.41, 231.95, 33.28)
    	end
    end
    
    RegisterUnitGossipEvent(70500, 1, "On_Gossip")
    RegisterUnitGossipEvent(70500, 2, "Gossip_Submenus")
    Dont know if it works, looked through it quickly.

    Used terrorblades code. He had some spelling errors.

    Emulating human behaviour since 1993

  5. #5
    Meiya Stormsinger's Avatar Contributor

    Reputation
    163
    Join Date
    Mar 2009
    Posts
    196
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'll give this a shot when i get home unless it's fixed. Currently in school so i can't do it now.

  6. #6
    ProphetWoW's Avatar Corporal
    Reputation
    1
    Join Date
    Aug 2010
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Meiya Stormsinger View Post
    I'll give this a shot when i get home unless it's fixed. Currently in school so i can't do it now.
    Thank you, Meiya. I'm looking forward to it.

  7. #7
    Meiya Stormsinger's Avatar Contributor

    Reputation
    163
    Join Date
    Mar 2009
    Posts
    196
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm sorry, i forgot that i said i would give it a shot. I was working yesterday so i was home pretty late. I'll be home today though so i can look it over once i end, i'll put it as an alarm on my phone to remind me to look at it.

  8. #8
    TheChosenPessimist's Avatar Sergeant
    Reputation
    17
    Join Date
    Oct 2010
    Posts
    40
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ProphetWoW View Post
    Thank you, Meiya. I'm looking forward to it.
    You didnt even try mine?

    http://www.mmowned.com/forums/world-...ml#post1967845

    Emulating human behaviour since 1993

  9. #9
    ProphetWoW's Avatar Corporal
    Reputation
    1
    Join Date
    Aug 2010
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm looking for a more thorough script, which I think Meiya can offer. Besides, "Don’t know if it works" is not very reassuring but I appreciate the assistance.

  10. #10
    Meiya Stormsinger's Avatar Contributor

    Reputation
    163
    Join Date
    Mar 2009
    Posts
    196
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Could you define thorough please?

  11. #11
    ProphetWoW's Avatar Corporal
    Reputation
    1
    Join Date
    Aug 2010
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Meiya Stormsinger View Post
    Could you define thorough please?
    I'm looking for a teleporter containing the requirements that I made on my first post in point form.

  12. #12
    Meiya Stormsinger's Avatar Contributor

    Reputation
    163
    Join Date
    Mar 2009
    Posts
    196
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ProphetWoW View Post
    I'm looking for a teleporter containing the requirements that I made on my first post in point form.
    Alright, i will hook you up with a teleporter script on two conditions.

    1. I want you to write down all the spell id's of the buffs that should be casted on the player.
    2. Try to get out of your leecher rank, either by donating or getting your rep up above 5 somehow.

    Do keep in mind that i am doing this as a favor, because i'm a nice person. Regardless of you being a leecher, i will help you.

    Last edited by Meiya Stormsinger; 10-20-2010 at 03:35 PM.

  13. #13
    ProphetWoW's Avatar Corporal
    Reputation
    1
    Join Date
    Aug 2010
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What happened to "I'll give this a shot when I get home unless it's fixed. Currently in school so I can't do it now."?

    So... now you have conditions?

    I'm fully able to retrieve the spell ID's for you, however, I don't have the time to acquire the reputation needed to escape the "Leecher" rank at this point in time- not saying I'm not capable, I just simply do not have the spare time.

    Not to mention that fact that anything I can offer would be obsolete or already posted...

    Regards,
    ProphetWoW
    Last edited by ProphetWoW; 10-20-2010 at 06:54 PM. Reason: Returned from work.

  14. #14
    project anthrax's Avatar Contributor
    Reputation
    180
    Join Date
    Nov 2007
    Posts
    993
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    --Scripted by Project Anthrax of mmowned and anthraxstudios.tk
    --Enjoy My repack and have a Happy Halloween
    local VERSION = "3.0"
    local SERVER_NAME = "Holloween Town WoW you can put whatever"
    
    function matrix_main_menu(pUnit, player)
        pUnit:GossipCreateMenu(3544, player, 0)
       pUnit:GossipMenuAddItem(8, "Buffer", 900, 0)
       pUnit:GossipSendMenu(player)
       end
    
    function matrix_on_gossip_talk(pUnit, event, player)
    matrix_main_menu(pUnit, player)
    end
    
    if(intid == 100) then
    pUnit:GossipCreateMenu(3544, player, 0)
       pUnit:GossipMenuAddItem(8, "Project Anthrax wants to buff you up lol!", 900, 0)
       pUnit:GossipSendMenu(player)
       end
    
    if(intid == 900) then 
     player:LearnSpell(33081)
     player:LearnSpell(33082)
     player:LearnSpell(33077)
     player:LearnSpell(33079)
     player:LearnSpell(33080)
     player:LearnSpell(33078)
     pUnit:GossipComplete(player)
     end
    
    end
    
    RegisterUnitGossipEvent(99996, 1, "matrix_on_gossip_talk") 
    RegisterUnitGossipEvent(99996, 2, "matrix_on_gossip_select")
    
    logcol(11)
    print (" ================================================================")
    print ("   Loaded: Custom Buffer Source- By Project Anthrax's (V"..VERSION..")")
    print ("   Made by Project Anthrax")
    print ("   This script is Originally released for http://anthraxstudios.tk")
    print ("   This script now works on: ("..SERVER_NAME..")")
    print (" ================================================================")
    logcol(2)
    there's a little sample, just plug in your spell ids in place of the defaults
    Last edited by project anthrax; 10-20-2010 at 10:21 PM.
    removed by Unholy

  15. #15
    Meiya Stormsinger's Avatar Contributor

    Reputation
    163
    Join Date
    Mar 2009
    Posts
    196
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I didn't say you had to, i simply said "Try to get out of leecher" , and ofcourse i need a list of spell id's.. As a matter of fact i did start working on this, but i keep getting a crash when it's trying to check if the person is horde.. Works for alliance, but horde crashes, so i'm gonna re-write it from scratch when i have the time, i will be working today, and then i'll be gone untill sunday because i'm visiting my sister, i'll have it to you by monday, depending on if you post the spell list or not

Page 1 of 2 12 LastLast

Similar Threads

  1. Need help with this LUA script, please.
    By Eliteplague in forum WoW Bots Questions & Requests
    Replies: 6
    Last Post: 11-18-2011, 01:27 PM
  2. Will this teleporter npc lua script work?
    By Bapes in forum World of Warcraft Emulator Servers
    Replies: 9
    Last Post: 05-22-2008, 11:50 AM
  3. Can Somebody Post me a File please for this exact Blood Elf Male Model?
    By Enix in forum WoW ME Questions and Requests
    Replies: 0
    Last Post: 08-02-2007, 09:47 AM
  4. Please Do This For Me ( - Uber Rep - )
    By EthanLopez in forum WoW ME Questions and Requests
    Replies: 1
    Last Post: 02-16-2007, 12:58 AM
  5. Matt please read this
    By Defalcator in forum Community Chat
    Replies: 2
    Last Post: 07-14-2006, 07:51 PM
All times are GMT -5. The time now is 10:04 AM. 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