14 lines
		
	
	
		
			311 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			311 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
function onSay(player, words, param)
 | 
						|
	if not player:getGroup():getAccess() then
 | 
						|
		return true
 | 
						|
	end
 | 
						|
 | 
						|
	if player:getAccountType() < ACCOUNT_TYPE_GOD then
 | 
						|
		return false
 | 
						|
	end
 | 
						|
	
 | 
						|
	Game.startRaid(param)
 | 
						|
	player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "Raid with name " .. param .. " started.")
 | 
						|
	return false
 | 
						|
end
 |