Aschbourne_PRC8/_module/nss/kpb_deposit100.nss
GetOffMyYarn 69879d6957 Areas and Fixes
Added CCOH and missing areas
Changed some areas to be craftable,
Fixed some on death issues,
Fixed the Gaurd
2024-08-30 11:38:44 -04:00

35 lines
1.1 KiB
Plaintext

////////////////////////////////////////////
// Kittrell's Persistent Banking System //
// Designed by: Brian J. Kittrell //
// //
// This script does the following: //
// //
// kpb_deposit100 - This script allows //
// players to deposit 100 of their gold //
// that they are carrying. //
////////////////////////////////////////////
void main()
{
object oPC = GetPCSpeaker();
int nDeposit = 100;
int nBalance = GetCampaignInt("kpb_bank", "KPB_BANK_BALANCE", oPC);
int nAmount = (nDeposit + nBalance);
int nGold = GetGold(oPC);
int iMonth = GetCalendarMonth();
int iDay = GetCalendarDay();
int iYear = GetCalendarYear();
if (nGold >= 100)
{
TakeGoldFromCreature(nDeposit, oPC, TRUE);
SetCampaignInt("kpb_bank", "KPB_BANK_BALANCE", nAmount, oPC);
SetCampaignInt("kpb_bank", "KPB_DEPO_YEAR", iYear, oPC);
SetCampaignInt("kpb_bank", "KPB_DEPO_DAY", iDay, oPC);
SetCampaignInt("kpb_bank", "KPB_DEPO_MONTH", iMonth, oPC);
}
else
{
SpeakString("Sorry, you do not have enough gold to deposit.", TALKVOLUME_TALK);
}
}