我在主插件中注册
new const OO[2][64]
public plugin_natives()
register_native("show_string","string_show",1)
public string_show(const show[])
{
format(OO[0],63,show)
client_print(0,print_chat,"%s",OO[0])
}
==============================
子插件中
native show_string(const show[])
show_string("测试“)
执行一次后居然无法改变主插件中OO的任何东西,OO的类型我从new,new const,static const到static都有测试的,没有任何作用,还有复制字符串的命令都几乎有尝试了,像vformat,formatex,format,copy,strcat等,都毫无作用,控制台也没有报错。求字符串传递到主插件的格式
new const OO[2][64]
public plugin_natives()
register_native("show_string","string_show",1)
public string_show(const show[])
{
format(OO[0],63,show)
client_print(0,print_chat,"%s",OO[0])
}
==============================
子插件中
native show_string(const show[])
show_string("测试“)
执行一次后居然无法改变主插件中OO的任何东西,OO的类型我从new,new const,static const到static都有测试的,没有任何作用,还有复制字符串的命令都几乎有尝试了,像vformat,formatex,format,copy,strcat等,都毫无作用,控制台也没有报错。求字符串传递到主插件的格式