PDA

View Full Version : Using Aerolib and Lape Reflection gives error



EZ41
04-27-2015, 06:16 PM
So I'm new to reflection, and I've just figured out how to get a script to interact with an NPC using lape reflection which works fine. Now I'm trying to use Aerolib in the same script, but when I include aerolib as well as reflection the script gives me this message:

Compiled successfully in 3447 ms.
[19:09:22:409] [Reflection] [Fatal] Hooks are outdated. No need to post about it, we are currently working on it.

Edit: I had to initialize aerolib with


initAL();

BEFORE reflection with


Reflect.Setup;

Harrier
04-27-2015, 06:24 PM
Make sure you've defined aerolib before reflection like so
{$i AeroLib/AeroLib.Simba}
{$i reflection/Reflection.simba}
Then make sure you've setup aerolib before reflection like so
initAL();
Reflect.Setup;