To randomize what is said when you throw a grenade, just change this portion of the script:
[cubescript]say "Fire in the hole!"[/cubescript]
to:
[cubescript]randomNadeMsg[/cubescript]
Then add this to the bottom of the script:
[cubescript]list_of_nade_msgs = [
"Random message #1"
"Random message #2"
"Random message #3"
"Random message #4"
]
randomNadeMsg = [
say (at $list_of_nade_msgs (rnd (listlen $list_of_nade_msgs)))
][/cubescript]
I doubt you will be able to throw grenades often enough to get autokicked by the server for spamming, but you may annoy enough people that if someone were to attempt to votekick you that it would pass.
[cubescript]say "Fire in the hole!"[/cubescript]
to:
[cubescript]randomNadeMsg[/cubescript]
Then add this to the bottom of the script:
[cubescript]list_of_nade_msgs = [
"Random message #1"
"Random message #2"
"Random message #3"
"Random message #4"
]
randomNadeMsg = [
say (at $list_of_nade_msgs (rnd (listlen $list_of_nade_msgs)))
][/cubescript]
I doubt you will be able to throw grenades often enough to get autokicked by the server for spamming, but you may annoy enough people that if someone were to attempt to votekick you that it would pass.