用于战神引擎打捆金刚石Npc脚本,虽然金刚石支持叠加,但有一些版本对这种材料的消耗和爆出都非常的大,所以叠加之后,还可以对物品进行打捆,脚本默认是10万一捆,明文版的,可以任意修改打捆的数量,脚本牵扯到了gaojishuxing文件,但可以先别添加,直接添加NPC,测试打捆看看。
部分脚本
procedure _100; begin if This_Player.GetBagItemCount('1毛人民币')>= 100 then begin This_Player.Take('1毛人民币',100); This_Player.Give('10元人民币',1); This_Player.PlayerNotice('恭喜您成功兑换10元人民币。',2); end else This_Player.PlayerNotice('1毛人民币不足100个,兑换失败。',2); end; procedure _20W; begin if This_Player.GetBagItemCount('金刚石')>= 10 then begin This_Player.Take('金刚石',10); This_Player.ScriptRequestAddYBNum(200000); This_Player.PlayerNotice('恭喜您成功兑换20W元宝。',2); end else This_Player.PlayerNotice('金刚石不足10个,兑换失败。',2); end; procedure _200W; begin if This_Player.GetBagItemCount('金刚石')>= 100 then begin This_Player.Take('金刚石',100); This_Player.ScriptRequestAddYBNum(2000000); This_Player.PlayerNotice('恭喜您成功兑换200W元宝。',2); end else This_Player.PlayerNotice('金刚石不足100个,兑换失败。',2); end; procedure _kan; begin This_NPC.NpcDialog(This_Player, '|< 焚天传奇 良心无坑 持续更新 长久稳定/fcolor=180>\' +'|<━━━━━━━━━━━━━━━━━━━━━━/fcolor=248>\' +'|<转区转服规则介绍:/fcolor=222>\' +'|可以转移充值超过<100/fcolor=222>账号的一半再补一半充值到新区或任意区或本工作室旗下任意服新区,只可以转移真实充值,装备角色数据遗迹打到的充值不算' +'|<例如:/fcolor=249>在本区充值<100/fcolor=222>R,可联系客服补<50/fcolor=222>R回收本区账号,转移后可得<100/fcolor=222>R真实充值,本区账号做删除处理!' +'|<例如:/fcolor=249>在本区充值<1000/fcolor=222>R,可联系客服补<500/fcolor=222>R以内充值转到任意区任意服,补<100/fcolor=222>R则可转<100/fcolor=222>R,依此类推!' +'|本服承诺账号永久保值 需要转区转服联系微信客服/fcolor=249>' +'|<━━━━━━━━━━━━━━━━━━━━━━/fcolor=248>\' +'|{cmd}<下一页账号装备交易担保介绍/@fanhui> \' ); end; procedure _fanhui; Begin domain; end; Begin domain; end.