PDA

View Full Version : Someone can make that on vb6?



Laimonas171
03-28-2009, 09:45 AM
example how it should look. can anyone make it?
http://u.stats.lt/i/20090329055247/his.PNG

here u can get values.
http://runescape.com/slu.ws


source of form.
6430

NiiX
03-28-2009, 01:52 PM
What are you looking for in this?

A calculator?

Laimonas171
03-28-2009, 07:15 PM
What are you looking for in this?

A calculator?

i need get world players values from http://runescape.com/slu.ws into textbox or label on vb6 then calculate this same function in vb6 like in script on scar. and make timer exacly like almost made on scar. so if u able to do that please make source 4 me. :)

NiiX
03-29-2009, 07:28 PM
i need get world players values from http://runescape.com/slu.ws into textbox or label on vb6 then calculate this same function in vb6 like in script on scar. and make timer exacly like almost made on scar. so if u able to do that please make source 4 me. :)

I am not for spooning another newbie, Ill tell you how to do it tho.

When you open the source of that link you get alot of text.

Try to search for World 80 as an example, CTRL + F.

Now you should get this


<td class="f">
<a href="http://world80.runescape.com/a2,m0,j0,o0">World 80</a>
</td>
<td>729 Players</td>


Class = [F]ree/ [M]embers


<a href="http://world80.runescape.com/a2,m0,j0,o0">World 80</a>

This says the URL Runescape.com will take you to if you press that button saying World 80.


<td>729 Players</td>

This is how many players are on that world, to get that value into an txtbox, simply 'cut' it and make it go to the txtbox of your choice, remember - cut the part between the > and the </ or else you will get </td>.

Enjoy.

Laimonas171
04-03-2009, 04:02 AM
I am not for spooning another newbie, Ill tell you how to do it tho.

When you open the source of that link you get alot of text.

Try to search for World 80 as an example, CTRL + F.

Now you should get this



Class = [F]ree/ [M]embers



This says the URL Runescape.com will take you to if you press that button saying World 80.



This is how many players are on that world, to get that value into an txtbox, simply 'cut' it and make it go to the txtbox of your choice, remember - cut the part between the > and the </ or else you will get </td>.

Enjoy.
man.. i maked it in diferend way. but thx

Laimonas171
04-03-2009, 04:03 AM
Closed