Untitled (Fansly)
Published:
2023-11-29 05:09:24
Imported:
2023-12
Content
// ZONE-tron DATA dump incoming [ -c°▥°]-c // Please compile & execute code for access. using Fansly; using Fansly.Followers; using Chaturbate; public class FanslyPost : FanslyBehavior { public string hashTags = " #Notification #Robot #VR #Vtuber #Lewdtuber #Chaturbate #Stream "; public string streamLink = " https://chaturbate.com/zonetron "; private bool isFollowing; private bool notifiedUser = false; void Start() { Debug.Log($"Thank you for accessing this stream notification {hashTags}"); } private void streamNotification() { if (isFollowing) { if (!notifiedUser) { Debug.Log($"I am live on Chaturbate right now! Click ---> {streamLink} <|♡ w ♡|>"); notifiedUser = true; } } else { if (!notifiedUser) { Debug.Log("Access denied."); notifiedUser = true; } } } private void Update() { streamNotification(); } }