MOD制作高手來分享一下指令碼,拜託!
NICKNAME 檔裡--發現機率減少
function Stealing (e)
e.Count = 100
end
--100%機率掘出2礦石
function StoneGet(e)
if math.random() <= 1.0 then
e.Count = e.Count * 2
end
end
--100%機率掘出2藥草
function HerbsGet(e)
if math.random() <= 1.0 then
e.Count = e.Count * 2
end
end
--金錢+500%
function MoneyGet(e)
e.Count = math.floor( e.Count * 5.0)
end
我另外想知道具獲取,毒物獲取,和暗取加成率的指令碼,拜託!
页:
[1]