generated from Jaysyn/ModuleTemplate
13 lines
283 B
Plaintext
13 lines
283 B
Plaintext
// Bar sitters
|
|
void main()
|
|
{
|
|
int nUser = GetUserDefinedEventNumber();
|
|
object oChair;
|
|
|
|
if (nUser == 7001){
|
|
oChair=GetObjectByTag(GetLocalString(OBJECT_SELF, "lv_chair"));
|
|
if (GetIsObjectValid(oChair))
|
|
ActionSit(oChair);
|
|
}
|
|
}
|