战神引擎行会争霸Npc脚本(有奖品)

用于战神引擎行会争霸Npc脚本,脚本默认奖励50灵符包,因为是明文版的,可以任意修改行会争霸开启和结束的时间,还有奖品内容,但战神引擎有一个BUG,如果行会的名字超过了5个汉字,就无法申请,所以你们在创建行会的NPC上,要特别的注明,建立行会的名字不要超过5个汉字,建议4个汉字以内。超过了就无法参加了。

战神引擎行会争霸Npc脚本(有奖品)

部分脚本

begin
This_Npc.NpcSay('进入失败:每周三,六,日开放活动!');
end;
end;
procedure _bawang; 
begin
 if (GetDayOfWeek = 3) or (GetDayOfWeek = 6) or (GetDayOfWeek = 7) then   //自己修改开放时间  
begin
 if (GetHour = 21) and (GetMin > 9) and (GetMin < 41) then //自己修改开放时间 begin if This_Player.GetMyPositionInGuild() >= 0 then  //是否有行会
 begin 
  if This_Player.Level > 39 then      
begin
       This_Player.Flyto('Q004~30',10,14);      
	   ServerSay('行会系统:['+This_Player.GuildName+']行会成员[' + This_Player.Name + ']进入了[行会争霸赛]!', 70);	   
end else
begin
    This_Npc.NpcSay('你的等级低于40级,无法进入!');	
    This_Player.PlayerNotice('你的等级低于40级,无法进入!',2);
    exit;	
end;	
end else
begin
    This_Player.PlayerNotice('你还没有行会,无法参加活动!',2);	
    exit;	
end;	
end else
begin	
    This_Npc.NpcSay('行会战时间未到,等待开启!');	
    This_Player.PlayerNotice('行会战时间未到,等待开启!',2);
	exit;
	end;
end else
begin
This_Npc.NpcSay('进入失败:每周三,六,日开放活动!');
end;
end;
begin
if GetG(78,12) < 0 then SetG(78,12,0);
if GetG(78,13) < 0 then SetG(78,13,0);
domain;	
end.
分享到:
赞(0)