found a person on discord
explaining they tried to write a python script to log in multiple characters
I assume to get log in points
this is perfect for my level of experience
I plan on writing the code later today(friday) or asap just not tonight it's too late and I have to be up at 6:30am
so what I am thinking is an input in the program for how many times you want to log in
then I am going to have to find a way to log in to the different character
brainstorm:
log in to first char
input number in entry field lets say 5
/logout
wait 40
down key
enter
/logout
wait 40
down key twice
enter
wait 40
the issue I immediately see is
if I do a int input and a loop
it'll just keep logging in to the second char since it's only going down once
so you'll need to prefix each log in with another down
so if int = 5
on first 1 down
on second 2 down
on third 3 down
etc
so i'm thinking the code is going to be pretty long
logout
wait
down
okay new idea
this is the vast idea
you write a code to do every number of logins
2-16
so
logout
wait 45
enter(main menu)
down(second char)
enter(logs in)
wait(for everything to load)
log out
wait 45
enter(main menu)
down
down(third char)
enter(log in)
wait(for everything to load)
log out
wait 45
enter(main menu)
down
down
down(forth char)
enter(log in)
wait(to load)
log out
log out
wait 45
enter(main menu)
down
down
down
down(fifth char)
enter(log in)
wait(to load)
log out
done that's 5
but that need to be wrote 15 times
for 1 2 3 4 5 6 7 8 9 10 11 12 13 14 and 15
all defined
then whatever number you put in the input box will run that code for the number
so 1:
logout
wait 45
enter(main menu)
down(second char)
enter(logs in)
wait(for everything to load)
log out
2:
logout
wait 45
enter(main menu)
down(second char)
enter(logs in)
wait(for everything to load)
log out
wait 45
enter(main menu)
down
down(third char)
enter(log in)
wait(for everything to load)
log out
3:
logout
wait 45
enter(main menu)
down(second char)
enter(logs in)
wait(for everything to load)
log out
wait 45
enter(main menu)
down
down(third char)
enter(log in)
wait(for everything to load)
log out
wait 45
enter(main menu)
down
down
down(forth char)
enter(log in)
wait(to load)
log out
log out
whatever number you put in the entry box when you press start
it just calls that section of the code
each number being a
okay I wrote the code
the basic framework for the code is done it just needs to be edited with the correct keystrokes
so where it says hello hi and howdy is where 1 2 and 3 logins would go
this would go all the way to 15
a entry box next to a start button you input how many times then you press start
whatever number you input 1-15 will then select the def when you press start the selected def is then executed
that took 15 mins to write that lol
glad I could make it possible
obviously the code will be a lot more complex when it is in working shape but this is all I need to really get it done
it still needs to bring the ffxi to the front and of course all the keystrokes need to be added
but without that the code is pretty much done
with this method
if down key doesn't switch the selection to the right side
you can just add a right arrow keystroke to the later logins
very simple
No comments:
Post a Comment