《剑侠情缘网络版3》是由金山开发运营的3D武侠角色扮演网游。作为“剑侠情缘网络版”系列三部曲的最后一部,凭借大规模的地形植被渲染技术、优秀的场景光影特效、Normal Map和SpeedTree等先进运算绘制手法,使用全3D来展现中国传统武侠世界,将诗词、歌舞、丝绸、古琴、饮酒文化、茶艺、音乐等多种具有中国传统文化特色的元素融入到游戏中,展现给玩家一个气势恢弘、壮丽华美的大唐世界。
藏剑官方宏
该宏只对目标为NPC的时候使用有效,是我针对输出的时候给T探梅做的。未加判断,所以对玩家施放时请勿用此宏
/script function ST(dwID)
local scene = (Station.Lookup("Lowest/Scene/Scene_Main"))
local ttype = nil
if IsPlayer(dwID) then
ttype = TARGET.PLAYER
else
ttype = TARGET.NPC
end
this = {}
local bLDown = scene.bLDown
local bRDown = scene.bRDown
this.bLDown = true
this.bRDown = false
this.dwObjType = ttype
this.dwObjID = dwID
this.bDownTime = GetTickCount() + 1000
local x, y = Cursor.GetPos(false)
this.x = x
this.y = y
SceneSetTarget()
scene.bLDown = bLDown
scene.bRDown = bRDown
if bLDown and not bRDown then
Scene.OnSceneLButtonDown()
elseif not bLDown and bRDown then
Scene.OnSceneRButtonDown()
end
end
/script TTY,TID = GetClientPlayer().GetTarget() pT,pID=GetNpc(TID).GetTarget() ST(TID)
/cast 探梅
/script ST(TID)