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.
11 lines
258 B
Plaintext
11 lines
258 B
Plaintext
#include "NW_I0_GENERIC"
|
|
#include "jw_privates_inc"
|
|
|
|
void main()
|
|
{
|
|
SetPlotFlag(OBJECT_SELF,FALSE);
|
|
DestroyObject(OBJECT_SELF);
|
|
object oMimic=CreateObject(OBJECT_TYPE_CREATURE,"jw_mimic",GetLocation(OBJECT_SELF));
|
|
SetisCustomEncounterCreature(TRUE,oMimic);
|
|
}
|