用于战神引擎多功能货币兑换Npc脚本,支持金币、元宝、金砖、金盒、灵符等货币的兑换。脚本是单文件版,添加的方式也是非常的简单,帮主也做了类似的教程。脚本是明文版,可以任意修改里面兑换的比例和物品。
部分脚本
program Mir2; Procedure _doexit; begin This_Npc.CloseDialog(This_Player); end; procedure _1; begin if This_Player.YBNum >= 10000 then begin if This_Player.FreeBagNum >= 1 then //检测背包 begin This_Player.ScriptRequestSubYBNum(10000); This_Player.Give('10000元宝' , 1); end else //检测提示 begin This_Npc.NpcDialog(This_Player, '背包空格数量不足1!!! '); end ; end else //检测提示 begin This_Npc.NpcDialog(This_Player, '你的元宝不足1万!!! '); end ; end ; procedure _2; begin if This_Player.GoldNum >= 5000000 then begin if This_Player.FreeBagNum >= 1 then //检测背包 begin This_Player.DecGold(5000000); This_Player.Give('金砖' , 1); end else //检测提示 begin This_Npc.NpcDialog(This_Player, '背包空格数量不足1!!! '); end ; end else //检测提示 begin This_Npc.NpcDialog(This_Player, '你的金币不足500万!!! '); end ; end ; procedure _3; begin if This_Player.GoldNum >= 10000000 then begin if This_Player.FreeBagNum >= 1 then //检测背包 begin This_Player.DecGold(10000000); This_Player.Give('金盒' , 1); end else //检测提示 begin This_Npc.NpcDialog(This_Player, '背包空格数量不足1!!! '); end ; end else //检测提示