Initial commit

Initial commit.
This commit is contained in:
Jaysyn904
2024-08-02 23:18:00 -04:00
parent 779bee26ec
commit adeff59f82
3413 changed files with 2837434 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
void main()
{
//:: establishes PC current grid coordinates
object oPC = GetEnteringObject();
int iXP = GetXP(oPC);
int iGP = GetGold(oPC);
SetLocalInt(oPC,"ate",1);
SetLocalInt(oPC,"drank",1);
SetLocalString(oPC,"ss_t_chest_1","100003");
ExecuteScript("ss_treasure",oPC);
if (iXP < 1 && iGP < 300) //:: Gold for new players
{
int iRand = d100(3)+50;
GiveGoldToCreature(oPC,iRand);
}
AddJournalQuestEntry("JRNL_XPCHART", 1, oPC, FALSE, FALSE, FALSE);
AddJournalQuestEntry("JRNL_LA_BUYOFF", 1, oPC, FALSE, FALSE, FALSE);
}