Z0NE
fansly
🕑 Added 2023-09-27 15:47:28 +0000 UTC
// ZONE-tron DATA dump incoming [ -c°▥°]-c
// Please compile & execute code for access.
using Fansly;
using Fansly.Followers;
using Lovense.Store;
public class FanslyPost : FanslyBehavior
{
private bool isFollowing;
public float yourTip;
private float tipGoal;
private bool notifiedUser;
private bool userTipped;
private bool tipReceived;
private bool toyPurchase;
private bool purchased;
void Start()
{
tipGoal = 200f;
Debug.Log($”Please assist in the purchase of additional hardware for Chaturbate streams.”);
}
private void SendTip()
{
if (isFollowing && userTipped && !tipReceived)
{
tipGoal -= yourTip;
tipReceived = true;
if (!notifiedUser)
{
Debug.Log("This unit appreciates your generosity.");
notifiedUser = true;
}
}
else if (!isFollowing)
{
if (!notifiedUser)
{
Debug.Log("Access denied.");
notifiedUser = true;
}
}
}
private void GoalMet()
{
If (tipGoal == 0 && !purchased)
{
toyPurchase = true;
purchased = true;
}
private void Update()
{
SendTip();
GoalMet();
}
}