function Lua_GetDWScore()
local DWScore = 0
for i=0,18 do
if LuaFnIsUserEquipHaveDiaowen(i) == 1 then
local DWID = LuaFnGetUserEquipDiaowenID(i)
if DWID > 0 then
DWScore = DWScore + LuaFnGetDiaoWenScore(DWID)
end
end
end
PushDebugMessage("DWScore:"..DWScore);
return DWScore
end