561 lines
21 KiB
Plaintext
561 lines
21 KiB
Plaintext
// Modified by Zunath
|
|
|
|
#include "zzdlg_main_inc"
|
|
#include "adv_include"
|
|
|
|
const string RESPONSE_PAGE = "faq_menu_responses";
|
|
|
|
const string PAGE_MAIN = "main_page";
|
|
const string PAGE_STORYLINE = "storyline_page";
|
|
const string PAGE_SERVER_RULES = "server_rules_page";
|
|
const string PAGE_GAMEPLAY = "gameplay_page";
|
|
|
|
const string PAGE_INFO_EXPERIENCE_AND_LEVELING = "page_info_exp_and_leveling";
|
|
const string PAGE_INFO_DEATH = "page_info_death";
|
|
const string PAGE_INFO_MISSIONS = "page_info_missions";
|
|
const string PAGE_INFO_COMMUNICATION = "page_info_communication";
|
|
const string PAGE_INFO_CHARACTERS_AND_STATS = "page_info_chars_and_stats";
|
|
|
|
// Prototypes
|
|
void MainPageInit();
|
|
void MainPageSelect();
|
|
void StorylinePageInit();
|
|
void StorylinePageSelect();
|
|
void ServerRulesPageInit();
|
|
void ServerRulesPageSelect();
|
|
void GameplayPageInit();
|
|
void GameplayPageSelect();
|
|
|
|
// Info pages prototypes
|
|
void InfoExpAndLevelPageInit();
|
|
void InfoExpAndLevelPageSelect();
|
|
void InfoDeathInit();
|
|
void InfoDeathSelect();
|
|
void InfoMissionsInit();
|
|
void InfoMissionsSelect();
|
|
void InfoCommunicationInit();
|
|
void InfoCommunicationSelect();
|
|
void InfoCharsAndStatsInit();
|
|
void InfoCharsAndStatsSelect();
|
|
|
|
|
|
void OnInit()
|
|
{
|
|
dlgChangeLabelNext("Next page");
|
|
dlgChangeLabelPrevious("Previous page");
|
|
dlgChangePage(PAGE_MAIN);
|
|
dlgActivatePreservePageNumberOnSelection();
|
|
dlgActivateResetResponse();
|
|
}
|
|
|
|
// Create the page
|
|
void OnPageInit( string sPage )
|
|
{
|
|
DeleteList( RESPONSE_PAGE, dlgGetSpeakingPC() );
|
|
|
|
if( sPage == PAGE_MAIN ) MainPageInit( );
|
|
else if(sPage == PAGE_STORYLINE) StorylinePageInit();
|
|
else if(sPage == PAGE_SERVER_RULES) ServerRulesPageInit();
|
|
else if(sPage == PAGE_GAMEPLAY) GameplayPageInit();
|
|
else if(sPage == PAGE_INFO_EXPERIENCE_AND_LEVELING) InfoExpAndLevelPageInit();
|
|
else if(sPage == PAGE_INFO_DEATH) InfoDeathInit();
|
|
else if(sPage == PAGE_INFO_COMMUNICATION) InfoCommunicationInit();
|
|
else if(sPage == PAGE_INFO_CHARACTERS_AND_STATS) InfoCharsAndStatsInit();
|
|
|
|
dlgSetActiveResponseList( RESPONSE_PAGE );
|
|
}
|
|
|
|
// Handles any selection.
|
|
void OnSelection( string sPage )
|
|
{
|
|
if ( sPage == PAGE_MAIN ) MainPageSelect( );
|
|
else if(sPage == PAGE_STORYLINE) StorylinePageSelect();
|
|
else if(sPage == PAGE_SERVER_RULES) ServerRulesPageSelect();
|
|
else if(sPage == PAGE_GAMEPLAY) GameplayPageSelect();
|
|
else if(sPage == PAGE_INFO_EXPERIENCE_AND_LEVELING) InfoExpAndLevelPageSelect();
|
|
else if(sPage == PAGE_INFO_DEATH) InfoDeathSelect();
|
|
else if(sPage == PAGE_INFO_COMMUNICATION) InfoCommunicationSelect();
|
|
else if(sPage == PAGE_INFO_CHARACTERS_AND_STATS) InfoCharsAndStatsSelect();
|
|
|
|
}
|
|
|
|
void OnReset( string sPage )
|
|
{
|
|
dlgChangePage( PAGE_MAIN );
|
|
dlgResetPageNumber( );
|
|
}
|
|
|
|
void OnAbort( string sPage )
|
|
{
|
|
DeleteList( RESPONSE_PAGE, dlgGetSpeakingPC() );
|
|
}
|
|
void OnEnd( string sPage )
|
|
{
|
|
DeleteList( RESPONSE_PAGE, dlgGetSpeakingPC() );
|
|
}
|
|
|
|
void OnContinue( string sPage, int iContinuePage )
|
|
{
|
|
}
|
|
|
|
// Message handler
|
|
void main()
|
|
{
|
|
dlgOnMessage();
|
|
}
|
|
|
|
// Specific scripting starts here
|
|
|
|
// MAIN PAGE START
|
|
void MainPageInit( )
|
|
{
|
|
object oPC = dlgGetSpeakingPC();
|
|
|
|
dlgSetPrompt(ColorTokenGreen() + "Website: " + ColorTokenEnd() + "http://reonline.freeforums.org/");
|
|
|
|
dlgAddResponseAction( RESPONSE_PAGE, "Server Rules and Policies");
|
|
dlgAddResponseAction( RESPONSE_PAGE, "Storyline Information" );
|
|
dlgAddResponseAction( RESPONSE_PAGE, "Gameplay Information" );
|
|
dlgAddResponseAction( RESPONSE_PAGE, "Return to Main Menu", ColorTokenYellow());
|
|
|
|
dlgDeactivateResetResponse();
|
|
dlgActivateEndResponse( "End" );
|
|
}
|
|
|
|
void MainPageSelect( )
|
|
{
|
|
object oPC = dlgGetSpeakingPC();
|
|
object oDatabase = GetItemPossessedBy(oPC, PC_DATABASE);
|
|
int iSelection = dlgGetSelectionIndex() + 1;
|
|
|
|
switch(iSelection)
|
|
{
|
|
// Server Rules and Policies
|
|
case 1:
|
|
{
|
|
dlgChangePage(PAGE_SERVER_RULES);
|
|
break;
|
|
}
|
|
// Storyline Information
|
|
case 2:
|
|
{
|
|
dlgChangePage(PAGE_STORYLINE);
|
|
break;
|
|
}
|
|
// Gameplay Information
|
|
case 3:
|
|
{
|
|
dlgChangePage(PAGE_GAMEPLAY);
|
|
break;
|
|
}
|
|
// Back to Main Menu
|
|
case 4:
|
|
{
|
|
dlgChangeDlgScript(oPC, ADV_REST_MENU);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void StorylinePageInit()
|
|
{
|
|
int iSelection = dlgGetSelectionIndex();
|
|
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Setting");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Resident Evil Canon");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Mason Island, Climate");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Mason City, Infection");
|
|
|
|
dlgActivateResetResponse("Main Menu");
|
|
}
|
|
|
|
void StorylinePageSelect()
|
|
{
|
|
int iSelection = dlgGetSelectionIndex();
|
|
|
|
switch(iSelection)
|
|
{
|
|
// Setting
|
|
case 0:
|
|
{
|
|
dlgSetPrompt("Resident Evil Online takes place in 1999 on Mason Island which is off the coast of Maine. At this point, the events of Resident Evil 1, 2, 3 and Code Veronica have taken place.");
|
|
break;
|
|
}
|
|
// Resident Evil Canon
|
|
case 1:
|
|
{
|
|
dlgSetPrompt("By the time Mason City is infected, the Raccoon City outbreak (detailed in games 1-3) has come and gone. The events of Rockfort Island (detailed in Code: Veronica) have just ended.\n\n" +
|
|
"The events of Resident Evil Online directly follow Resident Evil: Code Veronica.");
|
|
break;
|
|
}
|
|
// Mason Island, Climate
|
|
case 2:
|
|
{
|
|
dlgSetPrompt("Mason Island is located off the coast of Maine. Summers are typically very humid and warm, but not necessarily hot. Because of the Atlantic Ocean, winters are typically moderate.");
|
|
break;
|
|
}
|
|
// Mason City, Infection
|
|
case 3:
|
|
{
|
|
dlgSetPrompt("In December 1998, a number of personnel boarded remote-controlled carrier planes to escape the doomed Rockfort Island. Although a majority of the planes landed in Umbrella's Antarctic facility a few more were pre-programmed to land at the Mason Island airport.\n\n" +
|
|
"Unbeknownst to many of the evacuees, they were infected with the T-Virus. These infected individuals eventually caused yet another outbreak to occur on Mason Island.");
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void ServerRulesPageInit()
|
|
{
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Staff and DM List");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Roleplay");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "PVP");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Behavior");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Exploits/Cheating");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Dungeon Masters");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Lag/Connection Loss");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "AFK Deaths");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Player Harrassment");
|
|
|
|
dlgActivateResetResponse("Main Menu");
|
|
}
|
|
|
|
void ServerRulesPageSelect()
|
|
{
|
|
int iSelection = dlgGetSelectionIndex();
|
|
|
|
switch(iSelection)
|
|
{
|
|
// Staff and DM List
|
|
case 0:
|
|
{
|
|
string sDialog = ColorTokenGreen() + "Current Staff:\n\n" + ColorTokenEnd();
|
|
sDialog += "[DM] Zunath (Stylar123) : Server Host, Scripting, Project Lead\n";
|
|
sDialog += "[DM] Drakaden (Drakaden) : Builder, Event DM\n";
|
|
sDialog += "[DM] Kalrhael (Kal-Rhael) : Area Designer\n";
|
|
sDialog += "[DM] Kate (Deadlykate) : Event DM\n";
|
|
dlgSetPrompt(sDialog);
|
|
break;
|
|
}
|
|
// Roleplay
|
|
case 1:
|
|
{
|
|
dlgSetPrompt("Roleplaying can be simply defined as acting as your character would. If you need tips on roleplaying ask your fellow players or a DM to help.\n\n" +
|
|
"As a reminder, short hand speak (such as: LOL, ROFL, OMG) is not permitted to be used in character. If you need to speak to a player or DM out of character, send them a tell.");
|
|
break;
|
|
}
|
|
// PVP
|
|
case 2:
|
|
{
|
|
dlgSetPrompt("PVP is currently permitted anywhere outside of safe zones. You must have a valid roleplay reason to initiate PVP combat.");
|
|
break;
|
|
}
|
|
// Behavior
|
|
case 3:
|
|
{
|
|
dlgSetPrompt("You are expected to be mature and respectful of your fellow players and DMs. If another player is bothering you, send them a polite private message asking to stop or ignore them. Contact a DM if they continue to bother you.");
|
|
break;
|
|
}
|
|
// Exploits / Cheating
|
|
case 4:
|
|
{
|
|
dlgSetPrompt("Exploiting can be defined as abusing a bug or circumventing game mechanics and benefitting from it. Cheaters will be suspended from the server with a review for ban.\n\n" +
|
|
"If you have found a bug in the game, please contact a DM immediately and inform them.");
|
|
break;
|
|
}
|
|
// Dungeon Masters
|
|
case 5:
|
|
{
|
|
dlgSetPrompt("If you have a problem while playing Resident Evil Online, please contact a Dungeon Master (DM) by using the DM channel. They will do their best to assist you.\n\n" +
|
|
"Although DMs are here to help solve problems, they will not, under any circumstance, give free items, experience, or any other benefits. The exception to this rule is if rewards are given during a DM event.");
|
|
break;
|
|
}
|
|
// Lag / Connection Lost
|
|
case 6:
|
|
{
|
|
dlgSetPrompt("While we will do our absolute best at preventing and reducing lag, connection hiccups and disconnects may happen at any time.\n\n" +
|
|
"Because it is impossible to reliably detect connection issues, it is server policy to NOT raise any characters who die due to lag or disconnects. Please do not beg DMs for raises as you will not receive one. By playing here, you are agreeing to this policy.");
|
|
break;
|
|
}
|
|
// AFK Deaths
|
|
case 7:
|
|
{
|
|
dlgSetPrompt("If you need to leave the game for any length of time it is strongly encouraged that you log out entirely. Raises will not be given if your character dies while away from the keyboard (AFK).\n\n" +
|
|
"If a player has deliberately killed you (PVP or otherwise) while AFK please take screenshots and gather all evidence of the player misconduct. Send all of your findings to a DM. Situations will be dealt with on a case-by-case basis.");
|
|
break;
|
|
}
|
|
// Player Harrassment
|
|
case 8:
|
|
{
|
|
dlgSetPrompt("Spamming, out of character PVP, luring zombies to kill players deliberately, and so on are all forms of player harrassment. Because Resident Evil Online is largely built by players it is impossible to cover all the situations in which harrassment will occur.\n\n" +
|
|
"In short, if another player's entertainment is interrupted due to your actions then it will fall under player harrassment.\n\n" +
|
|
"Player harrassment is not tolerated. If you are a victim of harrassment while playing here please contact a DM immediately with screenshots and any other pertinent information.");
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void GameplayPageInit()
|
|
{
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Characters and Stats");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Experience and Leveling");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Death");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Missions");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Communication");
|
|
|
|
dlgActivateResetResponse("Main Menu");
|
|
}
|
|
|
|
|
|
void GameplayPageSelect()
|
|
{
|
|
if(dlgIsSelectionEqualToName("Characters and Stats"))
|
|
{
|
|
dlgChangePage(PAGE_INFO_CHARACTERS_AND_STATS);
|
|
}
|
|
else if(dlgIsSelectionEqualToName("Experience and Leveling"))
|
|
{
|
|
dlgChangePage(PAGE_INFO_EXPERIENCE_AND_LEVELING);
|
|
}
|
|
else if(dlgIsSelectionEqualToName("Death"))
|
|
{
|
|
dlgChangePage(PAGE_INFO_DEATH);
|
|
}
|
|
else if(dlgIsSelectionEqualToName("Missions"))
|
|
{
|
|
dlgChangePage(PAGE_INFO_MISSIONS);
|
|
}
|
|
else if(dlgIsSelectionEqualToName("Communication"))
|
|
{
|
|
dlgChangePage(PAGE_INFO_COMMUNICATION);
|
|
}
|
|
|
|
}
|
|
|
|
void InfoExpAndLevelPageInit()
|
|
{
|
|
dlgAddResponseAction(RESPONSE_PAGE, "What is the level cap?");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "What do I gain each time I level up?");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "What are skill points?");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "How do I use skill points?");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "How do I earn experience points?");
|
|
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Back", ColorTokenBlue());
|
|
}
|
|
|
|
void InfoExpAndLevelPageSelect()
|
|
{
|
|
int iSelection = dlgGetSelectionIndex() + 1;
|
|
string sPrompt = ColorTokenGreen() + dlgGetSelectionName() + ColorTokenEnd() + "\n\n";
|
|
|
|
switch(iSelection)
|
|
{
|
|
case 1:
|
|
{
|
|
sPrompt = sPrompt + "The level cap is currently " + IntToString(ADV_LEVEL_CAP) + ".";
|
|
break;
|
|
}
|
|
case 2:
|
|
{
|
|
sPrompt = sPrompt + "Each level up earns you 10 skill points (SP). These skill points can be used to increase stats, skills, feats, and more.";
|
|
break;
|
|
}
|
|
case 3:
|
|
{
|
|
sPrompt = sPrompt + "Skill points are earned each time you level up. They are used to make stat increases, skill increases, learn feats, and much more.";
|
|
break;
|
|
}
|
|
case 4:
|
|
{
|
|
sPrompt = sPrompt + "To use your earned skill points, press 'R' to open your rest menu. Then select the option 'Allocate Skill Points'.";
|
|
break;
|
|
}
|
|
case 5:
|
|
{
|
|
sPrompt = sPrompt + "Experience points are earned from various tasks. Slaying monsters, exploring new locations, and completing quests are all ways to earn experience. Look for other ways to advance your character!";
|
|
break;
|
|
}
|
|
case 6:
|
|
{
|
|
dlgChangePage(PAGE_GAMEPLAY);
|
|
return;
|
|
}
|
|
}
|
|
|
|
dlgSetPrompt(sPrompt);
|
|
}
|
|
|
|
void InfoDeathInit()
|
|
{
|
|
dlgAddResponseAction(RESPONSE_PAGE, "What happens when I die?");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Are corpses persistent?");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "How are typewriters used?");
|
|
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Back", ColorTokenBlue());
|
|
}
|
|
|
|
void InfoDeathSelect()
|
|
{
|
|
int iSelection = dlgGetSelectionIndex() + 1;
|
|
string sPrompt = ColorTokenGreen() + dlgGetSelectionName() + ColorTokenEnd() + "\n\n";
|
|
|
|
switch(iSelection)
|
|
{
|
|
case 1:
|
|
{
|
|
sPrompt += "All items in your inventory and your gold will drop to your corpse. Equipped items do not drop. Anyone may access this corpse and take the items contained inside.\n\n";
|
|
sPrompt += "Your only option at this point is to choose 'Respawn' from the menu that appears. Clicking this will return you to the last typewriter you used.\n\n";
|
|
sPrompt += "Items dropped can be picked up again if you return to the place you died (and if someone else doesn't beat you to it first!)\n";
|
|
break;
|
|
}
|
|
case 2:
|
|
{
|
|
sPrompt += "Yes. Corpses are persistent and will reappear through server resets, crashes, updates, and so on. They will stay there until all items are removed from the corpse.\n";
|
|
break;
|
|
}
|
|
case 3:
|
|
{
|
|
sPrompt += "Typewriters can be found in safe locations like the Ingles Warehouse. When you use them, your respawn point will be set to that location.\n\n";
|
|
sPrompt += "When you die, you will respawn at the location of the last typewriter you used.\n";
|
|
break;
|
|
}
|
|
case 4:
|
|
{
|
|
dlgChangePage(PAGE_GAMEPLAY);
|
|
return;
|
|
}
|
|
}
|
|
|
|
dlgSetPrompt(sPrompt);
|
|
}
|
|
|
|
void InfoMissionsInit()
|
|
{
|
|
dlgAddResponseAction(RESPONSE_PAGE, "What are missions?");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Where do I find missions?");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "How do I keep track of my missions?");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Do my party members receive missions when I accept them?");
|
|
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Back", ColorTokenBlue());
|
|
}
|
|
|
|
void InfoMissionsSelect()
|
|
{
|
|
int iSelection = dlgGetSelectionIndex() + 1;
|
|
string sPrompt = ColorTokenGreen() + dlgGetSelectionName() + ColorTokenEnd() + "\n\n";
|
|
|
|
switch(iSelection)
|
|
{
|
|
case 1:
|
|
{
|
|
sPrompt += "Missions are tasks given by various NPCs (non-player characters) you choose to undertake.\n\n";
|
|
sPrompt += "To complete a mission you must clear the objectives described in the mission information. You can refer to this information by pressing 'J' to open your journal.\n";
|
|
break;
|
|
}
|
|
case 2:
|
|
{
|
|
sPrompt += "You can find mission offers in various places. Most often, NPCs will offer them to you. However you may also find quests when you pick up items, click certain objects, and so on.\n\n";
|
|
sPrompt += "Look high and low for missions! You never know what kind of rewards you might get!\n";
|
|
break;
|
|
}
|
|
case 3:
|
|
{
|
|
sPrompt += "All missions you accept are tracked in your journal. You can access the journal by pressing 'J'. As you complete mission objectives your journal will be updated with the next task.\n";
|
|
break;
|
|
}
|
|
case 4:
|
|
{
|
|
sPrompt += "No. Missions are not shared among party members when you accept them. Every player must accept the mission individually.\n\n";
|
|
sPrompt += "Make sure that all party members are on the correct stage of the mission or else they might not get credit for completing the objectives!\n";
|
|
break;
|
|
}
|
|
case 5:
|
|
{
|
|
dlgChangePage(PAGE_GAMEPLAY);
|
|
return;
|
|
}
|
|
}
|
|
|
|
dlgSetPrompt(sPrompt);
|
|
}
|
|
|
|
void InfoCommunicationInit()
|
|
{
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Why can't I use the party channel?");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "I have a radio but I still can't use the party channel!");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Can I have more than one radio turned on at a time?");
|
|
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Back", ColorTokenBlue());
|
|
}
|
|
|
|
void InfoCommunicationSelect()
|
|
{
|
|
int iSelection = dlgGetSelectionIndex() + 1;
|
|
string sPrompt = ColorTokenGreen() + dlgGetSelectionName() + ColorTokenEnd() + "\n\n";
|
|
|
|
switch(iSelection)
|
|
{
|
|
case 1:
|
|
{
|
|
sPrompt += "The party channel can only be used if you possess a radio. The radio must be turned on and set to the correct channel.\n\n";
|
|
sPrompt += "You can cycle between channels by using the action named 'Change Radio Channel'. You can also turn the power on or off by using the action named 'Toggle Radio Power'.\n";
|
|
break;
|
|
}
|
|
case 2:
|
|
{
|
|
sPrompt += "Ensure that the radio is powered on by using the action named 'Toggle Radio Power' on the item.\n";
|
|
break;
|
|
}
|
|
case 3:
|
|
{
|
|
sPrompt += "No. Only one radio may be turned on at a time. If you wish to use another radio you must first turn off the other radio.\n";
|
|
break;
|
|
}
|
|
case 4:
|
|
{
|
|
dlgChangePage(PAGE_GAMEPLAY);
|
|
return;
|
|
}
|
|
}
|
|
|
|
dlgSetPrompt(sPrompt);
|
|
}
|
|
|
|
void InfoCharsAndStatsInit()
|
|
{
|
|
dlgAddResponseAction(RESPONSE_PAGE, "What happened to the class, feat and skill point choices I made at character creation?");
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Do my attributes (STR, DEX, CON, etc) have any effect in Resident Evil Online?");
|
|
|
|
dlgAddResponseAction(RESPONSE_PAGE, "Back", ColorTokenBlue());
|
|
}
|
|
|
|
void InfoCharsAndStatsSelect()
|
|
{
|
|
int iSelection = dlgGetSelectionIndex() + 1;
|
|
string sPrompt = ColorTokenGreen() + dlgGetSelectionName() + ColorTokenEnd() + "\n\n";
|
|
|
|
switch(iSelection)
|
|
{
|
|
case 1:
|
|
{
|
|
sPrompt += "We use a different form of character progression here on Resident Evil Online. Instead of being restricted to classes, ";
|
|
sPrompt += "your character is able to purchase upgrades into various categories such as hit points, proficiencies, and much more. For ";
|
|
sPrompt += "more detail regarding this system refer to the topic titled 'Experience and Leveling'.\n";
|
|
break;
|
|
}
|
|
case 2:
|
|
{
|
|
sPrompt += "The following attributes are not in effect: STR, DEX, CON, WIS, INT, CHA.\n\n";
|
|
sPrompt += "In place of those attributes there are a number of new ones which govern your ability to do different tasks. Refer to ";
|
|
sPrompt += "your rest menu ('Allocate Skill Points' sub-menu) for more information on each of the categories.\n";
|
|
break;
|
|
}
|
|
case 3:
|
|
{
|
|
dlgChangePage(PAGE_GAMEPLAY);
|
|
return;
|
|
}
|
|
}
|
|
|
|
dlgSetPrompt(sPrompt);
|
|
}
|