EN6_PRC8/_module/nss/en6_ne_enter.nss
Jaysyn904 a6f6db7303 Initial commit
Initial commit.  Updated release archive.
2024-06-13 15:08:33 -04:00

70 lines
1.1 KiB
Plaintext

#include "en5_misc"
#include "en5_treasure"
void SetupDynamicMerchant();
void main()
{
if (GetIsPC(GetEnteringObject()) && GetLocalInt(GetModule(),"DynamicMerchant") == 0)
{
SetupDynamicMerchant();
SetLocalInt(GetModule(),"DynamicMerchant",1);
}
}
void SetupDynamicMerchant()
{
object oMer;
//object oPC;
int iIndex;
int iRandom;
oMer = GetObjectByTag("en5_dmer1");
//oPC = GetFirstPC();
iIndex = 1;
iRandom=Random(7)+4;
while (iIndex <= iRandom)
{
GetMagicItem(oMer,Random(3)+1,0,GetRandomPC());
iIndex++;
}
iIndex = 1;
iRandom=Random(2)+2;
while (iIndex <= iRandom)
{
GetMagicItem(oMer,Random(3)+1,1,GetRandomPC());
iIndex++;
}
iIndex = 1;
iRandom=Random(2)+1;
while (iIndex <= iRandom)
{
GetMagicItem(oMer,Random(3)+1,2,GetRandomPC());
iIndex++;
}
iIndex = 1;
iRandom=Random(3);
while (iIndex <= iRandom)
{
GetMagicItem(oMer,Random(6)+1,0,GetRandomPC());
iIndex++;
}
iIndex=5;
while (iIndex <= 11)
{
if (Random(3)>0)
GetRandomMagic(oMer,Random(3)+1,iIndex,GetRandomPC());
else
GetRandomMagic(oMer,Random(6)+1,iIndex,GetRandomPC());
iIndex++;
}
}