用于战神引擎的玩家进入地图需要穿戴指定装备和等级Npc脚本,脚本是明文版,可以任意修改进入地图所需佩戴的装备名称和等级,之前有不少GM问帮主有没有这种脚本,今天正好遇到了,提取出来了。
部分脚本
begin if pos(','+This_Player.GetItemNameOnBody(i)+',',needstr) > 0 then begin count:=count+1; end end if (This_Player.YBNum < gold) or (This_Player.Level < level) or (count = 0) then begin This_NPC.NpcDialog(This_Player,'条件不足!进入需:|穿戴圣王符咒⑩|等级 '+inttostr(level)+' 级|元宝 '+inttostr(gold)+''); exit; end if gold > 0 then This_Player.ScriptRequestSubYBNum(gold); This_Player.FlyTo(map,39,34); ServerSay('【'+This_Player.name+'】进入了第二大陆主城!!',3); end; begin This_NPC.NpcDialog(This_Player, '【目标地图】:<第二大陆主城/fcolor=242>\|' +'【毕业套装】:<焚世套装/fcolor=242>\|' +'【最高掉落】:<焚世套装/fcolor=251>\|' +'【怪物爆率】:<★★★★★★★★/fcolor=242>\|' +'【刷新时间】:<★★★★★★★★/fcolor=242>\|' +'【进入条件】:<穿戴圣王符咒⑩,等级150/fcolor=242>\' +'|{cmd}<已穿戴进入/@goToMonMap~1>' +'|{cmd}<关闭/@doexit>' ); end.