Hey all, Sorry for posting this suche loser question. But i searched all 5Apges of threads and found nothing. Ok there it is.
Where do i put the lua scripts for mangos?
There are no Scripts folder or suche? When i put my lua in C:/Mangos it dosen't work. I Trying to fix Archerus Gryphon in Ebon HOld. Changed Flags To "3" and using this LUA:
Code:
function GryphonDown_OnGossip(Unit, Event, Player)
Unit:GossipCreateMenu(100, Player, 0)
Unit:GossipMenuAddItem(0, "Go Down to Death's Breach", 1, 0)
Unit:GossipSendMenu(Player)
end
function GryphonDown_OnSelect(Unit, Event, Player, MenuId, id, Code)
if (id == 1) then
Player:Teleport(609, 2430.61, -5730.25, 157.855)
Unit:GossipComplete(Player)
end
end
function GryphonUp_OnGossip(Unit, Event, Player)
Unit:GossipCreateMenu(100, Player, 0)
Unit:GossipMenuAddItem(0, "Go Up to Heart of Acherus", 1, 0)
Unit:GossipSendMenu(Player)
end
function GryphonUp_OnSelect(Unit, Event, Player, MenuId, id, Code)
if (id == 1) then
Player:Teleport(609, 2363.69, -5659.33, 382.270)
Unit:GossipComplete(Player)
end
end
RegisterUnitGossipEvent(29488, 1, "GryphonDown_OnGossip")
RegisterUnitGossipEvent(29501, 1, "GryphonUp_OnGossip")
RegisterUnitGossipEvent(29488, 2, "GryphonDown_OnSelect")
RegisterUnitGossipEvent(29501, 2, "GryphonUp_OnSelect")
Mabye the lua is bad? And Where do i put the Lua Scripts? What folder or what? Sorry again for bullshit question :|