Thread: VIP status
View Single Post
  #7  
Old 29th August 2008, 14:46
johnake's Avatar
johnake johnake is offline
Senior Member
 
Join Date: Dec 2007
Posts: 52
Default
@kp380lv, as that code is his intelectual property and gave this mod publicly he is entitled to have a credit either in the code (as a comment), either in the thread name or in the post... or even in the three of them, that's why I will do some editing, hope you don't mind!
__________________
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