Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

13 lines
376 B
Plaintext

// crime guild join
void main()
{
object oChest=GetObjectByTag("CG_CHEST");
object oPC=GetPCSpeaker();
object oItem;
int nTime=(GetCalendarYear()*365)+(GetCalendarMonth()*30)+GetCalendarDay();
TakeGoldFromCreature(20,oPC,TRUE);
oItem=CreateItemOnObject("nw_it_gold001",oChest,20);
SetLocalInt(oPC,"nCGMember",TRUE);
SetLocalInt(oPC,"nCGDues",nTime);
}