Author Topic: tp algo question  (Read 12719 times)

0 Members and 1 Guest are viewing this topic.

Offline kendrick

  • Newbie
  • *
  • Posts: 47
    • View Profile
tp algo question
« on: July 28, 2010, 12:57:15 PM »
hi again,

im still curious about the algo :) wondering what does pow($Duin,0.333) mean and how come theres a pow in front

Offline ip0li

  • mgSearkGD
  • Administrator
  • Hero Member
  • *****
  • Posts: 1963
    • View Profile
    • Pretty Girls from your city for night
Re: tp algo question
« Reply #1 on: July 29, 2010, 02:44:01 AM »
pow — Exponential expression

http://php.net/manual/en/function.pow.php

Offline kendrick

  • Newbie
  • *
  • Posts: 47
    • View Profile
Re: tp algo question
« Reply #2 on: July 29, 2010, 03:17:40 AM »
ah...gonna need my scientific calculator now...where did i put it after all this years....
« Last Edit: July 29, 2010, 03:21:59 AM by kendrick »

Offline ip0li

  • mgSearkGD
  • Administrator
  • Hero Member
  • *****
  • Posts: 1963
    • View Profile
    • Pretty Girls from your city for night
Re: tp algo question
« Reply #3 on: July 29, 2010, 03:29:10 AM »
I found it you left it on my desk!

http://web2.0calc.com/

;)

Offline kendrick

  • Newbie
  • *
  • Posts: 47
    • View Profile
Re: tp algo question
« Reply #4 on: July 29, 2010, 07:41:06 AM »
oh there it is  ;D

Offline kendrick

  • Newbie
  • *
  • Posts: 47
    • View Profile
Re: tp algo question
« Reply #5 on: August 02, 2010, 04:18:23 AM »
another question !

if($Dout_r>100){
     $c=$Ca/$AverageCa;
     if($c>1.1)$c=1.1;
     if($c<0.9)$c=0.9;
     $P1*=$c;
     $P2*=$c;
     $P3*=$c;

just wondering what does $P1*=$c; mean.....also do i have to add a $c in p1 for this to take effect

Offline ip0li

  • mgSearkGD
  • Administrator
  • Hero Member
  • *****
  • Posts: 1963
    • View Profile
    • Pretty Girls from your city for night
Re: tp algo question
« Reply #6 on: August 02, 2010, 04:39:53 AM »
it means modify P1 points with click again value. I am telling you again if you don't understand this 500% don't touch algo your site will go downhill.

Offline kendrick

  • Newbie
  • *
  • Posts: 47
    • View Profile
Re: tp algo question
« Reply #7 on: August 02, 2010, 11:45:58 PM »
no worries, im testing this on a 1k site only, actually so far so good for me  :D

« Last Edit: August 02, 2010, 11:50:34 PM by kendrick »

Offline kendrick

  • Newbie
  • *
  • Posts: 47
    • View Profile
Re: tp algo question
« Reply #8 on: August 04, 2010, 07:20:02 PM »
i am slowly becoming a php programmer