Hello,
I am trying to do something i could call gaming utility in delphi. I have one mayor problem. I don't know how to get the data i need.

You can find data i need on the link bellow, it is player stats table from game called runescape, you don't need to know it to help me just chect the link please

http://hiscore.runescape.com/index_lite.ws?player=emmann0

i don't want someone to do it all for me I'd like to get some clues or guide to make it myself

thanks for reading this

Recommended Answers

All 2 Replies

Take a look at the indy components, they are the easiest to use. (and there are plenty of examples)

hi

you just need to download the page to your "CurrentDirectory" (or the program's directory), and do some text manipulations on it.

the way i see the text, you just need to look for the spaces(" ").
once you do that, you'll get lines of text build of 3 numbers separated by a comma.
then split the those lines.
i think it would be easiest to work with TStringList.

so here is an example of what i mean:
you have this text -
170632,1579,22742577 197483,82,2546825 177651,80,2087021 286001,83,2767264

then you make it:
170632,1579,22742577
197483,82,2546825
177651,80,2087021
286001,83,2767264

and then make it :
170632
1579
22742577

197483
82
2546825

177651
80
2087021

286001
83
2767264


after doing that, you will have full control of every piece of text you want

hope i helped, and sorry for my broken english :)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.