add chat panel, send text messages, guard forbidden functions with an ifdef

This commit is contained in:
Eduardo Bart
2011-11-03 18:54:53 -02:00
parent 6d6479e4a9
commit b216b00a32
16 changed files with 142 additions and 37 deletions

View File

@@ -43,4 +43,7 @@ end
function Game.setSkill(id, level, percent)
local skillPanel = skillWindow:getChildById('skillPanel')
local levelLabel = skillPanel:getChildById('skillLevel' .. id)
end
end
connect(Game, { onLogin = Skills.create,
onLogout = Skills.destroy })

View File

@@ -9,10 +9,6 @@ Module
onLoad: |
require 'skills'
Skills.create()
return true
onUnload:
Skills.destroy()