stoneage8.5/服务器端lua文件/ablua/freesamenu.lua
2020-06-23 15:27:59 +08:00

108 lines
3.4 KiB
Lua

function FreeSaMenu(meindex, index)
-- char.TalkToCli(meindex, -1, char.getWorkInt(meindex,"NPC临时3"), "绿色")
local = char.getWorkInt(meindex,"战斗");
parameter = {meindex}
if index == 11 then
if ==0 then
char.Encounter(meindex)
char.TalkToCli(meindex, -1, "开启原地遇敌!", "红色")
else
char.TalkToCli(meindex, -1, "您已经战斗中!", "红色")
end
elseif index == 12 then
char.ClearEncounter(meindex);
char.TalkToCli(meindex, -1, "关闭原地遇敌!", "红色")
elseif index == 13 then
if == 0 then
other.CallFunction("CheckTalked", "data/ablua/npc/check/check.lua", parameter)
end
-- other.CallFunction("ShowHead", "data/ablua/npc/vipshop/vipshop.lua", parameter)
elseif index == 14 then
other.CallFunction("QueryMissionTalked", "data/ablua/npc/querymission/querymission.lua", parameter)
elseif index == 16 then
other.CallFunction("FreeDataInfoShow", "data/ablua/freedatainfoshow.lua", parameter)
elseif index == 17 then
lssproto.SaMenu(meindex, index, "http://www.stoneage.es")
elseif index == 18 then
lssproto.SaMenu(meindex, index, "http://www.stoneage.es/forum.php")
elseif index == 19 then
lssproto.SaMenu(meindex, index, "http://www.stoneage.es/pay.php")
elseif index == 20 then
char.setWorkInt(meindex,"NPC临时3",1)
other.CallFunction("OnlineService", "data/ablua/npc/onlineservice/onlineservice.lua", parameter)
elseif index == 21 then
lssproto.SaMenu(meindex, index, "http://www.stoneage.es/forum.php?mod=viewthread&tid=54&extra=page%3D1")
elseif index == 22 then
lssproto.SaMenu(meindex, index, "http://www.stoneage.es/bbs/forum.php?mod=viewthread&tid=226")
elseif index == 30 then--切换队长
if char.getWorkInt(meindex, "组队") == 1 then
[meindex]={};
local = "";
local =0;
for i=1,4 do
local = char.getWorkInt(meindex, "队员" .. i+1)
if char.check() == 1 then
= + 1;
[meindex][] = ;
= string.format("%s %s\n",,char.getChar([meindex][],"名字"));
end
end
local = "1 请选择新的队长\n"..;
lssproto.windows(meindex, 2, 8, 0, char.getWorkInt( npcindex, "对象"), )
else
char.TalkToCli(meindex, -1, "该功能需要队长权限", "红色")
end
else
char.TalkToCli(meindex, -1, "暂未开放", "红色")
end
end
function WindowTalked( NPC索引, , , , )
if == 0 then
local = tonumber();
if > 0 and < 5 then
char.DischargeParty(,0);
char.JoinParty([][],,0);
char.TalkToCli([][], -1, "您的队友【"..char.getChar(,"名字").."】把队长权力交给您!", "黄色")
char.TalkToCli(, -1, "您成功把队长权力交给队友【"..char.getChar([][],"名字").."", "黄色");
for i =1,table.getn([]) do
if i ~= then
char.JoinParty([][],[][i],0);
end
end
char.Encounter([][])
end
end
end
function Create(name, metamo, floor, x, y, dir)
npcindex = npc.CreateNpc(name, metamo, floor, x, y, dir)
char.setFunctionPointer(npcindex, "窗口事件", "WindowTalked", "")
end
function data()
={};
--[[
11 原地遇敌
12 取消原地
13 支票制作
14 任务查询
16 个人信息
20 卡密使用
21 任务攻略
22 新手帮助
]]
end
function main()
data()
Create("查询宠物NPC临时", 100000, 777, 20, 21, 4);
end