mirror of
				https://bitbucket.org/Ioncannon/project-meteor-server.git
				synced 2025-05-20 08:26:59 -04:00 
			
		
		
		
	Combat changes and bug fixes
Added the combo and proc systems Added scripts for most weaponskill and spells as well as some abilities and status effects Added support for multihit attacks Added AbilityState for abilities Added hiteffects that change based on an attack's parameters Added positionals Changed how targeting works for battlecommands Fixed bug that occurred when moving or swapping hotbar commands Fixed bug that occurred when losing status effects
This commit is contained in:
		
							
								
								
									
										14
									
								
								data/scripts/commands/magic/default.lua
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								data/scripts/commands/magic/default.lua
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,14 @@
 | 
			
		||||
require("global");
 | 
			
		||||
require("magic");
 | 
			
		||||
 | 
			
		||||
function onMagicPrepare(caster, target, spell)
 | 
			
		||||
    return 0;
 | 
			
		||||
end;
 | 
			
		||||
 | 
			
		||||
function onMagicStart(caster, target, spell)
 | 
			
		||||
    return 0;
 | 
			
		||||
end;
 | 
			
		||||
 | 
			
		||||
function onMagicFinish(caster, target, spell, action)
 | 
			
		||||
    magic.onCureMagicFinish(caster, target, spell, action)
 | 
			
		||||
end;
 | 
			
		||||
		Reference in New Issue
	
	Block a user