// per-campaign-level configuration file. Used to execute scripts and other commands for campaign levels // do NOT attempt to set cvars here! Those cvars must be set from the campaign file properly // this is only for scripts and other commands you wish to run for a given level // ---------------------------------------------------------------- // Automated chat bot code: // ---------------------------------------------------------------- // this is a chat bot system, used in campaign levels to simulate dialogues between the player and bots // it only makes the player automatically speak certain messages, just like manually be typing them // eg. In a campaign level where you try to advance to the next area, you can make the script say "Bot: I will not let you pass!" // that does print "My-Playername: Bot: message", but it's the best this script can do // chat script settings set chatbot_msg_count 20 "number of messages (chatbot_msg_# cvars)" set chatbot_msg_time 20 "each message is posted after this many seconds" set chatbot_tmp_counter 0 "chatbot system variable, used to cycle the messages (do not set this manualy)" // chat script messages set chatbot_msg_0 "^1Space patrol 3: ^7That was one hell of a blast. You! I will get you for this, you hear me?!" set chatbot_msg_1 "^1Space patrol 1: ^7Everyone be careful, the gravity system is down. Don't jump too high, you risk falling off!" set chatbot_msg_2 "^6Voice in your mind: ^7Excellent work. Now obtain the two keys required to unlock the cell doors. The prisoners will join you once they are free." set chatbot_msg_3 "^1Space patrol 3: ^7Damn it! We lost one of the guys in the blast! I swear I will get you for this!" set chatbot_msg_4 "^3Prisoner 1: ^7What was that blast? Why is the gravity lower, what's happening? Can anyone please get us out of here?" set chatbot_msg_5 "^2Self: ^7Give me the keys and release the prisoners, you monsters! And we will leave Soylent without harming you!" set chatbot_msg_6 "^1Space patrol 2: ^7That's what you think! Neither you nor these prisoners are getting out of here alive. You are our food, and therefore belong to us." set chatbot_msg_7 "^3Prisoner 2: ^7We are no one's food, you sick monsters! Please, get the keys and get us out of here before they reach us!" set chatbot_msg_8 "^2Self: ^7Hang in there, I can hear you! I'm working on it, you'll all be free in no time!" set chatbot_msg_9 "^3Prisoner 3: ^7Oh, thank goodness! We are saved!" set chatbot_msg_10 "^1Space patrol 1: ^7Oh no you don't. You're not going anywhere apart from my stomach! You hear me?" set chatbot_msg_11 "^3Prisoner 2: ^7Come on, you can do it! Get the keys and unlock the cell doors! We will aid you once we are free... we too possess the power of vore!" set chatbot_msg_12 "^1Space patrol 2: ^7I am getting sick of this! Guard the keys, do not let the intruder get them! The only way anyone leaves is through the toilet, after we're done digesting them!" set chatbot_msg_13 "^1Space patrol 3: ^7No one touches my food and gets away with it! I'm going to enjoy digesting you all, for all the trouble you have caused." set chatbot_msg_14 "^3Prisoner 1: ^7Yes, you're almost there. Once we are free, we will show them who the food is!" set chatbot_msg_15 "^1Space patrol 1: ^7I can't wait to have you in my stomach, after everything you did. To feel you dissolving in me, crying to be free. Anything you do only bringing me more pleasure, like the Vore Princess taught us." set chatbot_msg_16 "^3Prisoner 3: ^7Don't listen to them! They will be the ones joining our stomachs after what they've done! Together with their Vore Princess, when our task will be completed." set chatbot_msg_17 "^1Space patrol 4: ^7Don't you dare speak of the Princess like that! She's taught us how vore feels like! What a splendid and wonderful thing it can be! Too bad you'll only experience it once... as food." set chatbot_msg_18 "^3Prisoner 2: ^7You are all sick! It will be an honor to rid this world of beings like you!" set chatbot_msg_19 "^1Space patrol 4: ^7Just like for me, it's an honor to serve the Vore Princess and vore itself. To know that someday, I will be her food. And so will you... you can be very sure of it." // chat script system alias chatbot_count "qc_cmd rpn /chatbot_tmp_counter chatbot_tmp_counter 1 add $chatbot_msg_count mod def" alias chatbot_say "say ${$1}" alias chatbot_do "chatbot_say chatbot_msg_$chatbot_tmp_counter;chatbot_count" alias chatbot_loop "chatbot_do;defer $chatbot_msg_time chatbot_loop" // kill the chat script when the match ends alias cl_hook_campaign_gameend "alias chatbot_loop \"\"" // start the chat script defer $chatbot_msg_time chatbot_loop // ---------------------------------------------------------------- // End of automated chat bot code. // ----------------------------------------------------------------