TumbleRead

Dive into your creative stream

Scriptwriting - Blog Posts

1 year ago

Bringing this back because I feel like I don't have the talent for storytelling or drawing...

There's this one series (Lunette Precure) I had that I want to bring back as a novel but I'm not sure if I should due to the toxic experience I had with making a series, I remember I had this precure fanseries called dream skies precure when I was 13-14 and the experience I had while trying to make it was awful, a lot of people bullying me into changing the character designs, people calling it terrible when I never even got started with the first episode (and they could've ignored it if they didn't like it), stealing my characters just to make hateful shit and more (and there was very little criticism to help improve it btw), I was like 13-14 with low self confidence and decided that i should just cancel it and nothing changed.... Nowadays when I come up with a new series, I always worry if it's not good enough and that I need to change something about it (I'm 17 now and still struggle)


Tags
1 year ago

I need some advice trying to write a script for my fanmade precure series, this was the first chapter of my series and I wanna know if it's good or needs improvement

I Need Some Advice Trying To Write A Script For My Fanmade Precure Series, This Was The First Chapter
I Need Some Advice Trying To Write A Script For My Fanmade Precure Series, This Was The First Chapter
I Need Some Advice Trying To Write A Script For My Fanmade Precure Series, This Was The First Chapter
I Need Some Advice Trying To Write A Script For My Fanmade Precure Series, This Was The First Chapter
I Need Some Advice Trying To Write A Script For My Fanmade Precure Series, This Was The First Chapter

Tags
1 year ago

There's this one series (Lunette Precure) I had that I want to bring back as a novel but I'm not sure if I should due to the toxic experience I had with making a series, I remember I had this precure fanseries called dream skies precure when I was 13-14 and the experience I had while trying to make it was awful, a lot of people bullying me into changing the character designs, people calling it terrible when I never even got started with the first episode (and they could've ignored it if they didn't like it), stealing my characters just to make hateful shit and more (and there was very little criticism to help improve it btw), I was like 13-14 with low self confidence and decided that i should just cancel it and nothing changed.... Nowadays when I come up with a new series, I always worry if it's not good enough and that I need to change something about it (I'm 17 now and still struggle)


Tags
1 year ago

You know the drill: New Chapter

archiveofourown.org
An Archive of Our Own, a project of the Organization for Transformative Works

Tags
1 year ago

Chapter Two of the Script is Out!

Here's a link: https://archiveofourown.org/works/54260500/chapters/137832220


Tags
1 year ago

I just finished a third document for my current writing project for Persona 5 Royal

Thing I've noticed:

