chat-mod/scripts/mp/_chat.gsc
6arelyFuture 249a26bd71
All checks were successful
link / Link assets on Linux (push) Successful in 33s
init
2024-08-23 19:37:07 +02:00

24 lines
404 B
Plaintext

CHAT_MESSAGE_COUNT = 3096;
init()
{
thread message_thread();
}
message_thread()
{
level endon( "game_ended" );
while ( true )
{
row = randomintrange( 0, CHAT_MESSAGE_COUNT );
out = tablelookupbyrow( "mp/chat_messages.csv", row, 0 );
printconsole( "Sending chat message: \"" + out + "\"\n" );
exec( "say \"" + out + "\"" );
wait( 6 );
}
}