Автор: dimajak 5.6.2010, 0:15
Пытался переделать скрипт Time_Hub.lua чтобы время показывал в формате ЧЧ:ММ, т.е. с разделителем : (двоеточие)
Код
local hours = os.date("%H")
local minutes = os.date("%M")
local current ="•["..hours..":"..minutes.."]•"
if tmp then Core.UnregBot(tmp) end
Core.RegBot(current,description,mail,false)
tmp = current
Не регистрирует бота, ошибок нет.
А если "двоеточие" заменить на "точку"
Код
local current ="•["..hours.."."..minutes.."]•"
то работает.
Почему?
Как сделать правильно?
Автор: Setuper 5.6.2010, 0:21
Читаем документацию по скриптам:
Цитата
Chars $|<>:?*"/\ and space not allowed in nick, $| not allowed in Description and Email, max length 64 chars per string. Return nil when failed, true when success.