Changeset - 64616264192b
[Not reviewed]
default
0 2 0
Silverwing - 7 years ago 2017-12-24 22:01:57

More fixes
2 files changed with 17 insertions and 9 deletions:
0 comments (0 inline, 0 general) First comment
atlantis_dyp.lua
Show inline comments
 
@@ -1252,12 +1252,13 @@ dyp_crab_cave = labyrinth {
 
    underwater = true;
 
    map = {
 
        ["00"] = {
 
            name = [[Вы стоите у входа в глубокую пещеру. Стены здесь неровные и извилистые, образую причудливые переплетения длинный коридоров. Кто знает, куда они приведут? На каменистом полу едва ли можно заметить какие-либо следы. ]];
 
            e1 = "10";
 
            e2 = "11";
 
            ex = "dyp_temple_cliff_1";
 
        };
 
        ["10"] = {
 
            e1 = "20";
 
            e2 = "21";
 
            e4 = "00";
 
        };
leviathan.lua
Show inline comments
 
@@ -999,17 +999,24 @@ phone_dlg = dlg {
 
		{ tag = "wright", always = true, "Джек Райт", code = [[walkin("wright_phone_dlg")]]},
 
		{ tag = "anna", always = true, "Анна Рэдклифф", code = [[walkin("anna_phone_dlg")]]},
 
		{ tag = "exit", always = true, "Положить трубку", code = [[back()]]}
 
	}
 
};
 
 
global {
 
    lev_started = false;
 
};
 
 
function leviathan_init()
 
	put(submarine_leviathan:disable(), dock_mooring);
 
	local i = 0;
 
	while i < submarine_leviathan.circuit_breaks do
 
		local t = rnd(#leviathan_wiring);
 
		if (leviathan_wiring[t].state == 2) then
 
			leviathan_wiring[t].state = 0;
 
			i = i + 1;
 
		end;
 
	end;
 
    if not lev_started then
 
        lev_started = true;
 
        put(submarine_leviathan:disable(), dock_mooring);
 
        local i = 0;
 
        while i < submarine_leviathan.circuit_breaks do
 
            local t = rnd(#leviathan_wiring);
 
            if (leviathan_wiring[t].state == 2) then
 
                leviathan_wiring[t].state = 0;
 
                i = i + 1;
 
            end;
 
        end;
 
    end;
 
end;
 
\ No newline at end of file
0 comments (0 inline, 0 general) First comment
You need to be logged in to comment. Login now