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.
16 lines
315 B
Plaintext
16 lines
315 B
Plaintext
void main()
|
|
{
|
|
if (GetLocalInt(OBJECT_SELF,"donesetup")!=2)
|
|
|
|
{
|
|
string sString="{}";
|
|
|
|
ApplyEffectAtLocation(DURATION_TYPE_INSTANT,ExtraordinaryEffect(EffectAreaOfEffect(AOE_PER_GREASE,"jw_smoke_poison",sString,sString)),GetLocation(GetObjectByTag("jw_water_smoke")));
|
|
|
|
|
|
SetLocalInt(OBJECT_SELF,"donesetup",2);
|
|
}
|
|
|
|
}
|
|
|