20 lines
447 B
Plaintext
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;
|
|
}
|