function CEF ( text ) local bs = bitStream . new ( ) bs : writeInt8 ( 220 ) bs : writeInt8 ( 18 ) bs : writeInt32 ( # text ) bs : writeString ( text ) bs : writeInt32 ( 0 ) bs : sendPacket ( ) bs : reset ( ) end function onPrintLog ( text ) newTask ( function ( ) if text : find ( "http://arizona.gtasounds.com/quest_basic/jeremy_other/1.mp3" ) then wait ( 25000 ) CEF ( "answer.npcDialog|1" ) wait ( 20000 ) CEF ( "answer.npcDialog|0" ) wait ( 20000 ) CEF ( "answer.npcDialog|1" ) wait ( 20000 ) CEF ( "answer.npcDialog|0" ) wait ( 20000 ) CEF ( "answer.npcDialog|1" ) end end ) end