
The layout is:
Code: Select all
Script a.Loans
Version: 0
for Script Engine Version: 25
Description
Arguments
Source Text
001 * Loan generation
002 send incoming message 'You have gotten a loan worth 500000 credits. Loan period is 30 minutes.' to player: display it=[TRUE]
003 add money to player: 500000
004 * Loan period time
005 @ = wait 300000 ms
006 * Loan payback
007 send incoming message 'Loan period expired.' to player: display it=[TRUE]
008 add money to player: -500000
009 return null