Jump to content

Get a memberlist


Recommended Posts

http://flyff.gpotato.com/phpbb/memberlist.php

could u consider some commands or ideas on say like how to view the source and for example each member has there own row so

<td class="row1" align="center"><span class="gen"><a href="profile.php?mode=viewprofile&amp;u=11467" class="gen">sevedrihan</a></span></td>

and thats where the username is displayed so what would i use to make a thing view the source and get the text inbetweeen the <a href="profile.php?mode=viewprofile&amp;u=11467" class="gen"> and then </a>

and then go to the next link http://flyff.gpotato.com/phpbb/memberlist....er=ASC&start=50

then like with that u can just keep repeating that and add like a +50 on it so it goes to the next 50 each time

Link to comment
Share on other sites

  • Moderators

Is this a question / request / or something your going to do?

1. If a question: What have you tried?

2. If a request: What have you tried?

3. If something your going to do: What have you tried?

Also... What have you tried? :P

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

ive tryed really nothing well i just did but i made something that just saved the source to a file and i was gonna work on something to get the usernames later but i couldnt figure out something that adds 50 each time

send("http://flyff.gpotato.com/phpbb/memberlist.php?mode=joined&order=ASC&start=150")

like add 50 to the 150 and make it 200

Link to comment
Share on other sites

  • Moderators

Dim $Move = 150; << whatever your starting point is

While 1

$Move = $Move + 50

If $Move = 250 Then ExitLoop

Wend

MsgBox(0, '', "Move = 250")

?

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

i mean in the url at the end it says 150 like it will change that 50 to 200 the next time it saves the source then next it will add another 50 making it 250

ASC&start=150")

are you saying something like send("http://flyff.gpotato.com/phpbb/memberlist.php?mode=joined&order=ASC&start="$move") ?

Edited by thatsgreat2345
Link to comment
Share on other sites

  • Moderators

ASC&start="$move") wouldn't work. But ASC&start=$move) probably would.

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

ASC&start="$move") wouldn't work. But ASC&start=$move) probably would.

Surely the variable will not work inside quotes. Should it not be ASC&start=" & $move)


Time you enjoyed wasting is not wasted time ......T.S. Elliot
Suspense is worse than disappointment................Robert Burns
God help the man who won't help himself, because no-one else will...........My Grandmother

Link to comment
Share on other sites

Ha!!! That's what I meant BigDod :P

Why the name change, I still recognised the sig.


Time you enjoyed wasting is not wasted time ......T.S. Elliot
Suspense is worse than disappointment................Robert Burns
God help the man who won't help himself, because no-one else will...........My Grandmother

Link to comment
Share on other sites

thanks bigdod its working now just how do u find the name once i get all the sources of the pages

Smoke_N did all the work I just corrected a typo.

Without an example of what this source looks like u are on your own.


Time you enjoyed wasting is not wasted time ......T.S. Elliot
Suspense is worse than disappointment................Robert Burns
God help the man who won't help himself, because no-one else will...........My Grandmother

Link to comment
Share on other sites

i posted an example in the original one probelm though after a lil while it goes the maximum number of file opens has been executed and then the prog shuts off

but it has some stuff then the users are listed as

<tr>

<td class="row1" align="center"><span class="gen">&nbsp;1&nbsp;</span></td>

<td class="row1" align="center">&nbsp;<a href="privmsg.php?mode=post&amp;u=11467"><img src="templates/subSilver/images/lang_english/icon_pm.gif" alt="Send private message" title="Send private message" border="0" /></a>&nbsp;</td>

<td class="row1" align="center"><span class="gen"><a href="profile.php?mode=viewprofile&amp;u=11467" class="gen">sevedrihan</a></span></td>

<td class="row1" align="center" valign="middle">&nbsp;&nbsp;&nbsp;</td>

<td class="row1" align="center" valign="middle"><span class="gen">&nbsp;</span></td>

<td class="row1" align="center" valign="middle"><span class="gensmall">31 Dec 1969</span></td>

<td class="row1" align="center" valign="middle"><span class="gen">0</span></td>

<td class="row1" align="center">&nbsp;&nbsp;</td>

Edited by thatsgreat2345
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...