aTable = {
"سبحان الله وبحمده سبحان الله العظيم",
"لا اله الا الله"
}
for _,v in ipairs (aTable) do
function a (aMessage, aType)
setTimer ( function ( )
outputChatBox(v)
if aType == 0 and aMessage == v then
givePlayerMoney(source,99)
aTable = {}
end
end , 1000*3 , 0 )
end
addEventHandler("onPlayerChat",root,a)
end