/usr/share/games/freedroidrpg/dialogs/Cryo-Terminal.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 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 | ----------------------------------------------------------------------
* 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
Remember to change =_ to only = for OptionText and Subtitle that will not need translation.
Beginning of new chat dialog for character="XXXXX"
----------------------------------------------------------------------
<EveryTime LuaCode>
terminal = "guest@cryo-solutions: ~ # "
npc_says(_"Welcome to [b]Cryonic Solutions[/b]!", "NO_WAIT")
npc_says_random(_"We freeze you today, so you can see tomorrow!", _"Take the fast trip to the future with Cryonic Solutions!", "NO_WAIT")
npc_says(_"Please make your selection to learn more!", "NO_WAIT")
if (not has_cookie("cryo_term_unlocked")) then
show(0, 1, 2, 3)
if (has_cookie("cryo_outergate_code")) then
show(50)
end
else
npc_says(_"Admin mode.", "NO_WAIT")
terminal = "admin@cryo-solutions: ~ # "
show(51, 60)
end
cli_says(terminal, "NO_WAIT")
show(99)
</LuaCode>
---------------------------------------------------------------------
Nr=0 Text=_"about"
<LuaCode>
npc_says(_"Cryonic Solutions is a full service cryonic company.", "NO_WAIT")
npc_says(_"We provide not only full cryostasis, but post-stasis reintegration into the world of tomorrow!")
npc_says(_"Take the fast trip to the future with Cryonic Solutions!")
npc_says(_"Cryonic Solutions, since ".. os.date("%w")+2011 .._", is the name people trust in cryonics!")
cli_says(terminal, "NO_WAIT")
hide(0)
</LuaCode>
---------------------------------------------------------------------
Nr=1 Text=_"appointments and visiting hours"
<LuaCode>
npc_says(_"Cryonic Solutions operates 24 hours a day every day of the year.")
npc_says(_"However for the safety of our clients, visiting hours are restricted.", "NO_WAIT")
npc_says(_"Visiting hours for family and friends are by appointment only [b]Monday-Thursday 10:00-14:00[/b].")
npc_says(_"Prospective clients are welcome to make appointments from [b]15:00-17:00 Fridays[/b].", "NO_WAIT")
cli_says(terminal, "NO_WAIT")
hide(1)
</LuaCode>
---------------------------------------------------------------------
Nr=2 Text=_"pricing"
<LuaCode>
npc_says(_"Seeing the distant future is priceless.")
npc_says(_"But we here at Cryonic Solutions understand that you and your loved ones have a budget. So we offer a wide range of products to make your trip to the future affordable.")
npc_says(_"Make an appointment today!")
cli_says(terminal, "NO_WAIT")
hide(2)
</LuaCode>
---------------------------------------------------------------------
Nr=3 Text=_"advantages"
<LuaCode>
npc_says(_"Are you looking to experience a whole new reality?")
npc_says(_"Or are you interested in finding out what happens?")
npc_says(_"Or maybe you want to see what compound interest can do for you?")
npc_says(_"These are just some of the many advantages of taking the fast trip to the future with Cryonic Solutions!")
cli_says(terminal, "NO_WAIT")
hide(3)
</LuaCode>
---------------------------------------------------------------------
Nr=50 Text="*#06#"
<LuaCode>
add_cookie("cryo_term_unlocked")
npc_says(_"Enter command code", "NO_WAIT")
cli_says("> ")
tux_says("09F911029D74E35BD84156C5635688C0")
npc_says(_"Unlocked. Entering admin mode...")
terminal = "admin@cryo-solutions: ~ # "
cli_says(terminal, "NO_WAIT")
hide(0, 1, 2, 3, 50) show(51, 60)
</LuaCode>
---------------------------------------------------------------------
Nr=51 Text=_"guest mode"
<LuaCode>
del_cookie("cryo_term_unlocked")
npc_says(_"Entering user mode...")
terminal = "guest@cryo-solutions: ~ # "
cli_says(terminal, "NO_WAIT")
hide(51, 60, 70, 80) show(0, 1, 2, 3)
</LuaCode>
----------------------------------------------------------------------
Nr=60 Text=_"gate status"
<LuaCode>
if (cmp_obstacle_state("CryoOuterGate", "closed")) then
npc_says(_"Cryo Complex Gates status: CLOSED", "NO_WAIT")
show(70)
elseif (cmp_obstacle_state("CryoOuterGate", "opened")) then
npc_says(_"Cryo Complex Gates status: OPEN", "NO_WAIT")
show(80)
else
npc_says(_"GAME BUG. PLEASE REPORT, Cryo-terminal node 60")
end
cli_says(terminal, "NO_WAIT")
</LuaCode>
----------------------------------------------------------------------
Nr=70 Text=_"open gates"
<LuaCode>
npc_says(_"Access granted. Opening gates ...")
npc_says(_"Cryo Complex Gates status: OPEN")
change_obstacle_state("CryoOuterGate", "opened")
change_obstacle_state("CryoInnerGate", "opened")
cli_says(terminal, "NO_WAIT")
hide(70) show(80)
</LuaCode>
----------------------------------------------------------------------
Nr=80 Text=_"close gates"
<LuaCode>
npc_says(_"Access granted. Closing gates ...")
npc_says(_"Cryo Complex Gates status: CLOSED")
change_obstacle_state("CryoOuterGate", "closed")
change_obstacle_state("CryoInnerGate", "closed")
cli_says(terminal, "NO_WAIT")
hide(80) show(70)
</LuaCode>
----------------------------------------------------------------------
Nr=99 Text=_"leave"
<LuaCode>
npc_says(_"Exiting Session")
end_dialog()
</LuaCode>
----------------------------------------------------------------------
End of chat dialog for character="XXXXX"
|