You can't call an amxmodx native like give_item() which is included in fun module, useless? You must call a custom public function. Lets say you have the following public function in frostnade.amxx plugin
PHP Code:
public give_frostnade(id)
{
//...code to give frostnade and other checks / sprites / messages / etc...
}
then you can call it from another plugin like this
PHP Code:
callfunc_begin("give_frostnade", "frostnade.amxx"); // function name "x" from plugin "y"
callfunc_push_int(id); // first parameter
callfunc_end();
__________________