View Single Post
  #8  
Old 07-07-2009, 03:09 AM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by fowlplay4 View Post
Oh well there's public functions.

In your DB-NPC (named Example in this case):

PHP Code:
public function onRandFunc() {
  echo(
"success!");

Then in your level npc:

PHP Code:
function onCreated() {
  
findnpc("Example").onRandFunc(); // Would echo success! on RC

No reason at all to use findNPC.

PHP Code:
Example.func(); 
__________________
Reply With Quote