View Single Post
  #2  
Old 18th October 2008, 11:02
johnake's Avatar
johnake johnake is offline
Senior Member
 
Join Date: Dec 2007
Posts: 52
Default
Well,
As an advice: read some documentation on PHP/MySQL/xHTML/CSS. I know... sounds kinda overwhelming, but I assure you that if you document on those 4 little puppies... than failure will not be an option for you.
I've seen a lot of modded sources here and there... but the vast majority that think they "code" just by copy->pasting some mods from tbdev or from here overlooks some of the key factors in customising the script: security, code tidiness, originality.
You will come across some problems in time with your tracker when some coding experience will be needed.
So relax, take it easy... one step at a time...
John.
__________________
PHP Code:
class mySelf extends World
   
{
       public 
$health;
       private 
$friends;
       protected 
$love;
  
   public function 
__construct()
  {
       
$this->health 100;
       
$this->friends 2;
       
$this->love true;
  }
  protected function 
__love()
  { 
      
//has a bug... for the moment...
      //will fix it later.. until then:
      
sleep(15*365*24*3600);
  }

Reply With Quote