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.
21 lines
445 B
Plaintext
21 lines
445 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: End of Combat Round
|
|
//::
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Calls the end of combat script every round
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
|
|
#include "no_lib_data"
|
|
#include "no_inc"
|
|
|
|
void main()
|
|
{
|
|
//SetReadyStatus();
|
|
//DoCombat();
|
|
InitCombat();
|
|
//signal combat to userdef
|
|
SignalEvent( OBJECT_SELF, EventUserDefined( 1003 ) );
|
|
}
|