巴陵县_洞庭湖码头船夫2对话.lua

来自「two legendary musicians are equivalent t」· LUA 代码 · 共 37 行

LUA
37
字号
--两湖区 巴陵县 洞庭湖码头船夫2对话

function main(sel)
Say("船夫:俗话说的好,靠山吃山,靠水吃水。这八百里洞庭湖,就是我们渔民的衣食父母。你要坐船吗?", 2, "去天王岛/yes", "不坐/no");
end;

function yes()
if (GetLevel() >= 10) then						--等级达到十级
	if (GetFaction() == "天王帮") then				--如果玩家是天王帮弟子,坐船不收钱
		Say("船夫:原来是天王帮的兄弟,好说!坐我的船不用钱,坐好了!", 1, "多谢了/ok1")
	else	
		Say("船夫:天王岛?寻常人可靠近不得,要去的话,你得多给些银子。", 1, "好吧/ok2")
	end
else		
	Say("船夫:对不起,没到十级的新手不能坐船出村。", 0)
end
end;

function no()
end;


function ok1()
NewWorld(59, 1425, 3472)
SetFightState(0)								--转换为非战斗状态
end;


function ok2()
if (GetCash() >= 100) then							--参考值
	Pay(100)
	NewWorld(59, 1425, 3472)
	SetFightState(0)							--转换为非战斗状态	
else
	Say("船夫:想去天王岛,没有银子可不行。", 0)		
end
end;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?