 |
-
Master Sergeant
Join Date: May 2008
Location: Moscow, Pennsylvania
Posts: 114
Rep: 9
Cash: 80
Lua Scripts NOT WORKING
MY script, that USE to work on my old arcemu server does not work anymore. idk whats wrong but the warpnpc (the thing i converted this from) works just fine. I've done everything i know of that can possibly be wrong with this and i still, dont know why its not working. any help??
Code:
function On_Gossip1(item, player)
item:GossipCreateMenu(3544, player, 0)
item:GossipMenuAddItem(2, "Walmart", 1, 0)
item:GossipMenuAddItem(2, "Horde Cities", 3, 0)
item:GossipMenuAddItem(2, "Alliance Cities", 4, 0)
item:GossipMenuAddItem(2, "Global Locations", 5, 0)
item:GossipMenuAddItem(2, "Outland Locations", 6, 0)
item:GossipMenuAddItem(2, "Northrend Locations", 7, 0)
item:GossipMenuAddItem(2, "War Zones", 8, 0)
--item:GossipMenuAddItem(2, "I'll Take A Little Boost, Thanks!", 9, 0)
item:GossipMenuAddItem(2, "Cure Me", 10, 0)
item:GossipSendMenu(player)
end
function Gossip_Submenus1(item, event, player, id, intid, code)
if(intid == 999) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(2, "Walmart", 1, 0)
item:GossipMenuAddItem(2, "Horde Cities", 3, 0)
item:GossipMenuAddItem(2, "Alliance Cities", 4, 0)
item:GossipMenuAddItem(2, "Global Locations", 5, 0)
item:GossipMenuAddItem(2, "Outland Locations", 6, 0)
item:GossipMenuAddItem(2, "Northrend Locations", 7, 0)
item:GossipMenuAddItem(2, "War Zones", 8, 0)
--item:GossipMenuAddItem(2, "I'll Take A Little Boost, Thanks!", 9, 0)
item:GossipMenuAddItem(2, "Cure Me", 10, 0)
item:GossipSendMenu(player)
end
if(intid == 1) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Horde Mall", 300, 0)
item:GossipMenuAddItem(1, "Alliance Mall", 301, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 3) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Orgrimmar", 15, 0)
item:GossipMenuAddItem(1, "Undercity", 16, 0)
item:GossipMenuAddItem(1, "Thunder Bluff", 17, 0)
item:GossipMenuAddItem(1, "Silvermoon City", 18, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 4) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Stormwind", 19, 0)
item:GossipMenuAddItem(1, "Ironforge", 20, 0)
item:GossipMenuAddItem(1, "Darnassus", 21, 0)
item:GossipMenuAddItem(1, "Exodar", 22, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 5) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(0, "Eastern Kingdoms", 500, 0)
item:GossipMenuAddItem(0, "Kalimdor", 501, 0)
item:GossipMenuAddItem(0, "Old School Raids", 502, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 500) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Alterac Mountains", 23, 0)
item:GossipMenuAddItem(1, "Arathi Highlands", 24, 0)
item:GossipMenuAddItem(1, "Badlands", 25, 0)
item:GossipMenuAddItem(1, "Blasted Lands", 26, 0)
item:GossipMenuAddItem(1, "Burning Steppes", 27, 0)
item:GossipMenuAddItem(1, "Deadwind Pass", 28, 0)
item:GossipMenuAddItem(1, "Dun Morogh", 29, 0)
item:GossipMenuAddItem(1, "Duskwood", 30, 0)
item:GossipMenuAddItem(1, "Eastern Plaguelands", 31, 0)
item:GossipMenuAddItem(1, "Elwynn Forest", 32, 0)
item:GossipMenuAddItem(1, "Eversong Woods", 33, 0)
item:GossipMenuAddItem(1, "Ghostlands", 34, 0)
item:GossipMenuAddItem(1, "Hillsbrad Foothills", 35, 0)
item:GossipMenuAddItem(0, "--->Second Page--->", 36, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 36) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Loch Modan",37, 0)
item:GossipMenuAddItem(1, "Redridge Mountains", 38, 0)
item:GossipMenuAddItem(1, "Searing Gorge", 39, 0)
item:GossipMenuAddItem(1, "Silverpine Forest", 40, 0)
item:GossipMenuAddItem(1, "Stranglethorn Vale", 41, 0)
item:GossipMenuAddItem(1, "Swamp Of Sorrows", 42, 0)
item:GossipMenuAddItem(1, "The Hinterlands", 43, 0)
item:GossipMenuAddItem(1, "Tirisfal Glades", 44, 0)
item:GossipMenuAddItem(1, "Western Plaguelands",45, 0)
item:GossipMenuAddItem(1, "Westfall",46, 0)
item:GossipMenuAddItem(1, "Wetlands", 47, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 501) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Ashenvale", 48, 0)
item:GossipMenuAddItem(1, "Azshara", 49, 0)
item:GossipMenuAddItem(1, "Azuremyst Isle", 50, 0)
item:GossipMenuAddItem(1, "Bloodmyst Isle", 51, 0)
item:GossipMenuAddItem(1, "Darkshore", 52, 0)
item:GossipMenuAddItem(1, "Desolace", 53, 0)
item:GossipMenuAddItem(1, "Durotar", 54, 0)
item:GossipMenuAddItem(1, "Dustwallow Marsh", 55, 0)
item:GossipMenuAddItem(1, "Felwood", 56, 0)
item:GossipMenuAddItem(1, "Feralas", 57, 0)
item:GossipMenuAddItem(1, "Moonglade", 58, 0)
item:GossipMenuAddItem(1, "Mulgore", 59, 0)
item:GossipMenuAddItem(1, "Silithus", 60, 0)
item:GossipMenuAddItem(0, "--->Second Page--->", 61, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 61) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Stonetalon Mountains", 62, 0)
item:GossipMenuAddItem(1, "Tanaris", 63, 0)
item:GossipMenuAddItem(1, "Teldrassil", 64, 0)
item:GossipMenuAddItem(1, "The Barrens", 65, 0)
item:GossipMenuAddItem(1, "Thousand Needles", 66, 0)
item:GossipMenuAddItem(1, "Un'Goro Crater", 67, 0)
item:GossipMenuAddItem(1, "Winterspring", 68, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 502) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Ahn'Qiraj", 69, 0)
item:GossipMenuAddItem(1, "Blackwing Lair", 70, 0)
item:GossipMenuAddItem(1, "Molten Core", 71, 0)
item:GossipMenuAddItem(1, "Onyxia's Lair", 72, 0)
item:GossipMenuAddItem(1, "Zul'Gurub", 73, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 6) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Blade's Edge Mountains", 74, 0)
item:GossipMenuAddItem(1, "Hellfire Peninsula", 75, 0)
item:GossipMenuAddItem(1, "Nagrand", 76, 0)
item:GossipMenuAddItem(1, "Netherstorm", 77, 0)
item:GossipMenuAddItem(1, "Shadowmoon Valley", 78, 0)
item:GossipMenuAddItem(1, "Terokkar Forest", 79, 0)
item:GossipMenuAddItem(1, "Zangarmarsh", 80, 0)
item:GossipMenuAddItem(1, "Shattrath", 81, 0)
item:GossipMenuAddItem(0, "Outland Raids", 82, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 82) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Black Temple", 83, 0)
item:GossipMenuAddItem(1, "Gruul's Lair", 84, 0)
item:GossipMenuAddItem(1, "Karazhan", 85, 0)
item:GossipMenuAddItem(1, "Magtheridon's Lair", 86, 0)
item:GossipMenuAddItem(1, "Mount Hyjal", 87, 0)
item:GossipMenuAddItem(1, "Serpentshrine Cavern", 88, 0)
item:GossipMenuAddItem(1, "Sunwell", 89, 0)
item:GossipMenuAddItem(1, "The Eye", 90, 0)
item:GossipMenuAddItem(1, "Zul'Aman", 91, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 7) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Borean Tundra", 92, 0)
item:GossipMenuAddItem(1, "Crystalsong Forest", 93, 0)
item:GossipMenuAddItem(1, "Dragonblight", 94, 0)
item:GossipMenuAddItem(1, "Grizzly Hills", 95, 0)
item:GossipMenuAddItem(1, "Howling Fjords", 96, 0)
item:GossipMenuAddItem(1, "Icecrown Glaicer", 97, 0)
item:GossipMenuAddItem(1, "Sholazar Basin", 98, 0)
item:GossipMenuAddItem(1, "Storm Peaks", 99, 0)
item:GossipMenuAddItem(1, "Wintergrasp", 100, 0)
item:GossipMenuAddItem(1, "Zul'Drak", 101, 0)
item:GossipMenuAddItem(1, "Dalaran", 102, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 8) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Blade's Edge Arena", 103, 0)
item:GossipMenuAddItem(1, "Gurubashi Arena", 104, 0)
item:GossipMenuAddItem(1, "Nagrand Arena", 105, 0)
item:GossipMenuAddItem(1, "Ring Of Valor (Alliance vs Horde)", 106, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 300) then
player:Teleport(560, 2536.162354, 2456.324951, 61.985809)
item:GossipComplete(player)
end
if(intid == 301) then
player:Teleport(560, 3604.475586, 2287.418213, 59.282700)
item:GossipComplete(player)
end
if(intid == 15) then
player:Teleport(1, 1343.172729, -4374.992188, 26.183716)
unit:GossipComplete(player)
end
if(intid == 16) then
player:Teleport(0, 1560.453857, 244.334030, -43.102592)
item:GossipComplete(player)
end
if(intid == 17) then
player:Teleport(1, -1195.436523, 34.784081, 132.40137)
item:GossipComplete(player)
end
if(intid == 18) then
player:Teleport(530, 9496.041016, -7282.289551, 14.318037)
item:GossipComplete(player)
end
if(intid == 19) then
player:Teleport(0, -8832.935547, 625.797485, 93.914894)
item:GossipComplete(player)
end
if(intid == 20) then
player:Teleport(0, -4924.375488, -950.865112, 501.547333)
item:GossipComplete(player)
end
if(intid == 21) then
player:Teleport(1, 9945.676758, 2482.677979, 1316.198853)
item:GossipComplete(player)
end
if(intid == 22) then
player:Teleport(530, -3946.064941, -11727.777344, -138.922562)
item:GossipComplete(player)
end
if(intid == 23) then
player:Teleport(0, 58.714684, -570.825317, 145.711151)
item:GossipComplete(player)
end
if(intid == 24) then
player:Teleport(0, -1550.519409, -2496.936791, 54.452209)
item:GossipComplete(player)
end
if(intid == 25) then
player:Teleport(0, -6819.416992, -3422.346680, 242.543167)
item:GossipComplete(player)
end
if(intid == 26) then
player:Teleport(0, -11270.514648, -3061.004395, -0.152069)
item:GossipComplete(player)
end
if(intid == 27) then
player:Teleport(0, -8057.234375, -1997.046143, 133.364822)
item:GossipComplete(player)
end
if(intid == 28) then
player:Teleport(0, -10437.863281, -1866.211182, 104.634972)
item:GossipComplete(player)
end
if(intid == 29) then
player:Teleport(0, -5271.595703, 43.802460, 386.111420)
item:GossipComplete(player)
end
if(intid == 30) then
player:Teleport(0, -10893.999023, -349.645538, 39.141331)
item:GossipComplete(player)
end
if(intid == 31) then
player:Teleport(0, 2263.505859, -4627.462891, 73.623268)
item:GossipComplete(player)
end
if(intid == 32) then
player:Teleport(0, -9547.107422, 82.203911, 59.357063)
item:GossipComplete(player)
end
if(intid == 33) then
player:Teleport(530, 8822.261719, -7098.651855, 35.365276)
item:GossipComplete(player)
end
if(intid == 34) then
player:Teleport(530, 7230.481934, -6586.369629, 25.941483)
item:GossipComplete(player)
end
if(intid == 35) then
player:Teleport(0, -414.885590, -662.270203, 54.499748)
item:GossipComplete(player)
end
if(intid == 37) then
player:Teleport(0, -5544.246582, -2851.535645, 361.768768)
item:GossipComplete(player)
end
if(intid == 38) then
player:Teleport(0, -9472.294922, -2266.869873, 74.356583)
item:GossipComplete(player)
end
if(intid == 39) then
player:Teleport(0, -6667.144043, -1194.482300, 242.106873)
item:GossipComplete(player)
end
if(intid == 40) then
player:Teleport(0, 581.543396, 1249.138062, 86.588158)
item:GossipComplete(player)
end
if(intid == 41) then
player:Teleport(0, -12323.756836, -584.573059, 24.864433)
item:GossipComplete(player)
end
if(intid == 42) then
player:Teleport(0, -10371.346680, -2723.086426, 21.678825)
item:GossipComplete(player)
end
if(intid == 43) then
player:Teleport(0, 118.710144, -1948.693237, 148.925842)
item:GossipComplete(player)
end
if(intid == 44) then
player:Teleport(0, 2024.515137, 168.655807, 33.867512)
item:GossipComplete(player)
end
if(intid == 45) then
player:Teleport(0, 1678.447876, -1364.333862, 69.890274)
item:GossipComplete(player)
end
if(intid == 46) then
player:Teleport(0, -10726.467773, 1030.061523, 33.054764)
item:GossipComplete(player)
end
if(intid == 47) then
player:Teleport(0, -3192.923340, -2452.208496, 9.292380)
item:GossipComplete(player)
end
if(intid == 48) then
player:Teleport(1, 2461.417725, -504.268280, 114.812622)
item:GossipComplete(player)
end
if(intid == 49) then
player:Teleport(1, 3383.945313, -4665.848145, 94.969765)
item:GossipComplete(player)
end
if(intid == 50) then
player:Teleport(530, -4251.174316, -12869.387695, 13.412463)
item:GossipComplete(player)
end
if(intid == 51) then
player:Teleport(530, -2244.586670, -11910.894531, 24.423874)
item:GossipComplete(player)
end
if(intid == 52) then
player:Teleport(1, 6145.536133, 282.024109, 23.928629)
item:GossipComplete(player)
end
if(intid == 53) then
player:Teleport(1, -1127.806885, 1793.706909, 62.220467)
item:GossipComplete(player)
end
if(intid == 54) then
player:Teleport(1, 601.661621, -4733.739258, -8.558049)
item:GossipComplete(player)
end
if(intid == 55) then
player:Teleport(1, -3647.304199, -2721.955566, 33.222332)
item:GossipComplete(player)
end
if(intid == 56) then
player:Teleport(1, 5378.582031, -752.227243, 344.328766)
item:GossipComplete(player)
end
if(intid == 57) then
player:Teleport(1, -4805.526855, 1038.506226, 104.156227)
item:GossipComplete(player)
end
if(intid == 58) then
player:Teleport(1, 8001.228027, -2672.624268, 512.099792)
item:GossipComplete(player)
end
if(intid == 59) then
player:Teleport(1, -2362.893311, -826.267517, -9.369063)
item:GossipComplete(player)
end
if(intid == 60) then
player:Teleport(1, -7015.238770, 968.619934, 5.474441)
item:GossipComplete(player)
end
if(intid == 62) then
player:Teleport(1, 1299.952491, 728.316223, 177.870941)
item:GossipComplete(player)
end
if(intid == 63) then
player:Teleport(1, -7184.853027, -3983.132324, 10.982137)
item:GossipComplete(player)
end
if(intid == 64) then
player:Teleport(1, 10119.146484, 1549.032837, 1321.552002)
item:GossipComplete(player)
end
if(intid == 65) then
player:Teleport(1, -642.360962, -2654.214844, 95.787682)
item:GossipComplete(player)
end
if(intid == 66) then
player:Teleport(1, -5375.651367, -2509.229736, -40.432945)
item:GossipComplete(player)
end
if(intid == 67) then
player:Teleport(1, -6178.627441, -1100.540283, -214.140274)
item:GossipComplete(player)
end
if(intid == 68) then
player:Teleport(1, 6661.349121, -4560.519043, 717.435547)
item:GossipComplete(player)
end
if(intid == 69) then
player:Teleport(1, -8189.559570, 1532.920898, 4.194667)
item:GossipComplete(player)
end
if(intid == 70) then
player:Teleport(0, -7660.572266, -1221.226318, 287.787964)
item:GossipComplete(player)
end
if(intid == 71) then
player:Teleport(230, 1120.799927, -467.276886, -104.741043)
item:GossipComplete(player)
end
if(intid == 72) then
player:Teleport(1, -4693.167969, -3719.408936, 49.774086)
item:GossipComplete(player)
end
if(intid == 73) then
player:Teleport(0, -11913.967773, -1115.898560, 77.279816)
item:GossipComplete(player)
end
if(intid == 74) then
player:Teleport(530, 3034.863281, 5952.613281, 130.774368)
item:GossipComplete(player)
end
if(intid == 75) then
player:Teleport(530, -215.563675, 2153.101074, 79.554207)
item:GossipComplete(player)
end
if(intid == 76) then
player:Teleport(530, -1648.201416, 7686.244141, -14.353410)
item:GossipComplete(player)
end
if(intid == 77) then
player:Teleport(530, 3037.424561, 3576.538818, 143.218384)
item:GossipComplete(player)
end
if(intid == 78) then
player:Teleport(530, -3072.626709, 2879.110840, 82.300873)
item:GossipComplete(player)
end
if(intid == 79) then
player:Teleport(530, -2812.025146, 5085.235352, -13.033023)
item:GossipComplete(player)
end
if(intid == 80) then
player:Teleport(530, -203.677704, 5513.926758, 21.679346)
item:GossipComplete(player)
end
if(intid == 81) then
player:Teleport(530, -1721.940063, 5382.318359, 1.537373)
item:GossipComplete(player)
end
if(intid == 83) then
player:Teleport(530, -3637.713623, 315.175232, 35.551952)
item:GossipComplete(player)
end
if(intid == 84) then
player:Teleport(530, 3530.903320, 5117.925293, 4.349529)
item:GossipComplete(player)
end
if(intid == 85) then
player:Teleport(0, -11121.737305, -2015.547119, 47.084202)
item:GossipComplete(player)
end
if(intid == 86) then
player:Teleport(530, -315.928223, 3090.644775, -116.455063)
item:GossipComplete(player)
end
if(intid == 87) then
player:Teleport(1, -8173.633789, -4176.341797, -166.151794)
item:GossipComplete(player)
end
if(intid == 88) then
player:Teleport(530, 796.048401, 6864.074219, -64.992691)
item:GossipComplete(player)
end
if(intid == 89) then
player:Teleport(530, 12564.260742, -6775.855469, 15.090900)
item:GossipComplete(player)
end
if(intid == 90) then
player:Teleport(530, 3086.903564, 1406.003540, 189.548431)
item:GossipComplete(player)
end
if(intid == 91) then
player:Teleport(530, 6849.811035, -7953.119141, 170.099884)
item:GossipComplete(player)
end
if(intid == 92) then
player:Teleport(571, 3760.002197, 5413.608398, 40.775795)
item:GossipComplete(player)
end
if(intid == 93) then
player:Teleport(571, 5298.182129, -724.851501, 162.903442)
item:GossipComplete(player)
end
if(intid == 94) then
player:Teleport(571, 3539.470215, 263.158417, 45.625706)
item:GossipComplete(player)
end
if(intid == 95) then
player:Teleport(571, 3736.716553, -3862.061035, 183.021378)
item:GossipComplete(player)
end
if(intid == 96) then
player:Teleport(571, 2029.114624, -4520.532715, 207.844940)
item:GossipComplete(player)
end
if(intid == 97) then
player:Teleport(571, 6330.499023, 2310.453369, 477.265106)
item:GossipComplete(player)
end
if(intid == 98) then
player:Teleport(571, 5484.500000, 4750.392578, -196.924042)
item:GossipComplete(player)
end
if(intid == 99) then
player:Teleport(571, 8232.848633, -1483.130615, 1072.386108)
item:GossipComplete(player)
end
if(intid == 100) then
player:Teleport(571, 4608.031738, 2846.253418, 396.896698)
item:GossipComplete(player)
end
if(intid == 101) then
player:Teleport(571, 5449.899902, -2629.230713, 306.253143)
item:GossipComplete(player)
end
if(intid == 102) then
player:Teleport(571, 5809.805664, 651.377075, 647.504602)
item:GossipComplete(player)
end
if(intid == 103) then
player:Teleport(530, 2908.942383, 5973.306152, 2.096412)
item:GossipComplete(player)
end
if(intid == 104) then
player:Teleport(0, -13258.738281, 168.794815, 34.707809)
item:GossipComplete(player)
end
if(intid == 105) then
player:Teleport(530, -2073.057861, 6708.157227, 11.765224)
item:GossipComplete(player)
end
if(intid == 106) then
player:Teleport(1, 2178.247070, -4766.309570, 54.911034)
item:GossipComplete(player)
end
if(intid == 9) then
--player:FullCastSpellOnTarget(58451, player)
--player:FullCastSpellOnTarget(48100, player)
--player:FullCastSpellOnTarget(58453, player)
--player:FullCastSpellOnTarget(48104, player)
--player:FullCastSpellOnTarget(48102, player)
--item:FullCastSpellOnTarget(58449, player)
end
if(intid == 10) then
player:LearnSpell(15007)
player:UnlearnSpell(15007)
end
end
RegisterItemGossipEvent(54862,1,"On_Gossip1")
RegisterItemGossipEvent(54862,2,"Gossip_Submenus1")
-
The Melancholy
Join Date: Sep 2007
Posts: 2,202
Rep: 810
Cash: 700
What is it that doesn't work?
Are there any errors in console?
Do only some buttons work while others do?
Did you copy this from another script you have? (functions may be conflicting if they have the same name)
-
Master Sergeant
Join Date: May 2008
Location: Moscow, Pennsylvania
Posts: 114
Rep: 9
Cash: 80
I did copy this from another script, however the functions shouldnt have the same name, the functions for this one are On_Gossip1 and the other are on_gossip. No, there are no console errors and nothing shows up when i right click the stone.
-
The Melancholy
Join Date: Sep 2007
Posts: 2,202
Rep: 810
Cash: 700
 Originally Posted by SupernovaHH
