Player Ranking

Other talk that doesn't fit elsewhere.
This is for General Discussion, not General chat.
Post Reply
User avatar
Black Sabbath
Rookie
Rookie
Posts: 22
Joined: 03 Jan 2009, 05:14

Player Ranking

Post by Black Sabbath »

How many games do you have to win before you get rid of the stupid soother picture ? I might have to go through my old old old backups and see if I can find my old Warzone player.

Image
User avatar
lav_coyote25
Professional
Professional
Posts: 3434
Joined: 08 Aug 2006, 23:18

Re: Player Ranking

Post by lav_coyote25 »

rotflmao.... too funny. see if you still have it. xD
EvilGuru
Regular
Regular
Posts: 615
Joined: 23 Jun 2007, 22:41

Re: Player Ranking

Post by EvilGuru »

I do not believe that it will work. Retail versions of Warzone encrypted the player data, presumably to stop people from changing things such as the number of games won etc. A while back (~2.1) we removed this encryption. It was weak and unnecessary.

However, as a result of this, 1.10 era player data will not work with 2.1 or later. But, since it is unencrypted... ;)

Regards, Freddie.
User avatar
Phoenix666
Trained
Trained
Posts: 106
Joined: 21 Sep 2008, 20:38
Location: Russia
Contact:

Re: Player Ranking

Post by Phoenix666 »

sometimes ranks work(on all v2.1 )
User avatar
Jimmbob
Trained
Trained
Posts: 138
Joined: 09 Mar 2008, 16:15
Location: England!
Contact:

Re: Player Ranking

Post by Jimmbob »

I was just wondering if anyone could tell me the boundaries between the different ranks, just curious! :)
User avatar
Buginator
Professional
Professional
Posts: 3285
Joined: 04 Nov 2007, 02:20

Re: Player Ranking

Post by Buginator »

Jimmbob wrote:I was just wondering if anyone could tell me the boundaries between the different ranks, just curious! :)
Sure thing!

Code: Select all

		if(getMultiStats(j,false).played < 5)
		{
			iV_DrawImage(FrontImages,IMAGE_MEDAL_DUMMY,x+37,y+13);
		}
		else
		{
			stat = getMultiStats(j,false);

			// star 1 total droid kills
			eval = stat.totalKills;
			if(eval >600)
			{
				iV_DrawImage(FrontImages,IMAGE_MULTIRANK1,x+37,y+3);
			}
			else if(eval >300)
			{
				iV_DrawImage(FrontImages,IMAGE_MULTIRANK2,x+37,y+3);
			}
			else if(eval >150)
			{
				iV_DrawImage(FrontImages,IMAGE_MULTIRANK3,x+37,y+3);
			}


			// star 2 games played
			eval = stat.played;
			if(eval >200)
			{
				iV_DrawImage(FrontImages,IMAGE_MULTIRANK1,x+37,y+13);
			}
			else if(eval >100)
			{
				iV_DrawImage(FrontImages,IMAGE_MULTIRANK2,x+37,y+13);
			}
			else if(eval >50)
			{
				iV_DrawImage(FrontImages,IMAGE_MULTIRANK3,x+37,y+13);
			}


			// star 3 games won.
			eval = stat.wins;
			if(eval >80)
			{
				iV_DrawImage(FrontImages,IMAGE_MULTIRANK1,x+37,y+23);
			}
			else if(eval >40)
			{
				iV_DrawImage(FrontImages,IMAGE_MULTIRANK2,x+37,y+23);
			}
			else if(eval >10)
			{
				iV_DrawImage(FrontImages,IMAGE_MULTIRANK3,x+37,y+23);
			}

			// medals.
			if((stat.losses > 2) && (stat.wins > 2) && (stat.wins > (2 * stat.losses)))// bronze requirement.
			{
				if( stat.wins > (4 * stat.losses))								// silver requirement.
				{
					if(stat.wins > (8 * stat.losses))							// gold requirement
					{
						iV_DrawImage(FrontImages,IMAGE_MEDAL_GOLD,x+49,y+11);
					}
					else
					{
						iV_DrawImage(FrontImages,IMAGE_MEDAL_SILVER,x+49,y+11);
					}
				}
				else
				{
					iV_DrawImage(FrontImages,IMAGE_MEDAL_BRONZE,x+49,y+11);
				}
			}
		}
Happy? :D
Hax0r.jpg
Hax0r.jpg (3.48 KiB) Viewed 4481 times
and it ends here.
doom3r
Regular
Regular
Posts: 502
Joined: 29 Aug 2007, 15:04

Re: Player Ranking

Post by doom3r »

And what about medals? I used to have some of them in older versions.
User avatar
Freakyman
Trained
Trained
Posts: 32
Joined: 28 Dec 2008, 17:36
Location: England

Re: Player Ranking

Post by Freakyman »

the medals are for the campaign it is to state that u have completed a certain stage in the campaign :D
User avatar
Buginator
Professional
Professional
Posts: 3285
Joined: 04 Nov 2007, 02:20

Re: Player Ranking

Post by Buginator »

Freakyman wrote:the medals are for the campaign it is to state that u have completed a certain stage in the campaign :D
Naw...
haxor2.jpg
haxor2.jpg (3.75 KiB) Viewed 4333 times
and it ends here.
Post Reply