/traderous

To get this branch, use:
bzr branch http://9ix.org/bzr/traderous

« back to all changes in this revision

Viewing changes to trade_view.lua

  • Committer: Josh C
  • Date: 2013-06-30 14:59:35 UTC
  • Revision ID: josh@9ix.org-20130630145935-y34o51cg3lsom5bg
"safe" zone on planets - no new enemies will track you if you're there.

Show diffs side-by-side

added added

removed removed

Lines of Context:
177
177
              }
178
178
              self:add(self.availSpace)
179
179
 
180
 
              if the.player.kills > 0 then
181
 
                 local award = the.player.kills * 100
182
 
                 self:add(Text:new{
183
 
                             text = 'You have been awarded ' ..
184
 
                                award ..
185
 
                                ' credits for killing bandits.',
186
 
                             width = 450,
187
 
                             align = 'center',
188
 
                             x = boxL,
189
 
                             y = boxB - 4 * th - 12
190
 
                          })
191
 
 
192
 
                 the.player.money = the.player.money + award
193
 
              end
194
 
 
195
180
              -- give the buttons a cycle to get out of the T/L corner
196
181
              self:update(0)
197
182
           end,
204
189
                 Subview.activate(self)
205
190
              end,
206
191
   close = function (self)
207
 
              the.player:save()
208
 
 
209
192
              the.cursor.visible = true
210
193
              love.mouse.setVisible(false)
211
194
              love.mouse.setGrab(true)