LoT_PRC8/_module/nss/chk_tickets.nss
Jaysyn904 ec287507a1 Initial upload
Initial upload.
2023-09-25 21:32:17 -04:00

22 lines
566 B
Plaintext

//::///////////////////////////////////////////////
//:: FileName chk_vermin_lic
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 2003-02-18 16:56:31
//:://////////////////////////////////////////////
#include "nw_i0_tool"
int StartingConditional()
{
// Make sure the PC speaker not has a ticket
if(HasItem(GetPCSpeaker(), "tick_vip_card"))
return FALSE;
if(HasItem(GetPCSpeaker(), "tick_to_raven"))
return FALSE;
return TRUE;
}