View Single Post
  #1  
Old 11-02-2006, 11:22 AM
Novo Novo is offline
[TServerDeveloper]
Join Date: Jun 2006
Posts: 448
Novo will become famous soon enough
Priority Question!

How would I be able to make one function prioritized over another function?

PHP Code:
// Class Human
public function getDance()
  {
  return 
"human_"races::getDance();
  } 
PHP Code:
// Class Races
public function getDance()
  {
  return 
"dance";
  } 
How can I favor the "getDance" function in human over the "getDance" function in Races?
Reply With Quote