22 lines
385 B
Plaintext
22 lines
385 B
Plaintext
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetLastOpenedBy();
|
|
|
|
// Only fire once.
|
|
if ( GetLocalInt(GetModule(), "DO_ONCE__" + GetTag(OBJECT_SELF)) )
|
|
return;
|
|
SetLocalInt(GetModule(), "DO_ONCE__" + GetTag(OBJECT_SELF), TRUE);
|
|
|
|
CreateItemOnObject("sociallevel", oPC);
|
|
|
|
CreateItemOnObject("sociallevel", oPC);
|
|
|
|
// CreateItemOnObject("sextant", oPC);
|
|
|
|
// CreateItemOnObject("it_recall001", oPC);
|
|
|
|
}
|
|
|