- UID
- 22022
- 最後登錄
- 1970-1-1
- 精華
- 閱讀權限
- 15
- 積分
- 210
- 金錢
- 元
- 威望
- 點
- 貢獻
- 點
|
樓主 |
發表於 2012-4-29 02:24:25
|
顯示全部樓層
tiggoiv 發表於 2012-4-28 02:40 PM
脚本请使用繁体中文输入格式要保留ansi
为什么我copy结义酒设置黄金酒的脚本..但是却用不到?
if equipedWeapon ~= nil then
local weaponID = GetData("ItemIdx", equipedWeapon)
local WeaponDBID = GetData("DBID", equipedWeapon)
local PrefixID = math.floor(math.mod(weaponID, 10000000) / 100000)
if PrefixID ~= 116 and PrefixID ~= 117 and PrefixID ~= 118 and PrefixID ~= 119 and PrefixID ~= 120 then
Say("無法使用!你的裝備沒有花榮、關胜、李逵、柴進、朱武字首。", 1)
else
if PrefixID == 116 then
PrefixID = 121
elseif PrefixID == 117 then
PrefixID = 122
elseif PrefixID == 118 then
PrefixID = 123
elseif PrefixID == 119 then
PrefixID = 124
elseif PrefixID == 120 then
PrefixID = 125
end
if RemoveItem(100003066, 1, "Remove by item3066.lua Upgrade Prefix to "..PrefixID, 0) == 1 then
AssignPrefix(PrefixID, equipedWeapon)
Say("你的裝備已升級了字首。", 1)
end
end
else
Say("你沒有裝上此部位的裝備!", 1)
end |
|