I did copy this from another script, however the functions shouldnt have the same name, the functions for this one are On_Gossip1 and the other are on_gossip. No, there are no console errors and nothing shows up when i right click the stone.
Does the other script work though?
Try this one:
Code:
function testOn_Gossip1(item, player)
item:GossipCreateMenu(63633, player, 0)
item:GossipMenuAddItem(2, "Walmart", 1, 0)
item:GossipMenuAddItem(2, "Horde Cities", 3, 0)
item:GossipMenuAddItem(2, "Alliance Cities", 4, 0)
item:GossipMenuAddItem(2, "Global Locations", 5, 0)
item:GossipMenuAddItem(2, "Outland Locations", 6, 0)
item:GossipMenuAddItem(2, "Northrend Locations", 7, 0)
item:GossipMenuAddItem(2, "War Zones", 8, 0)
--item:GossipMenuAddItem(2, "I'll Take A Little Boost, Thanks!", 9, 0)
item:GossipMenuAddItem(2, "Cure Me", 10, 0)
item:GossipSendMenu(player)
end
function testGossip_Submenus1(item, event, player, id, intid, code)
if(intid == 999) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(2, "Walmart", 1, 0)
item:GossipMenuAddItem(2, "Horde Cities", 3, 0)
item:GossipMenuAddItem(2, "Alliance Cities", 4, 0)
item:GossipMenuAddItem(2, "Global Locations", 5, 0)
item:GossipMenuAddItem(2, "Outland Locations", 6, 0)
item:GossipMenuAddItem(2, "Northrend Locations", 7, 0)
item:GossipMenuAddItem(2, "War Zones", 8, 0)
--item:GossipMenuAddItem(2, "I'll Take A Little Boost, Thanks!", 9, 0)
item:GossipMenuAddItem(2, "Cure Me", 10, 0)
item:GossipSendMenu(player)
end
if(intid == 1) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Horde Mall", 300, 0)
item:GossipMenuAddItem(1, "Alliance Mall", 301, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 3) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Orgrimmar", 15, 0)
item:GossipMenuAddItem(1, "Undercity", 16, 0)
item:GossipMenuAddItem(1, "Thunder Bluff", 17, 0)
item:GossipMenuAddItem(1, "Silvermoon City", 18, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 4) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Stormwind", 19, 0)
item:GossipMenuAddItem(1, "Ironforge", 20, 0)
item:GossipMenuAddItem(1, "Darnassus", 21, 0)
item:GossipMenuAddItem(1, "Exodar", 22, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 5) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(0, "Eastern Kingdoms", 500, 0)
item:GossipMenuAddItem(0, "Kalimdor", 501, 0)
item:GossipMenuAddItem(0, "Old School Raids", 502, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 500) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Alterac Mountains", 23, 0)
item:GossipMenuAddItem(1, "Arathi Highlands", 24, 0)
item:GossipMenuAddItem(1, "Badlands", 25, 0)
item:GossipMenuAddItem(1, "Blasted Lands", 26, 0)
item:GossipMenuAddItem(1, "Burning Steppes", 27, 0)
item:GossipMenuAddItem(1, "Deadwind Pass", 28, 0)
item:GossipMenuAddItem(1, "Dun Morogh", 29, 0)
item:GossipMenuAddItem(1, "Duskwood", 30, 0)
item:GossipMenuAddItem(1, "Eastern Plaguelands", 31, 0)
item:GossipMenuAddItem(1, "Elwynn Forest", 32, 0)
item:GossipMenuAddItem(1, "Eversong Woods", 33, 0)
item:GossipMenuAddItem(1, "Ghostlands", 34, 0)
item:GossipMenuAddItem(1, "Hillsbrad Foothills", 35, 0)
item:GossipMenuAddItem(0, "--->Second Page--->", 36, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 36) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Loch Modan",37, 0)
item:GossipMenuAddItem(1, "Redridge Mountains", 38, 0)
item:GossipMenuAddItem(1, "Searing Gorge", 39, 0)
item:GossipMenuAddItem(1, "Silverpine Forest", 40, 0)
item:GossipMenuAddItem(1, "Stranglethorn Vale", 41, 0)
item:GossipMenuAddItem(1, "Swamp Of Sorrows", 42, 0)
item:GossipMenuAddItem(1, "The Hinterlands", 43, 0)
item:GossipMenuAddItem(1, "Tirisfal Glades", 44, 0)
item:GossipMenuAddItem(1, "Western Plaguelands",45, 0)
item:GossipMenuAddItem(1, "Westfall",46, 0)
item:GossipMenuAddItem(1, "Wetlands", 47, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 501) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Ashenvale", 48, 0)
item:GossipMenuAddItem(1, "Azshara", 49, 0)
item:GossipMenuAddItem(1, "Azuremyst Isle", 50, 0)
item:GossipMenuAddItem(1, "Bloodmyst Isle", 51, 0)
item:GossipMenuAddItem(1, "Darkshore", 52, 0)
item:GossipMenuAddItem(1, "Desolace", 53, 0)
item:GossipMenuAddItem(1, "Durotar", 54, 0)
item:GossipMenuAddItem(1, "Dustwallow Marsh", 55, 0)
item:GossipMenuAddItem(1, "Felwood", 56, 0)
item:GossipMenuAddItem(1, "Feralas", 57, 0)
item:GossipMenuAddItem(1, "Moonglade", 58, 0)
item:GossipMenuAddItem(1, "Mulgore", 59, 0)
item:GossipMenuAddItem(1, "Silithus", 60, 0)
item:GossipMenuAddItem(0, "--->Second Page--->", 61, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 61) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Stonetalon Mountains", 62, 0)
item:GossipMenuAddItem(1, "Tanaris", 63, 0)
item:GossipMenuAddItem(1, "Teldrassil", 64, 0)
item:GossipMenuAddItem(1, "The Barrens", 65, 0)
item:GossipMenuAddItem(1, "Thousand Needles", 66, 0)
item:GossipMenuAddItem(1, "Un'Goro Crater", 67, 0)
item:GossipMenuAddItem(1, "Winterspring", 68, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 502) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Ahn'Qiraj", 69, 0)
item:GossipMenuAddItem(1, "Blackwing Lair", 70, 0)
item:GossipMenuAddItem(1, "Molten Core", 71, 0)
item:GossipMenuAddItem(1, "Onyxia's Lair", 72, 0)
item:GossipMenuAddItem(1, "Zul'Gurub", 73, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 6) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Blade's Edge Mountains", 74, 0)
item:GossipMenuAddItem(1, "Hellfire Peninsula", 75, 0)
item:GossipMenuAddItem(1, "Nagrand", 76, 0)
item:GossipMenuAddItem(1, "Netherstorm", 77, 0)
item:GossipMenuAddItem(1, "Shadowmoon Valley", 78, 0)
item:GossipMenuAddItem(1, "Terokkar Forest", 79, 0)
item:GossipMenuAddItem(1, "Zangarmarsh", 80, 0)
item:GossipMenuAddItem(1, "Shattrath", 81, 0)
item:GossipMenuAddItem(0, "Outland Raids", 82, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 82) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Black Temple", 83, 0)
item:GossipMenuAddItem(1, "Gruul's Lair", 84, 0)
item:GossipMenuAddItem(1, "Karazhan", 85, 0)
item:GossipMenuAddItem(1, "Magtheridon's Lair", 86, 0)
item:GossipMenuAddItem(1, "Mount Hyjal", 87, 0)
item:GossipMenuAddItem(1, "Serpentshrine Cavern", 88, 0)
item:GossipMenuAddItem(1, "Sunwell", 89, 0)
item:GossipMenuAddItem(1, "The Eye", 90, 0)
item:GossipMenuAddItem(1, "Zul'Aman", 91, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 7) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Borean Tundra", 92, 0)
item:GossipMenuAddItem(1, "Crystalsong Forest", 93, 0)
item:GossipMenuAddItem(1, "Dragonblight", 94, 0)
item:GossipMenuAddItem(1, "Grizzly Hills", 95, 0)
item:GossipMenuAddItem(1, "Howling Fjords", 96, 0)
item:GossipMenuAddItem(1, "Icecrown Glaicer", 97, 0)
item:GossipMenuAddItem(1, "Sholazar Basin", 98, 0)
item:GossipMenuAddItem(1, "Storm Peaks", 99, 0)
item:GossipMenuAddItem(1, "Wintergrasp", 100, 0)
item:GossipMenuAddItem(1, "Zul'Drak", 101, 0)
item:GossipMenuAddItem(1, "Dalaran", 102, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 8) then
item:GossipCreateMenu(3543, player, 0)
item:GossipMenuAddItem(1, "Blade's Edge Arena", 103, 0)
item:GossipMenuAddItem(1, "Gurubashi Arena", 104, 0)
item:GossipMenuAddItem(1, "Nagrand Arena", 105, 0)
item:GossipMenuAddItem(1, "Ring Of Valor (Alliance vs Horde)", 106, 0)
item:GossipMenuAddItem(0, "[Back]", 999, 0)
item:GossipSendMenu(player)
end
if(intid == 300) then
player:Teleport(560, 2536.162354, 2456.324951, 61.985809)
item:GossipComplete(player)
end
if(intid == 301) then
player:Teleport(560, 3604.475586, 2287.418213, 59.282700)
item:GossipComplete(player)
end
if(intid == 15) then
player:Teleport(1, 1343.172729, -4374.992188, 26.183716)
unit:GossipComplete(player)
end
if(intid == 16) then
player:Teleport(0, 1560.453857, 244.334030, -43.102592)
item:GossipComplete(player)
end
if(intid == 17) then
player:Teleport(1, -1195.436523, 34.784081, 132.40137)
item:GossipComplete(player)
end
if(intid == 18) then
player:Teleport(530, 9496.041016, -7282.289551, 14.318037)
item:GossipComplete(player)
end
if(intid == 19) then
player:Teleport(0, -8832.935547, 625.797485, 93.914894)
item:GossipComplete(player)
end
if(intid == 20) then
player:Teleport(0, -4924.375488, -950.865112, 501.547333)
item:GossipComplete(player)
end
if(intid == 21) then
player:Teleport(1, 9945.676758, 2482.677979, 1316.198853)
item:GossipComplete(player)
end
if(intid == 22) then
player:Teleport(530, -3946.064941, -11727.777344, -138.922562)
item:GossipComplete(player)
end
if(intid == 23) then
player:Teleport(0, 58.714684, -570.825317, 145.711151)
item:GossipComplete(player)
end
if(intid == 24) then
player:Teleport(0, -1550.519409, -2496.936791, 54.452209)
item:GossipComplete(player)
end
if(intid == 25) then
player:Teleport(0, -6819.416992, -3422.346680, 242.543167)
item:GossipComplete(player)
end
if(intid == 26) then
player:Teleport(0, -11270.514648, -3061.004395, -0.152069)
item:GossipComplete(player)
end
if(intid == 27) then
player:Teleport(0, -8057.234375, -1997.046143, 133.364822)
item:GossipComplete(player)
end
if(intid == 28) then
player:Teleport(0, -10437.863281, -1866.211182, 104.634972)
item:GossipComplete(player)
end
if(intid == 29) then
player:Teleport(0, -5271.595703, 43.802460, 386.111420)
item:GossipComplete(player)
end
if(intid == 30) then
player:Teleport(0, -10893.999023, -349.645538, 39.141331)
item:GossipComplete(player)
end
if(intid == 31) then
player:Teleport(0, 2263.505859, -4627.462891, 73.623268)
item:GossipComplete(player)
end
if(intid == 32) then
player:Teleport(0, -9547.107422, 82.203911, 59.357063)
item:GossipComplete(player)
end
if(intid == 33) then
player:Teleport(530, 8822.261719, -7098.651855, 35.365276)
item:GossipComplete(player)
end
if(intid == 34) then
player:Teleport(530, 7230.481934, -6586.369629, 25.941483)
item:GossipComplete(player)
end
if(intid == 35) then
player:Teleport(0, -414.885590, -662.270203, 54.499748)
item:GossipComplete(player)
end
if(intid == 37) then
player:Teleport(0, -5544.246582, -2851.535645, 361.768768)
item:GossipComplete(player)
end
if(intid == 38) then
player:Teleport(0, -9472.294922, -2266.869873, 74.356583)
item:GossipComplete(player)
end
if(intid == 39) then
player:Teleport(0, -6667.144043, -1194.482300, 242.106873)
item:GossipComplete(player)
end
if(intid == 40) then
player:Teleport(0, 581.543396, 1249.138062, 86.588158)
item:GossipComplete(player)
end
if(intid == 41) then
player:Teleport(0, -12323.756836, -584.573059, 24.864433)
item:GossipComplete(player)
end
if(intid == 42) then
player:Teleport(0, -10371.346680, -2723.086426, 21.678825)
item:GossipComplete(player)
end
if(intid == 43) then
player:Teleport(0, 118.710144, -1948.693237, 148.925842)
item:GossipComplete(player)
end
if(intid == 44) then
player:Teleport(0, 2024.515137, 168.655807, 33.867512)
item:GossipComplete(player)
end
if(intid == 45) then
player:Teleport(0, 1678.447876, -1364.333862, 69.890274)
item:GossipComplete(player)
end
if(intid == 46) then
player:Teleport(0, -10726.467773, 1030.061523, 33.054764)
item:GossipComplete(player)
end
if(intid == 47) then
player:Teleport(0, -3192.923340, -2452.208496, 9.292380)
item:GossipComplete(player)
end
if(intid == 48) then
player:Teleport(1, 2461.417725, -504.268280, 114.812622)
item:GossipComplete(player)
end
if(intid == 49) then
player:Teleport(1, 3383.945313, -4665.848145, 94.969765)
item:GossipComplete(player)
end
if(intid == 50) then
player:Teleport(530, -4251.174316, -12869.387695, 13.412463)
item:GossipComplete(player)
end
if(intid == 51) then
player:Teleport(530, -2244.586670, -11910.894531, 24.423874)
item:GossipComplete(player)
end
if(intid == 52) then
player:Teleport(1, 6145.536133, 282.024109, 23.928629)
item:GossipComplete(player)
end
if(intid == 53) then
player:Teleport(1, -1127.806885, 1793.706909, 62.220467)
item:GossipComplete(player)
end
if(intid == 54) then
player:Teleport(1, 601.661621, -4733.739258, -8.558049)
item:GossipComplete(player)
end
if(intid == 55) then
player:Teleport(1, -3647.304199, -2721.955566, 33.222332)
item:GossipComplete(player)
end
if(intid == 56) then
player:Teleport(1, 5378.582031, -752.227243, 344.328766)
item:GossipComplete(player)
end
if(intid == 57) then
player:Teleport(1, -4805.526855, 1038.506226, 104.156227)
item:GossipComplete(player)
end
if(intid == 58) then
player:Teleport(1, 8001.228027, -2672.624268, 512.099792)
item:GossipComplete(player)
end
if(intid == 59) then
player:Teleport(1, -2362.893311, -826.267517, -9.369063)
item:GossipComplete(player)
end
if(intid == 60) then
player:Teleport(1, -7015.238770, 968.619934, 5.474441)
item:GossipComplete(player)
end
if(intid == 62) then
player:Teleport(1, 1299.952491, 728.316223, 177.870941)
item:GossipComplete(player)
end
if(intid == 63) then
player:Teleport(1, -7184.853027, -3983.132324, 10.982137)
item:GossipComplete(player)
end
if(intid == 64) then
player:Teleport(1, 10119.146484, 1549.032837, 1321.552002)
item:GossipComplete(player)
end
if(intid == 65) then
player:Teleport(1, -642.360962, -2654.214844, 95.787682)
item:GossipComplete(player)
end
if(intid == 66) then
player:Teleport(1, -5375.651367, -2509.229736, -40.432945)
item:GossipComplete(player)
end
if(intid == 67) then
player:Teleport(1, -6178.627441, -1100.540283, -214.140274)
item:GossipComplete(player)
end
if(intid == 68) then
player:Teleport(1, 6661.349121, -4560.519043, 717.435547)
item:GossipComplete(player)
end
if(intid == 69) then
player:Teleport(1, -8189.559570, 1532.920898, 4.194667)
item:GossipComplete(player)
end
if(intid == 70) then
player:Teleport(0, -7660.572266, -1221.226318, 287.787964)
item:GossipComplete(player)
end
if(intid == 71) then
player:Teleport(230, 1120.799927, -467.276886, -104.741043)
item:GossipComplete(player)
end
if(intid == 72) then
player:Teleport(1, -4693.167969, -3719.408936, 49.774086)
item:GossipComplete(player)
end
if(intid == 73) then
player:Teleport(0, -11913.967773, -1115.898560, 77.279816)
item:GossipComplete(player)
end
if(intid == 74) then
player:Teleport(530, 3034.863281, 5952.613281, 130.774368)
item:GossipComplete(player)
end
if(intid == 75) then
player:Teleport(530, -215.563675, 2153.101074, 79.554207)
item:GossipComplete(player)
end
if(intid == 76) then
player:Teleport(530, -1648.201416, 7686.244141, -14.353410)
item:GossipComplete(player)
end
if(intid == 77) then
player:Teleport(530, 3037.424561, 3576.538818, 143.218384)
item:GossipComplete(player)
end
if(intid == 78) then
player:Teleport(530, -3072.626709, 2879.110840, 82.300873)
item:GossipComplete(player)
end
if(intid == 79) then
player:Teleport(530, -2812.025146, 5085.235352, -13.033023)
item:GossipComplete(player)
end
if(intid == 80) then
player:Teleport(530, -203.677704, 5513.926758, 21.679346)
item:GossipComplete(player)
end
if(intid == 81) then
player:Teleport(530, -1721.940063, 5382.318359, 1.537373)
item:GossipComplete(player)
end
if(intid == 83) then
player:Teleport(530, -3637.713623, 315.175232, 35.551952)
item:GossipComplete(player)
end
if(intid == 84) then
player:Teleport(530, 3530.903320, 5117.925293, 4.349529)
item:GossipComplete(player)
end
if(intid == 85) then
player:Teleport(0, -11121.737305, -2015.547119, 47.084202)
item:GossipComplete(player)
end
if(intid == 86) then
player:Teleport(530, -315.928223, 3090.644775, -116.455063)
item:GossipComplete(player)
end
if(intid == 87) then
player:Teleport(1, -8173.633789, -4176.341797, -166.151794)
item:GossipComplete(player)
end
if(intid == 88) then
player:Teleport(530, 796.048401, 6864.074219, -64.992691)
item:GossipComplete(player)
end
if(intid == 89) then
player:Teleport(530, 12564.260742, -6775.855469, 15.090900)
item:GossipComplete(player)
end
if(intid == 90) then
player:Teleport(530, 3086.903564, 1406.003540, 189.548431)
item:GossipComplete(player)
end
if(intid == 91) then
player:Teleport(530, 6849.811035, -7953.119141, 170.099884)
item:GossipComplete(player)
end
if(intid == 92) then
player:Teleport(571, 3760.002197, 5413.608398, 40.775795)
item:GossipComplete(player)
end
if(intid == 93) then
player:Teleport(571, 5298.182129, -724.851501, 162.903442)
item:GossipComplete(player)
end
if(intid == 94) then
player:Teleport(571, 3539.470215, 263.158417, 45.625706)
item:GossipComplete(player)
end
if(intid == 95) then
player:Teleport(571, 3736.716553, -3862.061035, 183.021378)
item:GossipComplete(player)
end
if(intid == 96) then
player:Teleport(571, 2029.114624, -4520.532715, 207.844940)
item:GossipComplete(player)
end
if(intid == 97) then
player:Teleport(571, 6330.499023, 2310.453369, 477.265106)
item:GossipComplete(player)
end
if(intid == 98) then
player:Teleport(571, 5484.500000, 4750.392578, -196.924042)
item:GossipComplete(player)
end
if(intid == 99) then
player:Teleport(571, 8232.848633, -1483.130615, 1072.386108)
item:GossipComplete(player)
end
if(intid == 100) then
player:Teleport(571, 4608.031738, 2846.253418, 396.896698)
item:GossipComplete(player)
end
if(intid == 101) then
player:Teleport(571, 5449.899902, -2629.230713, 306.253143)
item:GossipComplete(player)
end
if(intid == 102) then
player:Teleport(571, 5809.805664, 651.377075, 647.504602)
item:GossipComplete(player)
end
if(intid == 103) then
player:Teleport(530, 2908.942383, 5973.306152, 2.096412)
item:GossipComplete(player)
end
if(intid == 104) then
player:Teleport(0, -13258.738281, 168.794815, 34.707809)
item:GossipComplete(player)
end
if(intid == 105) then
player:Teleport(530, -2073.057861, 6708.157227, 11.765224)
item:GossipComplete(player)
end
if(intid == 106) then
player:Teleport(1, 2178.247070, -4766.309570, 54.911034)
item:GossipComplete(player)
end
if(intid == 9) then
--player:FullCastSpellOnTarget(58451, player)
--player:FullCastSpellOnTarget(48100, player)
--player:FullCastSpellOnTarget(58453, player)
--player:FullCastSpellOnTarget(48104, player)
--player:FullCastSpellOnTarget(48102, player)
--item:FullCastSpellOnTarget(58449, player)
end
if(intid == 10) then
player:LearnSpell(15007)
player:UnlearnSpell(15007)
end
end
RegisterItemGossipEvent(54862,1,"testOn_Gossip1")
RegisterItemGossipEvent(54862,2,"testGossip_Submenus1")
Also I just noticed it's a item gossip script, are you sure your item is set to a script type item (it has to have a use effect - usually use a dummy spell so you don't see spell and script overwrites effects).
-
Master Sergeant
Join Date: May 2008
Location: Moscow, Pennsylvania
Posts: 114
Rep: 9
Cash: 80
I never had to set an item to have a use effect before?
-
The Melancholy
Join Date: Sep 2007
Posts: 2,202
Rep: 810
Cash: 700
 Originally Posted by SupernovaHH
I never had to set an item to have a use effect before?
You might have done without noticing. You have to use a dummy spell (it won't show on the item, it's just in the SQL) because the script just see's that a spell is being used on that item and uses the script instead. That's how it's triggered.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
 |
Bookmarks