Initial Commit

Initial Commit
This commit is contained in:
Jaysyn904
2025-04-03 11:24:16 -04:00
parent 3ba3cf1b81
commit 5e558169a0
6086 changed files with 1502996 additions and 1 deletions

View File

@@ -0,0 +1,35 @@
#include "donate"
void main()
{
object oPC = GetPCSpeaker();
int iAmt = GetLocalInt(oPC, "donate_amount");
switch (iAmt)
{
case 50000:
{
SetLocalInt(oPC, "deity_adjust", 2);
SetLocalInt(oPC, "dn_switch", 1);
Donate(oPC);
}break;
case 200000:
{
SetLocalInt(oPC, "deity_adjust", 5);
SetLocalInt(oPC, "dn_switch", 2);
Donate(oPC);
}break;
case 500000:
{
SetLocalInt(oPC, "deity_adjust", 10);
SetLocalInt(oPC, "dn_switch", 3);
Donate(oPC);
}break;
case 1000000:
{
SetLocalInt(oPC, "deity_adjust", 15);
SetLocalInt(oPC, "dn_switch", 4);
Donate(oPC);
}break;
}
}