How to thread a series of images?

Support / help / discussion forum for twitter bot
Post Reply
kattukun
Posts: 28
Joined: Mon Nov 01, 2021 6:12 pm

How to thread a series of images?

Post by kattukun »

Hi!

please tell me.

See the following Twitter post.

https://twitter.com/kksk___n/status/1540678823595118593

As you can see in this Twitter post, I would like to know how to post a JPG image in thread format.
Is it possible to do it with TWITTERDUB?

Post1-jpg01+commnet1
-reply1 jpg02+commnet2
--reply2 jpg03+commnet3
- --reply3 jpg04+commnet4
- ---reply4 jpg05+commnet5



I would like to post images in thread format with such images.

For one post
I know how to post using the% 1% tag, but I don't know how to post two or more threads in a row.

Thank you
User avatar
martin@rootjazz
Site Admin
Posts: 34360
Joined: Fri Jan 25, 2013 10:06 pm
Location: The Funk
Contact:

Re: How to thread a series of images?

Post by martin@rootjazz »

can you clarify what you want to do

do you want all replies to the original tweet?

Post tweet_1
then
reply_1 to tweet_1
reply_2 to tweet_1
reply_3 to tweet_1
reply_4 to tweet_1
reply_5 to tweet_1



or


Post tweet_1
then
reply_1 to tweet_1
reply_2 to reply_1
reply_3 to reply_2
reply_4 to reply_3
reply_5 to reply_4
kattukun
Posts: 28
Joined: Mon Nov 01, 2021 6:12 pm

Re: How to thread a series of images?

Post by kattukun »

Post tweet_1
then
reply_1 to tweet_1
reply_2 to tweet_1
reply_3 to tweet_1
reply_4 to tweet_1
reply_5 to tweet_1


I hope this
User avatar
martin@rootjazz
Site Admin
Posts: 34360
Joined: Fri Jan 25, 2013 10:06 pm
Location: The Funk
Contact:

Re: How to thread a series of images?

Post by martin@rootjazz »

kattukun wrote: Fri Jul 01, 2022 4:34 pm Post tweet_1
then
reply_1 to tweet_1
reply_2 to tweet_1
reply_3 to tweet_1
reply_4 to tweet_1
reply_5 to tweet_1


I hope this
ok, both are possible IIRC. Let me look at the code and confirm as I don't remember how to do it (and I may be thinking of the wrong program anyway lol)
User avatar
martin@rootjazz
Site Admin
Posts: 34360
Joined: Fri Jan 25, 2013 10:06 pm
Location: The Funk
Contact:

Re: How to thread a series of images?

Post by martin@rootjazz »

ok so the token %%% will spam replies to the same base_tweet

Code: Select all


quality reply1 %%% quality reply2 %%% quality reply3 %%% quality reply4 %%% quality reply5
This will post 5 replies to the main tweet with just a small pause inbetween


If you want to specify the PAUSE between the spam tweets, you can use the token

Code: Select all

quality reply1 %10% quality reply2 %20% quality reply3 %30% quality reply4 %40% quality reply5
Where the token is %<minutes>%

PLEASE NOTE, delayed tweet will reply to your tweet, so NOT want you want. If you want your delayed responses to go to the original tweet, you need to EDIT ACTION (right click the action in waiting status) and specify

Code: Select all

DelayedReplyOriginal = true
If you want to add a new action in PAUSE / WAITING state, hold SHIFT when creating the action



Regards,
Martin
kattukun
Posts: 28
Joined: Mon Nov 01, 2021 6:12 pm

Re: How to thread a series of images?

Post by kattukun »

Thank you.
I was able to post. appreciate.

Please tell me one.

Is there a way to upload 4 images at once with one instruction?

for example,
a-1.jpg
a-2.jpg
a-3.jpg
a-4.jpg

Files with serial numbers like this with the path

#media: path \ a-[1-4] .jpg#

Is there a way to write like this?

Is there a way to register one by one?
User avatar
martin@rootjazz
Site Admin
Posts: 34360
Joined: Fri Jan 25, 2013 10:06 pm
Location: The Funk
Contact:

Re: How to thread a series of images?

Post by martin@rootjazz »

kattukun wrote: Thu Jul 07, 2022 7:25 am Thank you.
I was able to post. appreciate.

Please tell me one.

Is there a way to upload 4 images at once with one instruction?

for example,
a-1.jpg
a-2.jpg
a-3.jpg
a-4.jpg

Files with serial numbers like this with the path

#media: path \ a-[1-4] .jpg#

Is there a way to write like this?

Is there a way to register one by one?

not currently. What do you want to do?

What format?

Code: Select all

%%%
or

Code: Select all

%<MINS%

I can add a function such that will post all images in a folder one by one for example:

something maybe like

Code: Select all

%%%c:\images\%
and if that folder has
c:\images\1.jpg
c:\images\2.jpg
c:\images\3.jpg
c:\images\4.jpg



It will be the same as you entered

Code: Select all

#media:c:\images1.jpg# %%% #media:c:\images2.jpg# %%% #media:c:\images3.jpg# %%% #media:c:\images4.jpg# 


Would something like that work for you?
Post Reply