mirror of
https://github.com/araxiaonline/RandomScriptsforAzerothCore.git
synced 2026-06-13 10:22:22 -04:00
17 lines
553 B
Lua
17 lines
553 B
Lua
-- Name: Reload Scripts
|
|
-- Details: Reloads lua scripts for faster development.
|
|
-- Usage: Type "reload scripts" in the mangosd console or in-game.
|
|
-- Website: https://github.com/RStijn
|
|
|
|
-- Functions
|
|
function reloadElunaEngine(event, player, command)
|
|
if command == "reload scripts" or command == "reloadscripts" then
|
|
if player == nil or player:IsGM() then -- console or gm
|
|
ReloadEluna()
|
|
else
|
|
player:SendBroadcastMessage("Turn <GM> mode on for access to this command")
|
|
end
|
|
end
|
|
end
|
|
|
|
RegisterPlayerEvent(42, reloadElunaEngine) |