Fixed spawn for Lt. Allard at the Emperors Retreat on Naboo (was being spawned incorrectly before).

This commit is contained in:
Cekis
2016-06-27 06:39:03 +01:00
parent d127469eca
commit 25d4c19b75
2 changed files with 1 additions and 12 deletions
@@ -115,3 +115,4 @@ i i h i f f f f f f f s p
6336772 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 261.702637 297.386322 300.395508 1 0 0 0 $|
6336773 0 object/tangible/poi/spawnegg/exterior_spawnegg.iff 0 287.438721 230.8905334 136.932861 1 0 0 0 $|
91598 0 object/tangible/space/content_infrastructure/ground_npc_spawner.iff 0 364 292 157 0.70710 0 0.70710 0 $|
6995488 0 object/tangible/ground_spawning/mob_spawner.iff 0 367 292 148 1 0 0 0 $|
@@ -68,7 +68,6 @@ public class retreatspawner extends script.base_script
spawnShuttlePilot2(self);
spawnVelso(self);
spawnRecordKeeper(self);
spawnAllard(self);
return;
}
public void spawnKaja(obj_id self) throws InterruptedException
@@ -364,17 +363,6 @@ public class retreatspawner extends script.base_script
setObjVar(pilot2, "Retreat", self);
return;
}
public void spawnAllard(obj_id self) throws InterruptedException
{
location allardLocation = new location(2414.8f, 0.0f, -3949.2f, "naboo", obj_id.NULL_ID);
obj_id allard = create.staticObject("imperial_officer_questgiver", allardLocation);
int allard_yaw = 12;
setYaw(allard, allard_yaw);
setObjVar(self, "RetreatInhabitants.allard", allard);
setObjVar(allard, "Retreat", self);
attachScript(allard, "conversation.c_rebdefector_allard");
return;
}
public int spawnTheGuards(obj_id self, dictionary params) throws InterruptedException
{
spawnGuards(self);