I have an impulse now to write names, places, and other things in capital by holds shift (my computer does't have an all caps button)

I've only gotten through around half an hour of Persona 5 Royal and it already spans about 25 pages.

The only reason it isn't 30 pages like the script industry standard is because I made the font size 10 instead of 12

Ren does a lot of thinking, but not a lot of talking

I often have to go back to change names based on what is written in the game

I decided I might as well make my posting schedule on Mondays, so look out for the next part tomorrow! I might not always post every Monday, however. The script is too long and I have to juggle other things. I'll post here when I post another chapter, though, so you will know even if AO3 doesn't!


Tags
1 year ago

Me: Okay, I am finally posting something on ao3, but I want it to be posted on Saturday

Me: *makes a typo*

Me: Oops, let me change that.

Me: *accidentally posts the chapter*

Me:...

Well... I guess enjoy the thing I posted: https://archiveofourown.org/works/54260500/chapters/137411920


Tags
1 year ago

So, Persona Community...

I couldn't find the script for Persona 5 Royal, so I thought "Fuck it, if I have to download this shit for fanfic idea I might as well just watch videos." So... should I try to post the entire script of Persona 5 Royal on ao3?

Btw I have never played the game so I would be reliant on other sources to try to clobber something together. I am running on Pure spite rn.

Pls answer.


Tags
1 year ago

Random script I came up with at work for Pmatga.

(Betrayus grinding his metal nails sitting in his throne)

Lord betrayus: I'm currently busy at the moment, not caring. But you are free to put your suggestions in the suggestions box!

(Pans over to shredder over trash can.)

Pinky: You're kidding right..??

Buttler: No, he's not. He also told me to put my vacation request in there as well.

Lord Betrayus: DE-NIED.


Tags
8 months ago

How to automate twitter or tumblr posts using scripts ! Thank me later

1. Automate Content PostingAutomating the posting of content on Twitter can help increase engagement and followers. You can use Python scripts in Termux to interact with the Twitter API for automated tweeting.Install Required PackagesEnsure you have Python installed and install required libraries:pkg install python

pip install tweepySet Up Twitter Developer AccountCreate a Twitter Developer Account: Sign up for a developer account and create an app to get API keys: Twitter Developer Portal.Get API Keys: You need the Consumer Key, Consumer Secret, Access Token, and Access Token Secret.Write a Python ScriptHere’s an example script to post a tweet using the Twitter API:import tweepy

# Replace with your own credentials

consumer_key = 'YOUR_CONSUMER_KEY'

consumer_secret = 'YOUR_CONSUMER_SECRET'

access_token = 'YOUR_ACCESS_TOKEN'

access_token_secret = 'YOUR_ACCESS_TOKEN_SECRET'

# Authenticate to Twitter

auth = tweepy.OAuth1UserHandler(consumer_key, consumer_secret, access_token, access_token_secret)

api = tweepy.API(auth)

# Create a tweet

tweet = "Hello, this is a tweet from Termux!"

api.update_status(tweet)

print("Tweet posted successfully!")Run the ScriptSave the script as tweet_bot.py and run it:python tweet_bot.py2. Monitor Twitter EngagementYou can use Termux to run scripts that analyze engagement on your tweets, helping you optimize content for better monetization.Install Required Librariespip install tweepy pandas matplotlibWrite a Python ScriptExample script to analyze tweets:import tweepy

import pandas as pd

import matplotlib.pyplot as plt

# Replace with your own credentials

consumer_key = 'YOUR_CONSUMER_KEY'

consumer_secret = 'YOUR_CONSUMER_SECRET'

access_token = 'YOUR_ACCESS_TOKEN'

access_token_secret = 'YOUR_ACCESS_TOKEN_SECRET'

# Authenticate to Twitter

auth = tweepy.OAuth1UserHandler(consumer_key, consumer_secret, access_token, access_token_secret)

api = tweepy.API(auth)

# Fetch recent tweets

tweets = api.user_timeline(screen_name='your_twitter_handle', count=100)

# Create DataFrame

data = {

'Tweet': [tweet.text for tweet in tweets],

'Likes': [tweet.favorite_count for tweet in tweets],

'Retweets': [tweet.retweet_count for tweet in tweets]

}

df = pd.DataFrame(data)

# Plot engagement

df.plot(x='Tweet', y=['Likes', 'Retweets'], kind='bar')

plt.title('Tweet Engagement')

plt.xlabel('Tweets')

plt.ylabel('Counts')

plt.xticks(rotation=90)

plt.tight_layout()

plt.show()Run the ScriptSave the script as analyze_engagement.py and run it:python analyze_engagement.py3. Engagement AutomationAutomate interactions like following, unfollowing, and liking tweets. Be cautious as excessive automation may violate Twitter’s policies.Install Librariespip install tweepyWrite Automation ScriptsExample script to follow users:import tweepy

# Replace with your own credentials

consumer_key = 'YOUR_CONSUMER_KEY'

consumer_secret = 'YOUR_CONSUMER_SECRET'

access_token = 'YOUR_ACCESS_TOKEN'

access_token_secret = 'YOUR_ACCESS_TOKEN_SECRET'

# Authenticate to Twitter

auth = tweepy.OAuth1UserHandler(consumer_key, consumer_secret, access_token, access_token_secret)

api = tweepy.API(auth)

# Follow a user

user_to_follow = 'user_handle'

api.create_friendship(user_to_follow)

print(f"Followed {user_to_follow}")Run the ScriptSave the script as follow_user.py and run it:python follow_user.py4. Monitor Trends and AnalyticsUse Termux to track Twitter trends and analytics to identify opportunities for monetization.SummaryAutomate Posts: Use Termux and Python to automate tweeting.Analyze Engagement: Track and analyze tweet performance.Engage Automatically: Automate interactions like following or liking.Consider Policies: Ensure compliance with Twitter’s automation policies.These steps will help you use Termux to support your Twitter monetization strategy, but direct monetization typically involves more comprehensive strategies, including content creation, advertising, and partnerships.


Tags
Loading...
End of content
No more pages to load
Explore Tumblr Blog
Search Through Tumblr Tags