-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbill.c
201 lines (155 loc) · 5.09 KB
/
bill.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
/* bill.c */
#include "includes/bill.h"
#include "includes/larncons.h"
#include "includes/larndata.h"
#include "includes/larnfunc.h"
#include "includes/help.h"
#include "includes/io.h"
static int letter1 (int);
static int letter2 (void);
static int letter3 (void);
static int letter4 (void);
static int letter5 (void);
static int letter6 (void);
/*
* function to create the tax bill for the user
*/
static int
letter1 (int gold)
{
resetscroll ();
screen_clear();
lstandout ("From:");
lprcat (" the LRS (Larn Revenue Service)\n");
lstandout ("\nSubject:");
lprcat (" undeclared income\n");
lprcat ("\n We heard you survived the caverns of Larn. Let me be the");
lprcat
("\nfirst to congratulate you on your success. It is quite a feat.");
lprcat ("\nIt must also have been very profitable for you.");
lprcat ("\n\n The Dungeon Master has informed us that you brought");
lprintf ("\n%d gold pieces back with you from your journey. As the", gold);
lprcat
("\ncounty of Larn is in dire need of funds, we have spared no time");
lprintf ("\nin preparing your tax bill. You owe %d gold pieces as",
gold * TAXRATE);
lprcat ("\nof this notice, and is due within 5 days. Failure to pay will");
lprcat ("\nmean penalties. Once again, congratulations, We look forward");
lprcat ("\nto your future successful expeditions.\n");
retcont ();
return (1);
}
static int
letter2 (void)
{
resetscroll ();
screen_clear();
lstandout ("From:");
lprcat (" His Majesty King Wilfred of Larndom\n");
lstandout ("\nSubject:");
lprcat (" a noble deed\n");
lprcat ("\n I have heard of your magnificent feat, and I, King Wilfred,");
lprcat
("\nforthwith declare today to be a national holiday. Furthermore,");
lprcat ("\nhence three days, Ye be invited to the castle to receive the");
lprcat
("\nhonour of Knight of the realm. Upon thy name shall it be written. . .");
lprcat ("\nBravery and courage be yours.");
lprcat ("\nMay you live in happiness forevermore . . .\n");
retcont ();
return (1);
}
static int
letter3 (void)
{
resetscroll ();
screen_clear();
lstandout ("From:");
lprcat (" Count Endelford\n");
lstandout ("\nSubject:");
lprcat (" You Bastard!\n");
lprcat ("\n I heard (from sources) of your journey. Congratulations!");
lprcat ("\nYou Bastard! With several attempts I have yet to endure the");
lprcat (" caves,\nand you, a nobody, makes the journey! From this time");
lprcat (" onward, bewarned\nupon our meeting you shall pay the price!\n");
retcont ();
return (1);
}
static int
letter4 (void)
{
resetscroll ();
screen_clear();
lstandout ("From:");
lprcat (" Mainair, Duke of Larnty\n");
lstandout ("\nSubject:");
lprcat (" High Praise\n");
lprcat
("\n With a certainty a hero I declare to be amongst us! A nod of");
lprcat ("\nfavour I send to thee. Me thinks Count Endelford this day of");
lprcat ("\nright breath'eth fire as of dragon of whom ye are slayer. I");
lprcat ("\nyearn to behold his anger and jealously. Should ye choose to");
lprcat ("\nunleash some of thy wealth upon those who be unfortunate, I,");
lprcat ("\nDuke Mainair, Shall equal thy gift also.\n");
retcont ();
return (1);
}
static int
letter5 (void)
{
resetscroll ();
screen_clear();
lstandout ("From:");
lprcat (" St. Mary's Children's Home\n");
lstandout ("\nSubject:");
lprcat (" these poor children\n");
lprcat ("\n News of your great conquests has spread to all of Larndom.");
lprcat ("\nMight I have a moment of a great man's time. We here at St.");
lprcat ("\nMary's Children's Home are very poor, and many children are");
lprcat ("\nstarving. Disease is widespread and very often fatal without");
lprcat
("\ngood food. Could you possibly find it in your heart to help us");
lprcat ("\nin our plight? Whatever you could give will help much.");
lprcat ("\n(your gift is tax deductible)\n");
retcont ();
return (1);
}
static int
letter6 (void)
{
resetscroll ();
screen_clear();
lstandout ("From:");
lprcat (" The National Cancer Society of Larn\n");
lstandout ("\nSubject:");
lprcat (" hope\n");
lprcat
("\nCongratulations on your successful expedition. We are sure much");
lprcat
("\ncourage and determination were needed on your quest. There are");
lprcat ("\nmany though, that could never hope to undertake such a journey");
lprcat ("\ndue to an enfeebling disease -- cancer. We at the National");
lprcat ("\nCancer Society of Larn wish to appeal to your philanthropy in");
lprcat ("\norder to save many good people -- possibly even yourself a few");
lprcat
("\nyears from now. Much work needs to be done in researching this");
lprcat
("\ndreaded disease, and you can help today. Could you please see it");
lprcat ("\nin your heart to give generously? Your continued good health");
lprcat ("\ncan be your everlasting reward.\n");
retcont ();
return (1);
}
/*
* Page the mail to the terminal - dgk
*/
void
readmail (int gold)
{
letter1 (gold);
letter2 ();
letter3 ();
letter4 ();
letter5 ();
letter6 ();
}