Shargast_PRC8/_module/Chapter 1/nss/sfpb_anti_cheat.nss

20 lines
447 B
Plaintext
Raw Normal View History

2024-08-03 14:13:18 -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;
}