Welcome to the CSC Q&A, on our server named in honor of Ada Lovelace. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.

Categories

+5 votes

How did you guys implement this feature? what I mean is did you make a separate part from the live ham radio and if so how does the user personalize the scenario and input the text for bots? Does the text the user inputs is just sent by bot at set interval or do you use listeners for specific words? if so how do you do that not knowing what type of scenario story the user wants to go with?

asked ago in CSC 305 Fall 2024 by (1.3k points)

1 Answer

+2 votes

For my team, our strategy for the scenarios was to have a separate window where users can create scenarios. In this window, users are able to manually add bots, along with the messages they will send, and specify the messages each bot should check for from the user. This setup allows each bot to manage the sub-tasks within a scenario. Essentially, both the message sent by the bots and the message the user should send are determined by the user. However, this approach only works if the user is not the one who built the scenario, so it would be best to also provide some pre-made scenarios for the user.

answered ago by (939 points)
...