Shargast_PRC8/_module/Chapter 1/nss/sfpb_anti_cheat.nss
Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

20 lines
447 B
Plaintext

//::///////////////////////////////////////////////
//:: 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;
}