stoneage8.5/服务器端lua文件/ablua/item/attcteffect.lua
2020-06-22 17:49:02 +08:00

48 lines
1.6 KiB
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

={};
function WindowTalked ( meindex, charaindex, seqno, select, data)
if seqno == 1 then
local = other.atoi(data);
if >=1 and <=4 then
local = char.getCharPet(charaindex, -1);
if char.check() == 1 then
[charaindex][3] = ;
local = "是否让 "..char.getChar(,"名字") .." 学习该特效!"
lssproto.windows(charaindex, "对话框", "确定|取消", 2, char.getWorkInt( npcindex, "对象"), )
end
end
elseif seqno == 2 then
if select == 1 then
local ID = other.atoi(item.getChar([charaindex][1], "字段"))
char.setInt([charaindex][3],"攻击特效",ID);
char.DelItem(charaindex, [charaindex][2]);
char.TalkToCli(charaindex, -1, "您的宠物"..char.getChar([charaindex][3],"名字").."习得攻击特效,快去体验吧!", "红色")
[charaindex]=nil;
end
end
end
function attackeffect(itemindex, charaindex, toindex, haveitemindex)
[charaindex]={};
[charaindex][1]=itemindex;
[charaindex][2]=haveitemindex;
lssproto.windows(charaindex, "宠物框", "确定", 1, char.getWorkInt( npcindex, "对象"), "")
end
function Create(name, metamo, floor, x, y, dir)
--创建NPC(NPC名字图像号地图号坐标X坐标Y方向号)将返回一个NPC索引
npcindex = npc.CreateNpc(name, metamo, floor, x, y, dir)
char.setFunctionPointer(npcindex, "窗口事件", "WindowTalked", "")
end
function data()
end
function main()
Create("攻击特效NPC",100000,777,20,20,3);
item.addLUAListFunction( "ITEM_ATTACKEFFECT", "attackeffect", "")
end