REO-EE/_module/nss/rest_menu.nss
Jaysyn904 f82740bbbd Initial commit
Initial commit
2024-02-22 13:22:03 -05:00

665 lines
22 KiB
Plaintext

// Modified by Zunath
#include "zzdlg_main_inc"
#include "adv_include"
#include "rwt_include"
#include "inc_helper_funcs"
#include "portrait_include"
const string RESPONSE_PAGE = "rest_menu_responses";
const string PAGE_MAIN = "main_page";
const string PAGE_CATEGORY = "category_page";
const string PAGE_UPGRADE = "upgrade_page";
const string PAGE_SELECTION = "selection_page";
const string PAGE_CHARMANAGE = "charmanage_page";
const string PAGE_SP_RESET = "sp_reset_page";
const string PAGE_VIEW_MY_SKILLS = "view_my_skills_page";
// Prototypes
void MainPageInit();
void MainPageSelect();
void CharManageInit();
void CharManageSelect();
void SPResetInit();
void SPResetSelect();
void ViewMySkillsInit();
void ViewMySkillsSelect();
// AP Allocation Prototypes
void CategoryPageInit();
void CategoryPageSelect();
void UpgradePageInit();
void UpgradePageSelect();
void SelectionInit();
void SelectionSelect();
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_CATEGORY) CategoryPageInit();
else if(sPage == PAGE_UPGRADE) UpgradePageInit();
else if(sPage == PAGE_SELECTION) SelectionInit();
else if(sPage == PAGE_CHARMANAGE) CharManageInit();
else if(sPage == PAGE_SP_RESET) SPResetInit();
else if(sPage == PAGE_VIEW_MY_SKILLS) ViewMySkillsInit();
dlgSetActiveResponseList( RESPONSE_PAGE );
}
// Handles any selection.
void OnSelection( string sPage )
{
if ( sPage == PAGE_MAIN ) MainPageSelect( );
else if(sPage == PAGE_CATEGORY) CategoryPageSelect();
else if(sPage == PAGE_UPGRADE) UpgradePageSelect();
else if(sPage == PAGE_SELECTION) SelectionSelect();
else if(sPage == PAGE_CHARMANAGE) CharManageSelect();
else if(sPage == PAGE_SP_RESET) SPResetSelect();
else if(sPage == PAGE_VIEW_MY_SKILLS) ViewMySkillsSelect();
}
void OnReset( string sPage )
{
dlgChangePage( PAGE_MAIN );
dlgResetPageNumber( );
// Clear all temp. variables
dlgClearPlayerDataInt("MENU_REST_AP_ALLOCATION_CATEGORY");
dlgClearPlayerDataInt("MENU_REST_AP_ALLOCATION_UPGRADE");
dlgClearPlayerDataInt("ADV_MENU_CONFIRM_DISABLE_SANCTUARY");
}
void OnAbort( string sPage )
{
DeleteList( RESPONSE_PAGE, dlgGetSpeakingPC() );
// Clear all temp. variables
dlgClearPlayerDataInt("MENU_REST_AP_ALLOCATION_CATEGORY");
dlgClearPlayerDataInt("MENU_REST_AP_ALLOCATION_UPGRADE");
dlgClearPlayerDataInt("ADV_MENU_CONFIRM_DISABLE_SANCTUARY");
}
void OnEnd( string sPage )
{
DeleteList( RESPONSE_PAGE, dlgGetSpeakingPC() );
// Clear all temp. variables
dlgClearPlayerDataInt("MENU_REST_AP_ALLOCATION_CATEGORY");
dlgClearPlayerDataInt("MENU_REST_AP_ALLOCATION_UPGRADE");
dlgClearPlayerDataInt("ADV_MENU_CONFIRM_DISABLE_SANCTUARY");
}
void OnContinue( string sPage, int iContinuePage )
{
}
// Message handler
void main()
{
dlgOnMessage();
}
// Specific scripting starts here
// MAIN PAGE START
void MainPageInit( )
{
object oPC = dlgGetSpeakingPC();
object oDatabase = GetItemPossessedBy(oPC, PC_DATABASE);
int iShowMainMessage = GetLocalInt(oPC, "MENU_REST_SHOW_MAIN_PAGE_MESSAGE");
string sHeader = ColorTokenGreen() + "Website: " + ColorTokenEnd() + "http://reonline.freeforums.org\n\n" + ADV_CreateCharacterInfoMessage(oPC);
if(iShowMainMessage != TRUE)
{
dlgSetPrompt(sHeader);
}
else
{
dlgClearPlayerDataInt("MENU_REST_SHOW_MAIN_PAGE_MESSAGE");
}
dlgAddResponseAction(RESPONSE_PAGE, "Information Database");
dlgAddResponseAction(RESPONSE_PAGE, "View My Skills");
dlgAddResponseAction(RESPONSE_PAGE, "Allocate Skill Points");
dlgAddResponseAction(RESPONSE_PAGE, "View Key Items");
dlgAddResponseAction(RESPONSE_PAGE, "Modify Clothes Appearance");
dlgAddResponseAction(RESPONSE_PAGE, "Character Management");
dlgDeactivateResetResponse();
dlgActivateEndResponse( "End" );
}
void MainPageSelect( )
{
object oPC = dlgGetSpeakingPC();
object oDatabase = GetItemPossessedBy(oPC, PC_DATABASE);
// Information Database
if (dlgIsSelectionEqualToName( "Information Database" ))
{
dlgChangeDlgScript(oPC, "faq_menu");
}
// View My Skills
else if(dlgIsSelectionEqualToName("View My Skills"))
{
dlgChangePage(PAGE_VIEW_MY_SKILLS);
}
// Allocate Skill Points
else if(dlgIsSelectionEqualToName("Allocate Skill Points"))
{
dlgChangePage(PAGE_CATEGORY);
}
// Key Items
else if(dlgIsSelectionEqualToName("View Key Items"))
{
dlgChangeDlgScript(oPC, "key_item_menu");
}
// Modify Clothes Appearance
else if(dlgIsSelectionEqualToName("Modify Clothes Appearance"))
{
dlgEndDialog();
AssignCommand(oPC, ActionStartConversation(oPC, "x0_skill_ctrap", TRUE, FALSE));
}
// Character Management
else if(dlgIsSelectionEqualToName("Character Management"))
{
dlgChangePage(PAGE_CHARMANAGE);
}
}
// SP ALLOCATION MENU
void CategoryPageInit()
{
dlgSetPrompt("Please select an upgrade category.");
dlgAddResponseAction(RESPONSE_PAGE, "Statistics");
dlgAddResponseAction(RESPONSE_PAGE, "Proficiencies");
dlgAddResponseAction(RESPONSE_PAGE, "Utility");
dlgAddResponseAction(RESPONSE_PAGE, "Abilities");
dlgActivateResetResponse("Main Menu");
}
void CategoryPageSelect()
{
int iSelection = dlgGetSelectionIndex() + 1;
dlgSetPlayerDataInt("MENU_REST_AP_ALLOCATION_CATEGORY", iSelection);
dlgChangePage(PAGE_UPGRADE);
}
void UpgradePageInit()
{
int iCategory = dlgGetPlayerDataInt("MENU_REST_AP_ALLOCATION_CATEGORY");
string sPrompt;
switch(iCategory)
{
// Statistics
case 1:
{
dlgAddResponseAction(RESPONSE_PAGE, "Hit Points");
dlgAddResponseAction(RESPONSE_PAGE, "Inventory Space");
break;
}
// Proficiencies
case 2:
{
dlgAddResponseAction(RESPONSE_PAGE, "Armor");
dlgAddResponseAction(RESPONSE_PAGE, "Handgun Proficiency");
dlgAddResponseAction(RESPONSE_PAGE, "Shotgun Proficiency");
dlgAddResponseAction(RESPONSE_PAGE, "Rifle Proficiency");
dlgAddResponseAction(RESPONSE_PAGE, "SMG Proficiency");
dlgAddResponseAction(RESPONSE_PAGE, "Magnum Proficiency");
//dlgAddResponseAction(RESPONSE_PAGE, "Melee");
break;
}
// Utility
case 3:
{
dlgAddResponseAction(RESPONSE_PAGE, "Search");
dlgAddResponseAction(RESPONSE_PAGE, "Hide");
dlgAddResponseAction(RESPONSE_PAGE, "Move Silently");
dlgAddResponseAction(RESPONSE_PAGE, "First Aid");
dlgAddResponseAction(RESPONSE_PAGE, "Lockpicking");
dlgAddResponseAction(RESPONSE_PAGE, "Mixing");
dlgAddResponseAction(RESPONSE_PAGE, "Item Repair");
break;
}
// Abilities
case 4:
{
//dlgAddResponseAction(RESPONSE_PAGE, "Spring Attack");
dlgAddResponseAction(RESPONSE_PAGE, "Power Attack");
dlgAddResponseAction(RESPONSE_PAGE, "Ambidexterity");
dlgAddResponseAction(RESPONSE_PAGE, "Two-Weapon Fighting");
break;
}
}
dlgAddResponseAction(RESPONSE_PAGE, "Back", ColorTokenBlue());
dlgActivateResetResponse("Main Menu");
}
void UpgradePageSelect()
{
object oPC = dlgGetSpeakingPC();
int iCategory = dlgGetPlayerDataInt("MENU_REST_AP_ALLOCATION_CATEGORY");
int iUpgrade = dlgGetSelectionIndex() + 1;
int iID;
// Returns to the category selection page
if(dlgIsSelectionEqualToName("Back"))
{
dlgSetPrompt("Please select an upgrade category.");
dlgChangePage(PAGE_CATEGORY);
return;
}
// Otherwise we list all of the available upgrades
switch(iCategory)
{
// Category: Statistics
case 1:
{
switch(iUpgrade)
{
// HP
case 1: iID = ADV_ID_HP; break;
// Inventory Space
case 2: iID = ADV_ID_INVENTORY_SPACE; break;
}
break;
}
// Category: Proficiencies
case 2:
{
switch(iUpgrade)
{
// Armor
case 1: iID = ADV_ID_ARMOR; break;
// Handgun Proficiency
case 2: iID = ADV_ID_HANDGUN_PROFICIENCY; break;
// Shotgun Proficiency
case 3: iID = ADV_ID_SHOTGUN_PROFICIENCY; break;
// Rifle Proficiency
case 4: iID = ADV_ID_RIFLE_PROFICIENCY; break;
// SMG Proficiency
case 5: iID = ADV_ID_SMG_PROFICIENCY; break;
// Magnum Proficiency
case 6: iID = ADV_ID_MAGNUM_PROFICIENCY; break;
// Melee
//case 7: iID = ADV_ID_MELEE; break;
}
break;
}
// Category: Utility
case 3:
{
switch(iUpgrade)
{
// Search
case 1: iID = ADV_ID_SEARCH; break;
// Hide
case 2: iID = ADV_ID_HIDE; break;
// Move Silently
case 3: iID = ADV_ID_MOVE_SILENTLY; break;
// First Aid
case 4: iID = ADV_ID_FIRST_AID; break;
// Lockpicking
case 5: iID = ADV_ID_LOCKPICKING; break;
// Mixing
case 6: iID = ADV_ID_MIXING; break;
// Item Repair
case 7: iID = ADV_ID_ITEM_REPAIR; break;
}
break;
}
// Category: Abilities
case 4:
{
switch(iUpgrade)
{
// Spring Attack
//case 1: iID = ADV_ID_SPRING_ATTACK; break;
// Power Attack
case 1: iID = ADV_ID_POWER_ATTACK; break;
// Ambidexterity
case 2: iID = ADV_ID_AMBIDEXTERITY; break;
// Two-Weapon Fighting
case 3: iID = ADV_ID_TWO_WEAPON_FIGHTING; break;
}
break;
}
}
// Store upgrade ID
dlgSetPlayerDataInt("ADV_MENU_UPGRADE_SELECTION", iID);
// Clear all temp. variables
//dlgClearPlayerDataInt("MENU_REST_AP_ALLOCATION_CATEGORY");
//dlgClearPlayerDataInt("MENU_REST_AP_ALLOCATION_UPGRADE");
dlgChangePage(PAGE_SELECTION);
}
void SelectionInit()
{
object oPC = dlgGetSpeakingPC();
int iID = dlgGetPlayerDataInt("ADV_MENU_UPGRADE_SELECTION");
int iLevel = ADV_GetUpgradeLevel(oPC, iID) + 1;
int iAvailableSP = ADV_GetUnallocatedSkillPoints(oPC);
int iRequiredSP = ADV_GetUpgradeCost(iID, iLevel);
int iMaxUpgrades = ADV_GetMaxUpgrades(iID);
int iSoftCap = ADV_GetSoftCap(iID);
int iPCSoftCap = ADV_GetPCSoftCap(oPC, iID);
string sName = ADV_GetUpgradeName(iID);
iSoftCap = iSoftCap + (iPCSoftCap * iSoftCap);
if(iSoftCap < iMaxUpgrades)
iMaxUpgrades = iSoftCap;
// Creates an informational header for PC
dlgSetPrompt(ADV_CreateUpgradeHeader(oPC, iID));
// Show the upgrade option, if the PC has enough SP and max rank hasn't been reached
if(iAvailableSP >= iRequiredSP && iMaxUpgrades >= iLevel)
{
dlgAddResponseAction(RESPONSE_PAGE, "Upgrade " + sName + " (" + IntToString(iRequiredSP) + "SP)");
}
dlgAddResponseAction(RESPONSE_PAGE, "Back", ColorTokenBlue());
dlgAddResponseAction(RESPONSE_PAGE, "Return to Category List");
dlgActivateResetResponse("Main Menu");
}
void SelectionSelect()
{
object oPC = dlgGetSpeakingPC();
int iSelection = dlgGetSelectionIndex();
int iID = dlgGetPlayerDataInt("ADV_MENU_UPGRADE_SELECTION");
int iLevel = ADV_GetUpgradeLevel(oPC, iID) + 1;
int iMaxLevel = ADV_GetMaxUpgrades(iID);
int iSoftCap = ADV_GetSoftCap(iID);
int iPCSoftCap = ADV_GetPCSoftCap(oPC, iID);
int iAvailableSP = ADV_GetUnallocatedSkillPoints(oPC);
int iRequiredSP = ADV_GetUpgradeCost(iID, iLevel);
string sName = ADV_GetUpgradeName(iID);
string sSelection = dlgGetSelectionName();
int bSoftCap = FALSE;
iSoftCap = iSoftCap + (iPCSoftCap * iSoftCap);
if(iSoftCap < iMaxLevel)
{
bSoftCap = TRUE;
iMaxLevel = iSoftCap;
}
if(sSelection == "Return to Category List")
{
dlgChangePage(PAGE_CATEGORY);
return;
}
else if(sSelection == "Back")
{
dlgSetPrompt("Please select an upgrade category.");
dlgChangePage(PAGE_UPGRADE);
return;
}
// Fires if player chose to upgrade a skill
if(iSelection == 0)
{
// Check to see if the upgrade can actually happen
if(bSoftCap && iMaxLevel < iLevel)
{
SendMessageToPC(oPC, ColorTokenRed() + "You have reached your current maximum and cannot increase that category any higher. Complete the necessary mission to increase the cap for that upgrade.");
return;
}
else if(iMaxLevel < iLevel)
{
SendMessageToPC(oPC, ColorTokenRed() + "You cannot increase that category any higher.");
return;
}
// Check to see if the PC has enough SP to make upgrade
if(iAvailableSP < iRequiredSP)
{
SendMessageToPC(oPC, ColorTokenRed() + "You do not have enough SP to make that upgrade.");
return;
}
// Otherwise, PC can make the upgrade.
ADV_DoUpgrade(oPC, iID);
}
}
void CharManageInit()
{
object oPC = dlgGetSpeakingPC();
object oDatabase = GetItemPossessedBy(oPC, PC_DATABASE);
string sCreationDate = RWT_GetTimestampFromUnix(GetLocalInt(oDatabase, CHARACTER_CREATION_DATE));
int iRacialType = GetRacialType(oPC);
string sPrompt = ColorTokenGreen() + "Character Management and Information Page\n\n";
sPrompt += "Character Creation Date: " + ColorTokenEnd() + sCreationDate + "\n";
sPrompt += ColorTokenGreen() + "Zombies Killed: " + ColorTokenEnd() + IntToString(GetLocalInt(oDatabase, "ZOMBIE_KILLS")) + "\n";
sPrompt += ColorTokenGreen() + "Missions Completed: " + ColorTokenEnd() + IntToString(GetLocalInt(oDatabase, "QST_COMPLETED_QUEST_COUNT"));
dlgSetPrompt(sPrompt);
//dlgAddResponseAction(RESPONSE_PAGE, "Delete Character");
if(GetLocalInt(oDatabase, "CHARACTER_SANCTUARY_DISABLED") == FALSE && RWT_GetDoesPlayerHaveSanctuary(oPC))
{
dlgAddResponseAction(RESPONSE_PAGE, "Disable PVP Protection");
}
dlgAddResponseAction(RESPONSE_PAGE, "Manage CD Keys");
dlgAddResponseAction(RESPONSE_PAGE, "Change Portrait");
// Only humans and half elves can change their heads
if(iRacialType == RACIAL_TYPE_HUMAN || iRacialType == RACIAL_TYPE_HALFELF)
{
dlgAddResponseAction(RESPONSE_PAGE, "Change Head");
}
//dlgAddResponseAction(RESPONSE_PAGE, "Reset SP");
dlgActivateResetResponse("Main Menu");
}
void CharManageSelect()
{
object oPC = dlgGetSpeakingPC();
object oDatabase = GetItemPossessedBy(oPC, PC_DATABASE);
int iSelection = dlgGetSelectionIndex() + 1;
// Delete Character
if(dlgIsSelectionEqualToName("Delete Character"))
{
FloatingTextStringOnCreature(ColorTokenRed() + "Function currently not implemented!", oPC, FALSE);
}
// Disable PVP protection
else if(dlgIsSelectionEqualToName("Disable PVP Protection"))
{
// Check the temp variable to see if oPC is confirming, or selecting for the first time
if(GetLocalInt(oPC, "ADV_MENU_CONFIRM_DISABLE_SANCTUARY") == TRUE)
{
// He confirmed it - disable sanctuary
DeleteLocalInt(oPC, "ADV_MENU_CONFIRM_DISABLE_SANCTUARY");
FloatingTextStringOnCreature(ColorTokenRed() + "PVP Protection has been disabled! You can now take part in PVP and other players may attack you.", oPC, FALSE);
SetLocalInt(oDatabase, "CHARACTER_SANCTUARY_DISABLED", TRUE);
}
else
{
SetLocalInt(oPC, "ADV_MENU_CONFIRM_DISABLE_SANCTUARY", TRUE);
FloatingTextStringOnCreature(ColorTokenRed() + "WARNING: PVP Protection prevents you from being attacked by other players. If you are sure you want to disable sanctuary, select this option again.", oPC, FALSE);
}
}
// Manage CD Keys
else if(dlgIsSelectionEqualToName("Manage CD Keys"))
{
dlgChangeDlgScript(oPC, "auth_menu");
dlgChangePage(PAGE_MAIN);
}
// Change Head
else if(dlgIsSelectionEqualToName("Change Head"))
{
int iHeadID = GetCreatureBodyPart(CREATURE_PART_HEAD, oPC);
SetLocalInt(oPC, "TEMP_MENU_CURRENT_HEAD", iHeadID);
SetLocalInt(oPC, "TEMP_ORIGINAL_HEAD", iHeadID);
SetLocalInt(oPC, "TEMP_ORIGINAL_HEAD_DBID", StringToInt(GetMySQLData(PORTRAIT_MYSQL_TABLE, "ID", iHeadID, "2DAID")));
dlgChangeDlgScript(oPC, "head_menu");
dlgChangePage(PAGE_MAIN);
}
// SP Reset
else if(dlgIsSelectionEqualToName("Reset SP"))
{
dlgChangePage(PAGE_SP_RESET);
}
// Change Portrait
else if(dlgIsSelectionEqualToName("Change Portrait"))
{
int iPortraitID = GetPortraitId(oPC);
SetLocalInt(oPC, "TEMP_MENU_CURRENT_PORTRAIT", iPortraitID);
SetLocalInt(oPC, "TEMP_ORIGINAL_PORTRAIT", iPortraitID);
SetLocalInt(oPC, "TEMP_ORIGINAL_PORTRAIT_DBID", StringToInt(GetMySQLData(PORTRAIT_MYSQL_TABLE, "ID", iPortraitID, "2DAID")));
dlgChangeDlgScript(oPC, "portrait_menu");
dlgChangePage(PAGE_MAIN);
}
}
void SPResetInit()
{
object oPC = dlgGetSpeakingPC();
object oDatabase = GetItemPossessedBy(oPC, PC_DATABASE);
int iUnixTime = RWT_GetUnixTimestamp();
int iCooldown = GetLocalInt(oDatabase, "SP_RESET_ALLOCATION_COOLDOWN");
string sLastReset = "Now";
if(iCooldown > 0)
{
sLastReset = RWT_GetTimestampFromUnix(iCooldown);
}
string sMessage = ColorTokenRed() + "WARNING:\n\n" + ColorTokenEnd() + "You are about to reset your SP allocation. All of your upgrades will be reset and all SP will be given back to you. Note that bonuses granted from professions will remain.\n\n";
sMessage = sMessage + ColorTokenRed() + "NOTE: " + ColorTokenEnd() + "You will be unable to reset your SP for another 72 hours.\n\n";
sMessage = sMessage + ColorTokenRed() + "Next Reset Available: " + ColorTokenEnd() + sLastReset + " (Central Time Zone: GMT-6)";
dlgSetPrompt(sMessage);
if(iCooldown <= iUnixTime)
{
dlgAddResponseAction(RESPONSE_PAGE, "Reset SP");
}
dlgAddResponseAction(RESPONSE_PAGE, "Back", ColorTokenBlue());
dlgActivateResetResponse("Main Menu");
}
void SPResetSelect()
{
if(dlgIsSelectionEqualToName("Back"))
{
dlgChangePage(PAGE_CHARMANAGE);
return;
}
else if(dlgIsSelectionEqualToName("Reset SP"))
{
object oPC = dlgGetSpeakingPC();
// We need to cycle through the PC's equipment slots. If anything is equipped we need to let them know to unequip the item
// before doing an SP reset.
int iLoop;
for (iLoop = 0; iLoop < NUM_INVENTORY_SLOTS; iLoop++)
{
object oItem = GetItemInSlot(iLoop, oPC);
if(GetBaseItemType(oItem) != BASE_ITEM_CREATUREITEM && GetIsObjectValid(oItem))
{
FloatingTextStringOnCreature(ColorTokenRed() + "All items must be unequipped before you can do a skill point reset.", oPC, FALSE);
return;
}
}
object oDatabase = GetItemPossessedBy(oPC, PC_DATABASE);
int iUnixTime = RWT_GetUnixTimestamp();
int iCooldown = GetLocalInt(oDatabase, "SP_RESET_ALLOCATION_COOLDOWN");
if(iCooldown > iUnixTime)
{
FloatingTextStringOnCreature(ColorTokenRed() + "Cooldown has not passed. Please wait longer before doing that.", oPC, FALSE);
return;
}
else
{
iCooldown = RWT_CreateCooldown(259200);
SetLocalInt(oDatabase, "SP_RESET_ALLOCATION_COOLDOWN", iCooldown);
ReinitializePlayerCharacter(oPC, -1, 0.5, FALSE);
}
}
}
void ViewMySkillsInit()
{
object oPC = dlgGetSpeakingPC();
string sPrompt = ColorTokenGreen() + "View My Skills\n\n" + ColorTokenEnd();
sPrompt += "Your skills and abilities are as follows:\n\n";
sPrompt += ColorTokenYellow() + "Skills:\n\n";
string sFeats = ColorTokenYellow() + "\nAbilities:\n\n" + ColorTokenEnd();
string sSQL = "SELECT ID, Name, MaxUpgrades, SoftCap, Feat FROM " + ADV_MAX_UPGRADES + " WHERE Disabled != 1 ORDER BY ID;";
SQLExecDirect(sSQL);
while(SQLFetch() == SQL_SUCCESS)
{
int iID = StringToInt(SQLGetData(1));
string sName = SQLDecodeSpecialChars(SQLGetData(2));
int iMaxUpgrades = StringToInt(SQLGetData(3));
int iSoftCap = StringToInt(SQLGetData(4));
int bFeat = StringToInt(SQLGetData(5));
int iLevel = ADV_GetUpgradeLevel(oPC, iID);
int iPCSoftCap = ADV_GetPCSoftCap(oPC, iID);
iSoftCap = iSoftCap + (iSoftCap * iPCSoftCap);
string sSoftCap = IntToString(iSoftCap);
if(iSoftCap >= iMaxUpgrades)
sSoftCap = ColorTokenRed() + sSoftCap + ColorTokenEnd();
else
sSoftCap = ColorTokenYellow() + sSoftCap + ColorTokenEnd();
// Feats are displayed differently
if(bFeat && iLevel > 0)
{
sFeats += sName + "\n";
}
else if(!bFeat)
{
sPrompt += sName + ": " + IntToString(iLevel) + " / " + sSoftCap + "\n";
}
}
// Combine skills section with feats section and set the prompt
sPrompt += sFeats + "\n\n";
dlgSetPrompt(sPrompt);
dlgActivateResetResponse("Main Menu", ColorTokenYellow());
}
void ViewMySkillsSelect()
{
// Not used
}