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.
79 lines
3.4 KiB
Plaintext
79 lines
3.4 KiB
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName ty_ban1check
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 12/13/03 2:46:05 AM
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Inspect local variables
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner1a") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner1b") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner1c") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner1d") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner2a") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner2b") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner2c") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner2d") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner3a") == 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner3b") == 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner3c") == 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner3d") == 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner4a") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner4b") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner4c") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner4d") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner5a") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner5b") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner5c") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner5d") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner6a") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner6b") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner6c") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner6d") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner7a") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner7b") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner7c") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner7d") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner8a") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner8b") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner8c") != 1))
|
|
return FALSE;
|
|
if(!(GetLocalInt(GetObjectByTag("ty_bannerlocks"), "banner8d") != 1))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|