diff options
| author | 1029chris <1029chris@gmail.com> | 2016-04-29 22:19:56 -0700 |
|---|---|---|
| committer | 1029chris <1029chris@gmail.com> | 2016-04-29 22:19:56 -0700 |
| commit | a7fc16d026ff6baf51e082eeee0d79f0195729c4 (patch) | |
| tree | 009f1d6f8f28f90ca13ea053cdb844669cab6b48 /panel.lua | |
| parent | 46c308be6d546bea0831b11e34a485b4b0f7562d (diff) | |
Added things to virus fight
added virus health
added variation in stuff
Diffstat (limited to 'panel.lua')
| -rw-r--r-- | panel.lua | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -24,7 +24,7 @@ function drawPanelButton(id) end end function drawStart() - panel.width = love.graphics.getWidth( ) + panel.width = love.graphics.getWidth() panel.y = love.graphics.getHeight() panel.y = panel.y - panel.thick panel.s.y = panel.y + 5 @@ -58,6 +58,10 @@ function drawStart() --sendMessage(1, msgs[msg.c]) end end + if v1.c.chat.msgs > 35 and v1.yes == true then + love.graphics.setColor(colors.font.dark) + love.graphics.print("VIRUS HEALTH: " .. v1.c.health, sys.w/2, panel.s.y+7) + end end function drawNoti() if notify.yes == true or notify.op ~= 0 then |
