17 lines
		
	
	
		
			381 B
		
	
	
	
		
			Plaintext
		
	
	
	
		
		
			
		
	
	
			17 lines
		
	
	
		
			381 B
		
	
	
	
		
			Plaintext
		
	
	
	
|  | /* | ||
|  | 文件名:MoveArea.nut | ||
|  | 路径:CallBack/MoveArea.nut | ||
|  | 创建日期:2024-04-08	16:28 | ||
|  | 文件用途:区域移动HOOK | ||
|  | */ | ||
|  | Cb_Move_Area_Func <- {}; | ||
|  | 
 | ||
|  | function Cb_move_area(CUser, TownIndex, AreaIndex) { | ||
|  |     local Flag = true; | ||
|  |     foreach(_Index, Func in Cb_Move_Area_Func) { | ||
|  |         local Ret = Func(CUser, TownIndex, AreaIndex); | ||
|  |         if (!Ret) Flag = false; | ||
|  |     } | ||
|  | 
 | ||
|  |     return Flag; | ||
|  | } |