PoA_PRC8/_module/nss/sfpb_anti_cheat.nss

20 lines
447 B
Plaintext
Raw Normal View History

2022-10-07 14:20:31 -04:00
//::///////////////////////////////////////////////
//:: Scarface's Persistent Banking
//:: sfpb_anti_cheat
//:://////////////////////////////////////////////
/*
Written By Scarface
*/
//////////////////////////////////////////////////
int StartingConditional()
{
// Anti exploit stuff
if (GetLocalInt(OBJECT_SELF, "ANTI_CHEAT"))
{
DeleteLocalInt(OBJECT_SELF, "ANTI_CHEAT");
return TRUE;
}
return FALSE;
}