forked from opentomb/OpenTomb
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathautoexec.lua
More file actions
28 lines (24 loc) · 725 Bytes
/
autoexec.lua
File metadata and controls
28 lines (24 loc) · 725 Bytes
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
-- LUA autoexec config file
-- CVAR's section. here you can create and delete CVAR's
if(cvars == nil) then
cvars = {};
end;
-- CVAR's section. here you can create and delete CVAR's
cvars.show_fps = 1;
cvars.free_look_speed = 2500;
-- AUTOEXEC LINES
setLanguage("english");
setGravity(0, 0, -5700.0);
mlook(1);
freelook(0);
cam_distance(1024.0);
setCameraViewDistance(32768);
noclip(0);
--playVideo(base_path .. "data/tr3/fmv/logo.rpl");
--playVideo(base_path .. "data/tr3/fmv/Crsh_Eng.rpl");
--setgamef(1, 17)
--loadMap(base_path .. "tests/altroom3/LEVEL1.PHD");
--loadMap(base_path .. "tests/heavy1/LEVEL1.PHD");
--loadMap(base_path .. "tests/TRIGGERS.PHD");
--setgamef(1, 0);
dofile(base_path .. "save/qsave.lua");