Renegade Public Forums
C&C: Renegade --> Dying since 2003™, resurrected in 2024!
Home » General Discussions » General Discussion » Question about renchat2
Question about renchat2 [message #88595] Wed, 19 May 2004 05:15 Go to next message
WNxTilly is currently offline  WNxTilly
Messages: 113
Registered: February 2003
Location: Sheffield, UK
Karma: 0
Recruit
Hi,

I have searched but found nothing as of yet.
What is the address to access the renchat4 server to get the current player and clan rankings information? (I assume that it is renchat4 it might be one of the other ones though.

I have been looking around the different ren forums but I can't find a single thing.

Could someone either reply here or send me a PM with any places to look or the address.

Thanks

Tilly


Warrior Nation Number One Gaming Clan In The World Very Happy
http://www.warriornation.net
XWIS Nick : WNxTilly

CABAL did steal my sig Razz

[Updated on: Tue, 10 August 2004 02:59]

Report message to a moderator

Question about renchat2 [message #88656] Wed, 19 May 2004 12:04 Go to previous messageGo to next message
snipesimo is currently offline  snipesimo
Messages: 764
Registered: February 2003
Karma: 0
Colonel
Are you using mIRC or are you coding an app for this?

If your using mIRC, you have to make a socket connection to the renegade rankings website or the renevo ladder mirror to get the info. I already completed and released a working !wolstats script for mIRC using the RenEvo ladder mirror, no one ever asked me for a clan one.
Question about renchat2 [message #88946] Thu, 20 May 2004 04:18 Go to previous messageGo to next message
WNxTilly is currently offline  WNxTilly
Messages: 113
Registered: February 2003
Location: Sheffield, UK
Karma: 0
Recruit
Snipesimo
The question that I need most is what is the rankings website?
I know there used to be one where you could search for your name and then it would show you all your current stats.

Like :

Name
Kills
Deaths
Wins
Loses
Rank

I just need to know what the address is for this so that I can access this via an app. Not mIRC. Or does it just come from the main database?

Thanks

Tilly


Warrior Nation Number One Gaming Clan In The World Very Happy
http://www.warriornation.net
XWIS Nick : WNxTilly

CABAL did steal my sig Razz
Question about renchat2 [message #89006] Thu, 20 May 2004 11:58 Go to previous messageGo to next message
snipesimo is currently offline  snipesimo
Messages: 764
Registered: February 2003
Karma: 0
Colonel
If you want to get it directly from Westwood, its actually not on renchat4.

Direct WS link:
http://renchat2.westwood.com/renegade/game_results/blazer0x_individual_stats.html

RenEvo link (recommended):
http://www.renevo.com/?section=services&servid=2&pname=blazer0x
Question about renchat2 [message #89074] Thu, 20 May 2004 16:37 Go to previous messageGo to next message
WNxTilly is currently offline  WNxTilly
Messages: 113
Registered: February 2003
Location: Sheffield, UK
Karma: 0
Recruit
Thanks I know about that one.
The server I'm talking about is the server that has your current ranks.
Like the one shown in the renevo sigs
Like the one shown when u log into WOL and it tells you what your current rank is and your kills and deaths.

Thanks again Snipesimo

Tilly


Warrior Nation Number One Gaming Clan In The World Very Happy
http://www.warriornation.net
XWIS Nick : WNxTilly

CABAL did steal my sig Razz
Question about renchat2 [message #89077] Thu, 20 May 2004 16:49 Go to previous messageGo to next message
snipesimo is currently offline  snipesimo
Messages: 764
Registered: February 2003
Karma: 0
Colonel
Did you even click on the links? Or did I just read wrong, because I get the feeling your still asking a question but I could be wrong. Because both of those links have your rank and kills and everything. If you mean what blazbot does:

[%[EoE]snipesimo]: blazbot wol blazer0x
[%BlazBot]: WOL Rank: 20026 WOL Title: Private WOL Name: Blazer0x
[%BlazBot]: Wins: 24 Losses: 28 Ladder Points: 9,725

then you need to open a conn to WOL for that.
Question about renchat2 [message #89132] Thu, 20 May 2004 23:25 Go to previous messageGo to next message
WNxTilly is currently offline  WNxTilly
Messages: 113
Registered: February 2003
Location: Sheffield, UK
Karma: 0
Recruit
Yes that is what I am asking Smile I already know about the info in the links that you sent me but thanks again.
Those links that you gave me is not the info that is in my renevo sig.
What I need is the info on how to access this info.

All this help is great mate thanks.

I don't want for you to think I'm stupid cos I'm not I think it was just we were talking about 2 different things.

Cheers

Tilly


Warrior Nation Number One Gaming Clan In The World Very Happy
http://www.warriornation.net
XWIS Nick : WNxTilly

CABAL did steal my sig Razz
Question about renchat2 [message #89203] Fri, 21 May 2004 11:58 Go to previous messageGo to next message
snipesimo is currently offline  snipesimo
Messages: 764
Registered: February 2003
Karma: 0
Colonel
I am yet to attempt to script this, but I will paste the PERL code Blazer uses to retrieve the info. If he doesn't want it posted, he can remove it.

[20:22] [Blazer]: wol rank is a bit more difficult
[20:22] [Blazer]: you have to POST info to their server, and parse the output
[20:22] [Blazer]: not just a get
[20:23] [Blazer]: my $req = HTTP::Request->new(POST => 'http://renchat2.westwood.com/cgi-bin/reneg
[20:23] [Blazer]: ade/individual/carpenter');
[20:23] [Blazer]: @data = split(/\n\n\n\n\n\n/,$content);
[20:23] [Blazer]: $lines = (@data);
[20:23] [Blazer]: #print "Data contains $lines lines.\n";
[20:23] [Blazer]: for $line (@data) {
[20:23] [Blazer]: if ( $line =~ m/(\d+)\s\n(.+)\n\s(\w+)\n(\d+)wins\/(\d+)losses\n([\d\,]+)/ )
[20:23] [Blazer]: {
[20:23] [Blazer]: $name=lc($3);
[20:23] [Blazer]: if ($name eq $user) {
[20:23] [Blazer]: # print "Found $3!\n";
[20:23] [Blazer]: $kernel->post($pci, 'privmsg', ReplyTo($env), "WOL Rank: $1 WOL Titl
[20:23] [Blazer]: e: $2 WOL Name: $3\n");
[20:23] [Blazer]: $kernel->post($pci, 'privmsg', ReplyTo($env), "Wins: $4 Losses: $
[20:23] [Blazer]: 5 Ladder Points: $6\n");
[20:23] [Blazer]: return;
Question about renchat2 [message #89334] Sat, 22 May 2004 01:23 Go to previous messageGo to next message
WNxTilly is currently offline  WNxTilly
Messages: 113
Registered: February 2003
Location: Sheffield, UK
Karma: 0
Recruit
Thanks mate,
this was what I was looking for I think.
You are a god mate.

Thanks

Tilly

{edit}
Say I was writing a php script and I wanted to open the socket connection would I need to open it just to renchat2.westwood.com or the whole directory line or do u not know much about php?

If not anyone else know?

Thanks

Tilly


Warrior Nation Number One Gaming Clan In The World Very Happy
http://www.warriornation.net
XWIS Nick : WNxTilly

CABAL did steal my sig Razz
Question about renchat2 [message #89346] Sat, 22 May 2004 07:14 Go to previous messageGo to next message
snipesimo is currently offline  snipesimo
Messages: 764
Registered: February 2003
Karma: 0
Colonel
I know when I opeen a socket in mIRC I only open it to renchat2.westwood.com then you include the full link in the GET/POST
Question about renchat2 [message #89351] Sat, 22 May 2004 08:53 Go to previous messageGo to next message
WNxTilly is currently offline  WNxTilly
Messages: 113
Registered: February 2003
Location: Sheffield, UK
Karma: 0
Recruit
Yeah I know that line in mIRC.

Does anyone know the line php to do a similar thing?

Cheers

Tilly


Warrior Nation Number One Gaming Clan In The World Very Happy
http://www.warriornation.net
XWIS Nick : WNxTilly

CABAL did steal my sig Razz
Question about renchat2 [message #106891] Tue, 10 August 2004 02:57 Go to previous messageGo to next message
WNxTilly is currently offline  WNxTilly
Messages: 113
Registered: February 2003
Location: Sheffield, UK
Karma: 0
Recruit
I know this is an old post that I brought back but I have found what I was looking for. Now I'm using ASP and I have figured out what I need.

But now what I want to know is I can access the top 10 players (I know how to access the top 25 but I wont post that here) but how do you access the rest?

http://renchat2.westwood.com/renegade_embedded/individual/ranking.html

This is the link. What if I wanted to find other rankings?
Like 11-20 Or Maybe search by name
i.e. wnxtilly

I think Snipesimo might be able to help me Smile

Thanks

Tilly


Warrior Nation Number One Gaming Clan In The World Very Happy
http://www.warriornation.net
XWIS Nick : WNxTilly

CABAL did steal my sig Razz
Question about renchat2 [message #106929] Tue, 10 August 2004 10:44 Go to previous messageGo to next message
snipesimo is currently offline  snipesimo
Messages: 764
Registered: February 2003
Karma: 0
Colonel
http://www.renevo.com/?section=services&servid=2

First 20 players.

http://www.renevo.com/?section=services&servid=2&start=21

start= the number rank you want the listing to start at, then the next 20 players after that number are also listed.

or

http://www.renevo.com/?section=services&servid=2&pname=55

pname= rank number you wish to look up. It will return the wolstats page for that player.
Question about renchat2 [message #106947] Tue, 10 August 2004 14:00 Go to previous messageGo to next message
WNxTilly is currently offline  WNxTilly
Messages: 113
Registered: February 2003
Location: Sheffield, UK
Karma: 0
Recruit
Thanks,

You are the man Very Happy (I knew you would know)

Tilly


Warrior Nation Number One Gaming Clan In The World Very Happy
http://www.warriornation.net
XWIS Nick : WNxTilly

CABAL did steal my sig Razz
Question about renchat2 [message #107004] Tue, 10 August 2004 18:44 Go to previous message
snipesimo is currently offline  snipesimo
Messages: 764
Registered: February 2003
Karma: 0
Colonel
No problem.
Previous Topic: Post your picture
Next Topic: Public Service Announcment from Dante...nasty virus
Goto Forum:
  


Current Time: Wed May 29 16:12:15 MST 2024

Total time taken to generate the page: 0.00961 seconds