Changeset - 1d45f300a391
[Not reviewed]
default
0 1 0
Silverwing - 6 years ago 2019-03-10 08:59:39

update phaetlarr dialog
1 file changed with 23 insertions and 5 deletions:
party.lua
23
5
0 comments (0 inline, 0 general)
party.lua
Show inline comments
 
@@ -80,11 +80,17 @@ char_phaetlarr = obj {
 
	life = party_follow;
 
	act = function(s)
 
		if (stead.nameof(where(s)) == s.home) then
 
			walkin(phaetlarr_home_dlg);
 
            phaetlarr_dlg.home = true;
 
		else
 
            phaetlarr_dlg.home = false;
 
            if where(s).underwater then
 
                phaetlarr_dlg.underwater = true;
 
            else
 
                phaetlarr_dlg.underwater = false;
 
            end;
 
		end;
 
			walkin(phaetlarr_dlg);
 
		end;
 
	end;
 
    seen_level = 2;
 
};
 
 
@@ -451,10 +457,17 @@ phaetlarr_phone_dlg = dlg {
 
    };
 
};
 
 
phaetlarr_home_dlg = dlg {
 
phaetlarr_dlg = dlg {
 
    var {
 
        home = false;
 
        underwater = false;
 
    };
 
	nam = "Фаэтларр";
 
	entered = function(s)
 
        psub("generic");
 
 
        poff("talk", "on_black", "on_drake", "on_venaedanotrr", "on_nleyyslanotrr", "on_join");
 
        if s.home then
 
        if rel_phaetlarr >= 0 then
 
            if char_phaetlarr.on_black < 2 then
 
                pon("on_black", "talk");
 
@@ -471,8 +484,6 @@ phaetlarr_home_dlg = dlg {
 
            if char_phaetlarr.on_join < 2 then
 
                pon("on_join", "talk");
 
            end;
 
        else
 
            poff("talk");
 
        end;
 
 
		if (char_phaetlarr.follow) then
 
@@ -482,9 +493,16 @@ phaetlarr_home_dlg = dlg {
 
			pon('join');
 
			poff('stay');
 
		end;
 
        else
 
            poff('stay', 'join');
 
        end;
 
	
 
        if s.home then
 
            return [[Фаэтларр смотрит на вас. ]];
 
        else
 
		return [[Фаэтларр ждет ваших указаний. ]];
 
	end;
 
	end;
 
	phr = {
 
        {tag="talk_more"};
 
        {tag="on_black", "Что ты можешь сказать об Адриане Блэке?", function()
0 comments (0 inline, 0 general)