Initial Upload

Initial Upload
This commit is contained in:
Jaysyn904
2023-08-08 16:22:17 -04:00
parent 51a2a1286e
commit 22947ad4b6
6511 changed files with 6765205 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
////////////////////////////////////////////
// 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);
}
}