战神引擎风云召唤令脚本(行会成员传送功能)

用于战神引擎风云召唤令脚本,主要用于行会成员传送功能,跟端游的记忆套装,使用天地合一的命令一样,脚本是黑墨直接从别的版本提取出来的,经过测试,可以用使用。里面带了触发文件,登陆脚本,还有安装方法,物品图标需要自己配一个物品内观的。

战神引擎风云召唤令脚本(行会成员传送功能)

部分脚本

	begin
		if ReadIniSectionStr('CallList.ini','NameData',inttostr(i)) = '' then
		break;
		Uname:=ReadIniSectionStr('CallList.ini','NameData',inttostr(i));
		if Uname <> This_Player.Name then
		begin
		if This_Player.FindPlayer(Uname) then
		begin
		if This_Player.FindPlayerByName(Uname).GuildName = This_Player.GuildName then
		begin
		    count := count + 1;
			This_Player.FindPlayerByName(Uname).PlayerDialog(
			'你行会里的玩家[<'+This_Player.Name+'/fcolor=22>]需要帮助!|'+
			'你是否愿意前往支援?|'+
			'{cmd}<[前往支援]/@gotoMap_hh~'+This_Player.Name+'><关闭页面/@exit>');
		     end;
		  end;
       end;
	end;
	if count > 0 then
	begin
	ServerSay('玩家【'+This_Player.Name+'】使用了[行会召唤令]',0 * 256 + 249);
	end else
	This_Player.PlayerNotice('你行会当前无人在线!',0);
	result:=true;
end;
分享到:
赞(0)