|
Author
|
Message
|
|
Junior Member
|

05-15-2010
, 05:54
Can one plugin call(exec) onother one in his functions ?
|
#1
|
is it possible that one function in 1 plugin to call another plugin ??
i don't have .sma file
example
Quote:
accessUser(id, name[] = "")
{
remove_user_flags(id)
new userip[32], userauthid[32], password[32], passfield[32], username[32]
get_user_ip(id, userip, 31, 1)
get_user_authid(id, userauthid, 31)
|
Quote:
accessUser(id, name[] = "")
{
remove_user_flags(id)
---> here to call(run) another plugin
new userip[32], userauthid[32], password[32], passfield[32], username[32]
get_user_ip(id, userip, 31, 1)
get_user_authid(id, userauthid, 31)
|
Last edited by Mitev; 05-15-2010 at 18:50.
|
|
|
|