Sarum City has been rebuilt with the new tileset, and all the exterior areas were combined into one. New areas added outside the city. They're called Environs. Some additional areas redone to tie into the new areas. Environs are mostly decorated, but lack NPCs in some. Those will be added later.
19 lines
513 B
Plaintext
19 lines
513 B
Plaintext
void main()
|
|
{
|
|
object oSelf = OBJECT_SELF;
|
|
|
|
// Have us perform a sequence of actions.
|
|
ClearAllActions();
|
|
|
|
// Have us perform a sequence of actions.
|
|
ActionPlayAnimation(ANIMATION_LOOPING_TALK_LAUGHING, 1.0, 2.0);
|
|
PlayVoiceChat(VOICE_CHAT_LAUGH);
|
|
|
|
// Have us perform a sequence of actions.
|
|
ActionWait(2.0);
|
|
ActionMoveToObject(GetNearestObjectByTag("SewerCavesToSESewers"), TRUE);
|
|
// Destroy an object (not fully effective until this script ends).
|
|
DestroyObject(oSelf);
|
|
}
|
|
|