This file is indexed.

/usr/share/games/freedroidrpg/dialogs/Richard.dialog is in freedroidrpg-data 0.15.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
----------------------------------------------------------------------
 * This file is part of Freedroid
 *
 * Freedroid is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * Freedroid is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Freedroid; see the file COPYING. If not, write to the 
 * Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
 * MA 02111-1307 USA
----------------------------------------------------------------------


If you have questions concerning FreedroidRPG, please send an email to:

freedroid-discussion@lists.sourceforge.net


Beginning of new chat dialog for character="XXXXX"
----------------------------------------------------------------------

<FirstTime LuaCode>
	show(0)
</LuaCode>

<EveryTime LuaCode>
	if (has_item_backpack("Kevin's Data Cube") > 0) then show(6) end
	show(99)
</LuaCode>
----------------------------------------------------------------------

Nr=0 Text=_"Hi! I'm new here. "
<LuaCode>
	npc_says(_"Welcome, welcome! I'm Richard. I'm the computer guy around here.")
	npc_says(_"I mostly work with this huge computer cluster here, although I also program the 614 bots in my spare time.")
	set_bot_name(_"Richard -- Programmer")
	hide(0) show(1)
</LuaCode>
----------------------------------------------------------------------

Nr=1 Text=_"A computer cluster? What's that?"
<LuaCode>
	npc_says(_"A cluster is a group of computers, connected in a way that helps them collaborate in solving problems.")
	npc_says(_"As they say, 'two heads are better than one'. And we have a lot of heads here.")
	npc_says(_"That is why I call this cluster 'Hydra'. A lot of heads indeed.")
	hide(1)
</LuaCode>
----------------------------------------------------------------------

Nr=6 Text=_"I have a data cube with some information. Can you tell me something more about it?"
<LuaCode>
	npc_says(_"Interesting. Let me see this thing. Hmm... Yes, there is quite a lot of data in there. Maybe we could use Hydra to evaluate the data.")
	npc_says(_"Hey, what do we have here? The data is already prepared for processing by a cluster just like ours. Wow! That's excellent!")
	npc_says(_"I'll feed it into Hydra right away. Expect the results in a short while. Hydra has never let me down.")
	del_item_backpack("Kevin's Data Cube", 1)
	end_quest(_"A kingdom for a cluster!", _"Yes, that was simple. I wish everything else went as smoothly as this one did...")
	hide(6) show(9, 10)
</LuaCode>
----------------------------------------------------------------------

Nr=9 Text=_"Hey, did you get something out of that data cube?"
<LuaCode>
	npc_says(_"Of course! I told you, Hydra has never failed me! I designed it myself, and I know computers very well. I never make mistakes.")
	npc_says(_"Seems like the disruptor shield which thwarts all our attacks on Hell Fortress can be controlled from somewhere outside, or something like that.")
	npc_says(_"I was busy servicing one of Hydra's nodes, but I sent the full report to Spencer. He will tell you more.")
	hide(9)
</LuaCode>
----------------------------------------------------------------------

Nr=10 Text=_"So... What's the story on those data cubes, anyway?"
<LuaCode>
	npc_says(_"Well, they were originally developed for use with the Open-Pandora computing platform.")
	tux_says(_"The what?")
	npc_says(_"It was a handheld gaming computer, built on open-source software.")
	npc_says(_"The device had limited storage capabilities, so an enterprising hacker designed the data cubes.")
	npc_says(_"Those were the beginning days of open-source hardware. It's one of the few open-source innovations still around.")
</LuaCode>
----------------------------------------------------------------------

Nr=99 Text=_"See you later."
<LuaCode>
	npc_says(_"Take care, Linarian.")
	end_dialog()
</LuaCode>
----------------------------------------------------------------------

End of chat dialog for character="XXXXX"