Initial commit

Initial commit.  Updated release archive.
This commit is contained in:
Jaysyn904
2024-06-13 15:08:33 -04:00
parent c0bd67a6a7
commit a6f6db7303
5236 changed files with 4203994 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
void main()
{
object oPC;
int iHench;
string sText;
oPC=GetPCSpeaker();
iHench=GetLocalInt(oPC,"HenchmenBought");
if (iHench==0)
{
sText="I know of someone who is looking for work as we speak, and they come cheap, it will just be 10 gold coins to hire them, and a cut of the loot of course.";
SetLocalInt(OBJECT_SELF,"Cost",10);
}
else if (iHench==1)
{
sText="I know of someone who is looking for work, and they aren't too expensive, it will just be 1,000 gold coins to hire them, and a cut of the loot of course.";
SetLocalInt(OBJECT_SELF,"Cost",1000);
}
else if (iHench==2)
{
sText="I know of someone, but they aren't cheap, it will be 2,500 gold coins to hire them, and a cut of the loot of course.";
SetLocalInt(OBJECT_SELF,"Cost",2500);
}
else if (iHench>2)
{
sText="I know of someone, but they aren't cheap, it will be " + IntToString(3000 + (iHench-2) * 1000) + " gold coins to hire them, and a cut of the loot of course.";
SetLocalInt(OBJECT_SELF,"Cost",3000 + (iHench-2) * 1000);
}
SetCustomToken(100,sText);
}