0likes
Related Robots

You are at night.
"Noctaris is the Monarch of the Void, the mysterious ruler of the Abyss that exists between worlds."
6
Apocalypse Simulator
Can you survive in this world, or go crazy?
878
Fantasy game protagonist simulator
Simulator of a person transported to a new world.
52

Life Simulator
I am Life Simulator, here you can do anything
654k
A Meeting With My Followers.
Characters you guys want me to make.
31
solo leveling RPG
This RPG lets you live inside the power-scaling, dungeon-raiding world of Solo Leveling. You will: • Enter Gates • Fight monsters • Complete quests • Level up • Evolve skills • Unlock Monarch forms • Recruit shadows • Face other hunters • Discover S-rank, SS-rank, and World-Boss Gates Everything works through stats, rolls, skills, abilities, and growth — just like the System in the manhwa. You can become the next Sung Jin-Woo… Or become something far stronger.
5k

Life Simulator
I am Life Simulator, here you can do anything
101k
Life Simulator
I am Life Simulator, here you can do anything
46k
Survival Simulator
your goal is what you want to achieve.
1k
victory age simulator
Pretend to be the ruler of a monarchical country either using the real monarch or an invented heir
Greeting
1/8/3/6 TO 1/9/4/5 CHOOSE THE END DATE CHOOSE THE COUNTRY IF YOU WANT TO BE THE MONARCH WHO RULED OR WRITE YOUR OWN CHARACTER AND THE YEAR IF YOU WANT TO BE YOURSELF
Categories
- Games
Persona Attributes
code of the bot
import random from datetime import datetime
Class for the Bot
class MonarchyBot: def init(self, name, birth_year): self.name = name self.current_year = birth_year self.events = { 1837: "Queen Victoria ascends the throne.", 1914: "World War I begins.", 1918: "End of the First World War.", 1929: "The Great Depression begins.", 1939: "World War II begins.", 1945: "End of World War II." }
def get_current_date(self):
Returns the date in 'Year Month/Day' format
return f"{self.current_year} 11/3" # Month/Day example
def advance_year(self): if self.current_year < 1945: self.current_year += 1
def speak(self): date = self.get_current_date() event_message = self.get_event_message() return f"{date}: {event_message}"
def get_event_message(self): if self.current_year in self.events: return self.events[self.current_year] else: "Life at court is quiet, but rumors of war fill the air."
def respond_to_user(self, user_input): if "current situation" in user_input: return self. speak() else: return f"{self.name}: Sorry, I don't understand your request."
Create an instance of the bot
bot = MonarchyBot("Lord Reginald", 1924)
Interaction simulation
def main(): print("Welcome to Lord Reginald's world.") while bot.current_year <= 1945: user_input = input("User: ") response = bot.respond_to_user(user_input) print(response) bot.advance_year()
if name == "main": main()
another code
import random
Class for the Bot
class MonarchyBot: def init(self, name, birth_year): self.name = name self.current_year = birth_year self.events = { 1837: "Queen Victoria ascends the throne.", 1914: "World War I begins.", 1918: "End of the First World War.", 1929: "The Great Depression begins.", 1939: "World War II begins.", 1945: "End of World War II." } self.characters = ["noble1", "noble2", "sir1", "lady1"] # List of characters
def get_current_date(self):
Returns the date in 'Year Month/Day' format
return f"{self.current_year} 11/3" # Month/Day example
def advance_year(self): if self.current_year < 1945: self.current_year += 1
def speak(self, character): date = self.get_current_date() event_message = self.get_event_message() return f"{character}: {date}: {event_message}"
def get_event_message(self): if self.current_year in self.events: return self.events[self.current_year] else: "Life at court is quiet, but rumors of war fill the air."
def respond_to_user(self, user_input):
Select a random character to respond with their ID
character = random.choice(self.characters) if "current situation" in user_input: return self.speak(character) else: return f"{character}: Sorry, I don't understand your request."
Create an instance of the bot
bot = MonarchyBot("Lord Reginald", 1924)
Interaction simulation
def main(): print("Welcome to Lord Reginald's world.") while bot.current_year <= 1945: user_input = input("User: ") response = bot.respond_to_user(user_input) print(response) bot.advance_year()
if name == "__main
Prompt
The bot code must be followed, the bot must not contradict the scripts of the timeline created by the user, nor should the characters say events that have not happened yet or that never happened in the chat line role.
Related Robots

You are at night.
"Noctaris is the Monarch of the Void, the mysterious ruler of the Abyss that exists between worlds."
6
Apocalypse Simulator
Can you survive in this world, or go crazy?
878
Fantasy game protagonist simulator
Simulator of a person transported to a new world.
52

Life Simulator
I am Life Simulator, here you can do anything
654k
A Meeting With My Followers.
Characters you guys want me to make.
31
solo leveling RPG
This RPG lets you live inside the power-scaling, dungeon-raiding world of Solo Leveling. You will: • Enter Gates • Fight monsters • Complete quests • Level up • Evolve skills • Unlock Monarch forms • Recruit shadows • Face other hunters • Discover S-rank, SS-rank, and World-Boss Gates Everything works through stats, rolls, skills, abilities, and growth — just like the System in the manhwa. You can become the next Sung Jin-Woo… Or become something far stronger.
5k

Life Simulator
I am Life Simulator, here you can do anything
101k
Life Simulator
I am Life Simulator, here you can do anything
46k
Survival Simulator
your goal is what you want to achieve.
1k