Change bootup to mention noob edition fork
Some checks failed
build / bot-build (apple-x86) (push) Has been cancelled
build / bot-build (linux-amd64) (push) Has been cancelled
build / bot-build (linux-arm64) (push) Has been cancelled
build / bot-build (linux-riscv64) (push) Has been cancelled
build / bot-build (linux-x86) (push) Has been cancelled
build / bot-build (linux-x86-gcc) (push) Has been cancelled
build / bot-build (linux-x86-nosimd) (push) Has been cancelled
build / bot-build (windows-amd64) (push) Has been cancelled
build / bot-build (windows-x86-clang) (push) Has been cancelled
build / bot-build (windows-x86-gcc) (push) Has been cancelled
build / bot-msvc (windows-x86) (push) Has been cancelled
build / bot-msvc (windows-x86-msvc-xp) (push) Has been cancelled
build / bot-apple (apple-arm64) (push) Has been cancelled
build / bot-continuous-release (push) Has been cancelled
build / bot-release (push) Has been cancelled

This commit is contained in:
markmental 2025-12-28 21:22:13 -05:00
commit 4585a91ee3
2 changed files with 12 additions and 2 deletions

View file

@ -71,3 +71,4 @@ public:
} folders {};
#undef CTS_BUILD_STR

View file

@ -182,8 +182,17 @@ void BotSupport::checkWelcome () {
authorStr.appendf (" (Modified by: %s)", graphModified);
}
}
StringRef modernWelcomeMessage = strings.format ("\nHello! You are playing with %s v%s\nDevised by %s\n\n%s", product.name, product.version, product.author, authorStr);
StringRef modernChatWelcomeMessage = strings.format ("----- %s v%s {%s}, (c) %s, by %s (%s)-----", product.name, product.version, product.date, product.year, product.author, product.url);
//StringRef modernWelcomeMessage = strings.format ("\nHello! You are playing with %s v%s\nDevised by %s\n\n%s", product.name, product.version, product.author, authorStr);
//StringRef modernChatWelcomeMessage = strings.format ("----- %s v%s {%s}, (c) %s, by %s (%s)-----", product.name, product.version, product.date, product.year, product.author, product.url);
StringRef modernWelcomeMessage = strings.format (
"\nHello! You are playing with YaPB Noob Edition\n"
"A beginner-friendly fork focused on imperfect aim and relaxed play\n\n"
"Designed for casual offline matches and new players."
);
StringRef modernChatWelcomeMessage = strings.format (
"----- YaPB Noob Edition | casual / beginner bot behavior | fork by markmental -----"
);
// send a chat-position message
MessageWriter (MSG_ONE, msgs.id (NetMsg::TextMsg), nullptr, receiveEnt)