Here's something I've been wondering. How is it possible to target something in another plugin with more than 1 thing needed.
like in HArbuRPAlpha.amxx
There is a code like
Code:
stock set_item_amount(id,func[],itemid,amount,table[],customid[]="")
Obviously it needs id, func, itemid, amount, table, customid.
Ok, How do I make it in callfunc, so that it targets all of these values needed from my plugin?
Here is my failed attempt.
Help?
Code:
callfunc_begin("set_item_amount","HarbuRPAlpha.amxx")
callfunc_push_int(id,"+",411,1,"money")
callfunc_end()
Ty.
__________________