07.12.2012, 13:56
(
Last edited by mk124; 07/12/2012 at 05:11 PM.
)
Quote:
Same response from me as on the .NET sa-mp coding.
It can't trigger custom natives(plugins, etc) properly. Im 99% sure it can't be efficient. |
If I implement the feature of accessing AMX in Shoebill, it seems like this:
Code:
AmxFunction func = amxInstance.getNative("print"); int ret = func.call("test"); // ... amxInstance.registerNative("SendClientMessageWithShoebill", func);
What's more, You can also make a native plugin and call the native / public functions you need in it, and then provide Java Plugin the native methods by JNI.