Hey,
ich suche ein Addon das den Geist automatisch freilässt.
Jemand ne Ahnung wo's das gibt?
ich suche ein Addon das den Geist automatisch freilässt.
Jemand ne Ahnung wo's das gibt?
<Ui xsi:schemaLocation="http://www.blizzard.com/wow/ui/"> <script file="repopme.lua"/> <!-- Frame to handle all core events --> <Frame name="repopme_core"> <scripts> <OnLoad> this:RegisterEvent("PLAYER_DEAD"); </OnLoad> <OnEvent> repopme_OnEvent(event); </OnEvent> </Scripts> </Frame> </Ui>
## Interface: 1101 ## Title: Auto Repopme ## Notes: Automaticly sets ones ghost free ## OptionalDeps: ## Dependencies: repopme.xml
-- Autorepopme by r00kie function repopme_OnEvent(event) if (event == "PLAYER_DEAD") then RepopMe(); end end