Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
9 lines
308 B
Plaintext
9 lines
308 B
Plaintext
void main()
|
|
{
|
|
object oUser = GetLastUsedBy();
|
|
object oBedroll = CreateObject(OBJECT_TYPE_PLACEABLE, "bedrolls001", GetLocation(oUser));
|
|
AssignCommand(oUser, PlayAnimation(ANIMATION_LOOPING_SIT_CROSS,1.0f, 3600.0f));
|
|
DestroyObject(OBJECT_SELF);
|
|
SetLocalObject(oUser,"Bedroll",oBedroll);
|
|
}
|