mirror of
				https://github.com/ErikasKontenis/SabrehavenServer.git
				synced 2025-10-30 19:56:22 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			293 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			293 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| local text = {
 | |
| 	"Grrr!",
 | |
| 	"<click>",
 | |
| 	"Shhh!",
 | |
| 	"I SMELL FEEEEAAAAAR!",
 | |
| 	"CHAMEK ATH UTHUL ARAK!",
 | |
| 	"469",
 | |
| 	"LET ME OUT!",
 | |
| 	"Sacrifice!",
 | |
| 	"More! More!"
 | |
| }
 | |
| 
 | |
| function onThink(interval, lastExecution)
 | |
| 	Position({x=32095, y=32216, z=7}):sendMonsterSay(text[math.random(#text)])
 | |
|     return true
 | |
| end | 
