init
All checks were successful
link / Link assets on Linux (push) Successful in 33s

This commit is contained in:
2024-08-23 19:37:07 +02:00
commit 249a26bd71
9 changed files with 3351 additions and 0 deletions

23
scripts/mp/_chat.gsc Normal file
View File

@ -0,0 +1,23 @@
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 );
}
}