9 lines
295 B
Plaintext
9 lines
295 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oArea = GetArea (OBJECT_SELF);
|
||
|
vector vPosition = GetPosition (OBJECT_SELF);
|
||
|
float fOrientation = GetFacing (OBJECT_SELF);
|
||
|
location lSpawn = Location (oArea, vPosition, fOrientation);
|
||
|
CreateObject(OBJECT_TYPE_CREATURE, "sha_harishweil", lSpawn, TRUE);
|
||
|
}
|