// 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 34 "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 "^5Vore Princess: ^7So... we finally meet. Welcome to my castle." set chatbot_msg_1 "^2Self: ^7It's really you. Finally... the battle I have been waiting for." set chatbot_msg_2 "^3Mystic: ^7Get ready to die you fiend! You and your vore will be destroyed forever! I waited long for this moment!" set chatbot_msg_3 "^5Vore Princess: ^7So have I. But you do not know what is about to happen yet. Nor who your real enemy is." set chatbot_msg_4 "^3Silver: ^7You are a murderer. You are about to unleash a power that will allow everyone to digest and kill another!" set chatbot_msg_5 "^5Vore Princess: ^7Not quiet. Your memories have been erased, and there's a lot you don't understand. But you will soon... trust me." set chatbot_msg_6 "^5Vore Princess: ^7We'll have all the time in the world to talk about it, after you've left your current bodies to digest inside of me." set chatbot_msg_7 "^3Mystic: ^7Never. NEVER you hear me?! You are going down!" set chatbot_msg_8 "^5Vore Princess: ^7My stomach awaits you. To squeeze you all in its soft and warm flesh. To make your bodies mine..." set chatbot_msg_9 "^3Silver: ^7Oh my god. She is much stronger than I've estimated. I... I don't know if we can do this..." set chatbot_msg_10 "^3Mystic: ^7Don't you give up, you hear me? We can destroy her!" set chatbot_msg_11 "^3Snack: ^7No... Silver is right. I didn't even blink before she caught me. She is... too strong. Even for all of us together. I..." set chatbot_msg_12 "^3Snack: ^7Look, I don't know if you'll be able to forgive me. But I don't want to keep this going. I don't hate the Princess. I... want to offer myself to her." set chatbot_msg_13 "^3Mystic: ^7WHAT did you just say Snack? What has gotten into you! Has she twisted your minds too? Come back here! You can't offer yourself to her god damn it!" set chatbot_msg_14 "^5Vore Princess: ^7You are doing the right thing, little one. Come lay inside my stomach's flesh. It will be alright." set chatbot_msg_15 "^3Silver: ^7I don't believe this! You have taken a wrong decision Snack. I am sorry for you. But we will not surrender... we'll fight the Princess to the end!" set chatbot_msg_16 "^2Self: ^7I'm sorry for Snack's decision as well. I knew she would be tempted to let herself eaten, due to her like for vore. I'll miss her a lot, but we must keep going." set chatbot_msg_17 "^3Mystic: ^7You brainwashing monster! I will slaughter you if I have to! Cut you to pieces all by myself! Gaaaah!" set chatbot_msg_18 "^5Vore Princess: ^7None of you have been brainwashed. You all have the instinct of vore inside you. But your minds have been clouded." set chatbot_msg_19 "^5Vore Princess: ^7Snack's mind is not as darkened. She can still accept her instinct for vore. She has not betrayed you, and loves you just as much." set chatbot_msg_20 "^2Self: ^7So you even have the nerve to talk about love now? I've had enough of this! I will destroy you completely, you hear me?" set chatbot_msg_21 "^3Mystic: ^7Look... I'm sorry. But I believe Silver is right. She is too strong for us. We... cannot defeat her. As much as I hoped we could... there is no way." set chatbot_msg_22 "^2Self: ^7No. No... we can't give up now! She is strong but we can do this! I almost caught her!" set chatbot_msg_23 "^3Silver: ^7Our powers are drained. I have fought, and gave my best. But she is much stronger, and I can't keep going. I'm sorry." set chatbot_msg_24 "^2Self: ^7Damn you you monster! Leave them alone! Fight with me if you're brave enough!" set chatbot_msg_25 "^5Vore Princess: ^7We will face each other separately, do not worry. Your friends must go inside me first. I will digest them painlessly, and with care." set chatbot_msg_26 "^3Mystic: ^7Help me! She's pulling me in! I'm sinking inside her throat!! Someone get me out of here! Some... mmph... gulp..." set chatbot_msg_27 "^3Silver: ^7Mystic! Hang in there, I'm coming to... aargh! Let go of me! Don't put me in there... close your maw! Aargh! Gulp!" set chatbot_msg_28 "^2Self: ^7Mystic! Silver! No!" set chatbot_msg_29 "^3Silver: ^7I can't push myself out, her stomach entrance is too shut! It's starting to sink us in... it's vibrating very hard!" set chatbot_msg_30 "^3Mystic: ^7It's starting to burn! Get me out of here I don't want to digest! Of my god get me out of here! I'm... feeling sleepy..." set chatbot_msg_31 "^5Vore Princess: ^7Hush darlings. Just rest in there and digest. Soon, it will be only us two left. You'll be the next to go inside me." set chatbot_msg_32 "^2Self: ^7I have only one thing to say to you. Shut up and DIE! I'm not going to stop now no matter what!" set chatbot_msg_33 "^5Vore Princess: ^7Come to me. Let yourself slide down my throat, and digest within me. That is your destiny. But it is not your end." // 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. // ----------------------------------------------------------------