战神引擎通过货币开启自动拾取的Npc脚本

战神引擎自动拾取是需要借助第三方插件来实现的,目前主流的是小眼神(多功能收费插件),开启自动捡取的方法很多种,很多版本是通过上线就自动获得,这种方式对Gm来上,操作做简单,需要玩家通过充值等其他方式获得,就需要通过脚本变量判断。今天帮主分享的这个是从其他版本提取出来的,玩家支付货币才能开启,脚本的意义在于参考里面的写法,不建议直接套用。

战神引擎通过货币开启自动拾取的Npc脚本

部分脚本

procedure _M1; 
var i,w,e : Integer; 
begin
 if  (GetMin() >= 20) and  (GetMin() <= 30) then begin _M4; end else begin This_Player.PlayerNotice('对不起时间没到呢,每小时20-30分领取',0); end; end; procedure _M2; begin This_Player.SetV(229,1,0); This_Player.SetV(33,1,0); This_Player.SetV(33,2,0); This_Player.SetV(33,3,0); This_Player.SetV(33,4,0); This_Player.SetV(33,5,0); This_Player.SetV(33,6,0); This_Player.SetV(33,7,0); This_Player.SetV(33,8,0); This_Player.SetV(33,9,0); This_Player.SetV(33,10,0); This_Player.SetV(33,11,0); This_Player.SetV(33,12,0); This_Player.SetV(33,13,0); This_Player.SetV(33,14,0); end; procedure _M3; begin if (This_Player.MyLFnum > 200) and  (This_Player.Gets(1,61) < 90)  then
begin 
This_Player.SetS(1,61,100);	
This_Player.DecLF(0,200,false);
This_Player.PlayerNotice('ysyijiankq',5);//发送给客户端告诉客户端开启远程拾取
		end else begin
This_NPC.NpcDialog(This_Player,
                '<您的铜钱不足200铜钱 或者已经开启了自动拾取/c=red>');		
end;
end;
begin
domain;
end.
分享到:
赞(0)