Quote:
Originally Posted by ffcmike
I find that some classes actually take longer to load than others (presumably down to their amount of characters), so I use an initialization class that waits until the function exists.
|
Probably not a bad idea. Something like
PHP Code:
while (! ("myfunction" in player.getFunctions())) {
sleep(0.05);
}
?