Changeset - ac31d3793480
[Not reviewed]
default
0 3 0
silverwing - 5 years ago 2019-10-06 09:00:02

[fix] Remove obsolete hint on iyh from party's dialogs
3 files changed with 6 insertions and 5 deletions:
0 comments (0 inline, 0 general)
atlantis.lua
Show inline comments
 
@@ -12,6 +12,7 @@ global {
 
    atl_iyh_entrance_destroyed = false;
 
    atl_iyh_artifacts_on_atlantis = false;
 
    atl_iyh_hidden_entrance_known = false;
 
    atl_iyh_temple_visited = false;
 
 
    atl_mtr_started = false;
 
atlantis_iyhehevjiarr.lua
Show inline comments
 
@@ -1102,6 +1102,7 @@ iyh_shockfish = obj {
 
};
 
 
iyh_temple_main_hall_enter = function(s)
 
    atl_iyh_temple_visited = true;
 
    remove(iyh_shockfish, here());
 
    if (atl_iyh_shockfish_away == 0 and atl_iyh_shockfish_away and not atl_iyh_shockfish_dead and not atl_iyh_shockfish_left) then
 
        if have(iyh_item_amulet) then
 
@@ -1546,7 +1547,6 @@ iyh_outro_svetlova = room {
 
        remove(item_legend_of_dark_source, pl);
 
        remove(item_legend_of_first_city, pl);
 
        remove(item_legend_of_hunter, pl);
 
                  
 
    end;
 
    obj = {
 
        vway("Продолжить", "{Продолжить}", "atl_luna_drake_room");
party.lua
Show inline comments
 
@@ -296,7 +296,7 @@ learr_dlg = dlg {
 
            poff('join', 'stay');
 
        end;
 
 
        if (atl_iyh_state == 7) then
 
        if (atl_iyh_state == 7 and not atl_iyh_temple_visited) then
 
			pon("on_iyh");
 
		else
 
			poff("on_iyh");
 
@@ -687,7 +687,7 @@ radcliffe_dlg = dlg {
 
            poff('stay', 'join');
 
        end;
 
        
 
        if (atl_iyh_state == 7) then
 
        if (atl_iyh_state == 7 and not atl_iyh_temple_visited) then
 
			pon("on_iyh");
 
		else
 
			poff("on_iyh");
 
@@ -876,7 +876,7 @@ wright_main_dlg = dlg {
 
    };
 
    nam = "Джек Райт";
 
	entered = function(s)
 
		if (atl_iyh_state == 7) then
 
		if (atl_iyh_state == 7 and not atl_iyh_temple_visited) then
 
			pon("on_iyh");
 
		else
 
			poff("on_iyh");
 
@@ -1097,7 +1097,7 @@ anna_dlg = dlg {
 
	entered = function(s)
 
        psub("generic");
 
    
 
		if (atl_iyh_state == 7) then
 
		if (atl_iyh_state == 7 and not atl_iyh_temple_visited) then
 
			pon("on_iyh");
 
		else
 
			poff("on_iyh");
0 comments (0 inline, 0 general)