implement screaming spellbook in rook to skip rook and get first items

This commit is contained in:
ErikasKontenis
2020-01-26 14:30:50 +02:00
parent d506b1c89a
commit 51c4d22aa8
4 changed files with 28 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
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