- Added option to customize left text.

- Added option to show or hide the placement number.
This commit is contained in:
tercio
2014-07-13 17:03:01 -03:00
parent 67c844e8f8
commit 35fe9545f9
12 changed files with 407 additions and 80 deletions
+23 -2
View File
@@ -362,10 +362,31 @@ function _G._detalhes:Start()
--_detalhes:OpenCustomDisplayWindow()
--BNSendFriendInvite ("tercio#1488")
function _detalhes:EnterChatChannel()
--encode test
local realm = GetRealmName()
realm = realm or ""
if (realm ~= "Azralon") then
return
end
--local box1 =
--> room name
local room_name = "Details"
--> already in?
for room_index = 1, 10 do
local _, name = GetChannelName (room_index)
if (name == room_name) then
return --> already in the room
end
end
--> enter
JoinChannelByName (room_name)
end
_detalhes:ScheduleTimer ("EnterChatChannel", 30)
end