Level One rework
Revamped Level One: North & Level One: Central to be as close to PnP as possible. Added Level One: Latrene 3 area. Added efreeti appearance from CEP3. Revamped efreeti bottle to be like PnP (no wishes, yet)
This commit is contained in:
@@ -10,4 +10,15 @@ void main()
|
||||
{
|
||||
ExecuteScript("prc_rest", OBJECT_SELF);
|
||||
ExecuteScript("x2_mod_def_rest", OBJECT_SELF);
|
||||
|
||||
// Find the nearest summoned Efreeti with the specified tag
|
||||
object oSummonedEfreeti = GetNearestObjectByTag("SUM_EFREETI001");
|
||||
|
||||
// Check if the summoned Efreeti exists and is valid
|
||||
if (GetIsObjectValid(oSummonedEfreeti))
|
||||
{
|
||||
// Destroy the summoned Efreeti immediately
|
||||
DestroyObject(oSummonedEfreeti, 0.0f);
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user