Sorry for my bad English
In my main plugin
(plugin_init)
g_fwString = CreateMultiForward("test_get_string",ET_IGNOR E,FP_CELL,FP_STRING)
and I use it like this:
new ret
new sz[128]
ExecuteForward(g_fwString,ret,id,sz)
client_print(1,print_chat,"[Test] [ExeForward] [GetString:%s]",sz)
And in my sub plugin:
public test_get_string(id,sz[])
{
copy(sz,charsmax(sz),"TestText")
}
Here is the question: I can't get the proper text "TestText",
The plugin print this" [Test] [ExeForward] [GetString:]"
so how to correct this error?
Thank you