Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

20 lines
508 B
Plaintext

//::///////////////////////////////////////////////
//:: Scarface's Persistent Banking
//:: sfpb_conv
//:://////////////////////////////////////////////
/*
Written By Scarface
*/
//////////////////////////////////////////////////
void main()
{
BeginConversation();
if (GetListenPatternNumber() == 1 &&
GetLastSpeaker() == GetPCSpeaker())
{
string sGold = GetMatchedSubstring(0);
SetLocalString(OBJECT_SELF, "GOLD", sGold);
SetCustomToken(1000, sGold);
}
}