战神引擎开狂暴+扣元宝进地图Npc脚本

用于战神引擎开狂暴+扣元宝进地图Npc脚本,玩家需要开了狂暴之力和扣除2000元宝才能下的地图,脚本是明文版,可以任意修改元宝的数量,还有地图号,单文件,简单直接。

战神引擎开狂暴+扣元宝进地图Npc脚本

部分脚本

procedure Execute;
begin
if (GetHour = 22) and (GetMin = 00) then         //每天15点整刷没怪物
begin
    This_NPC.CreateMon('D2001~100',242,117,0,'回归金龙',1);
	This_NPC.CreateMon('D2001~100',159,228,0,'回归教主',1)
	This_NPC.CreateMon('D2001~100',151,76,0,'祭坛教主',1);
	This_NPC.CreateMon('D2001~100',99,74,0,'回归恶魔',1);
	This_NPC.CreateMon('D2001~100',40,98,0,'回归绿虎',1);
	This_NPC.CreateMon('D2001~100',116,138,0,'霸王虎',1);
	ServerSay('凤凰山谷副本开始拉.', 3);
	ServerSay('凤凰山谷副本开始拉.', 3);
	ServerSay('凤凰山谷副本开始拉.', 3);
end;
if ((GetHour = 20) or (GetHour = 2) or (GetHour = 8) or (GetHour = 14)) and (GetMin = 00) and (This_NPC.CheckMapMonByName('3','爆不爆你知道') = 0) then         //每天15点整刷没怪物
begin
    This_NPC.CreateMon('3',358,340,0,'爆不爆你知道',1);
	ServerSay('爆不爆你知道 出现在土城药店', 3);
	ServerSay('爆不爆你知道 出现在土城药店', 3);
	ServerSay('爆不爆你知道 出现在土城药店', 3);
end;
if (GetHour = 21) and (GetMin = 00) and (This_NPC.CheckMapMonByName('D5071~40','祭坛教主') = 0) then         //每天15点整刷没怪物
begin
    This_NPC.CreateMon('D5071~40',20,25,10,'祭坛教主',1);
	ServerSay('祭坛教主 出现在狂暴之地', 3);
	ServerSay('祭坛教主 出现在狂暴之地', 3);
	ServerSay('祭坛教主 出现在狂暴之地', 3);
end;
if (GetMin = 01) then         //每天15点整刷没怪物
begin
    This_NPC.CreateMon('D5071~40',20,25,10,'火魔',10);
end
end;
分享到:
赞(0)