|
function aszheng(n,l,w)
--kezhiwugongsuccess(w[2],GetVariable("pzhen"),kezhi_order["正"])
kezhiwugongsuccess(w[2],GetVariable("pmiao"),kezhi_order["正"])
ColourNote ("red","blue","正")
end
-------这段是miao 克制正
function asqi(n,l,w)
--kezhiwugongsuccess(w[2],GetVariable("pqi"),kezhi_order["奇"])
kezhiwugongsuccess(w[2],GetVariable("pxian"),kezhi_order["奇"])
ColourNote ("red","blue","奇")
end
function asgang(n,l,w)
--kezhiwugongsuccess(w[2],GetVariable("pgang"),kezhi_order["刚"])
kezhiwugongsuccess(w[2],GetVariable("pkuai"),kezhi_order["刚"])
ColourNote ("red","blue","刚")
end
function asrou(n,l,w)
--kezhiwugongsuccess(w[2],GetVariable("prou"),kezhi_order["柔"])
kezhiwugongsuccess(w[2],GetVariable("pman"),kezhi_order["柔"])
ColourNote ("red","blue","柔")
end
function askuai(n,l,w)
--kezhiwugongsuccess(w[2],GetVariable("pkuai"),kezhi_order["快"])
kezhiwugongsuccess(w[2],GetVariable("prou"),kezhi_order["快"])
ColourNote ("red","blue","快")
end
function asman(n,l,w)
--kezhiwugongsuccess(w[2],GetVariable("pman"),kezhi_order["慢"])
kezhiwugongsuccess(w[2],GetVariable("pgang"),kezhi_order["慢"])
ColourNote ("red","blue","慢")
end
function asmiao(n,l,w)
--kezhiwugongsuccess(w[2],GetVariable("pmiao"),kezhi_order["妙"])
kezhiwugongsuccess(w[2],GetVariable("pqi"),kezhi_order["妙"])
ColourNote ("red","blue","妙")
end
function asxian(n,l,w)
--kezhiwugongsuccess(w[2],GetVariable("pxian"),kezhi_order["险"])
kezhiwugongsuccess(w[2],GetVariable("pzhen"),kezhi_order["险"])
ColourNote ("red","blue","险")
end
---一直到这里 都是一致的写法, 下面这三个就不是了,是不是要改?
function askong(n,l,w)
kezhiwugongsuccess(w[2],GetVariable("pkong"),kezhi_order["空"])
ColourNote ("red","blue","空")
end
--这个应该是 pwu 克制 空
function aswu(n,l,w)
kezhiwugongsuccess(w[2],GetVariable("pwu"),kezhi_order["无"])
ColourNote ("red","blue","无")
end
---这个无所谓什么都行
function asyuxiao(n,l,w)
if w[2]~=nil and string.find(w[2],"箫") then
kezhiwugongsuccess(w[2],GetVariable("pmiao"),kezhi_order["妙"])
else
kezhiwugongsuccess(w[2],GetVariable("pxian"),kezhi_order["险"])
end
ColourNote ("red","blue","玉萧剑法:"..w[2])
end
--这个应该是 pqi 克制 妙, pzheng 克制 险
是不是这样??? |
|