/traderous

To get this branch, use:
bzr branch /bzr/traderous

« back to all changes in this revision

Viewing changes to trade_view.lua

  • Committer: Josh C
  • Date: 2013-06-30 23:48:52 UTC
  • Revision ID: josh@9ix.org-20130630234852-rja5zhlmup3cp0tm
award bounty

Show diffs side-by-side

added added

removed removed

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
 
180
195
              -- give the buttons a cycle to get out of the T/L corner
181
196
              self:update(0)
182
197
           end,