13 lines
376 B
Plaintext
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);
|
|
}
|