07.06.2009, 11:23
Well,not very bad,but I need ur help.
How to pass null string by CallLocal/RemoteFunction?
It'll crash my server.
I puzzled a day long,someone able to help me?
Thx.
How to pass null string by CallLocal/RemoteFunction?
pawn Код:
#include <a_samp>
main(){}
public OnGameModeInit(){
print "test1"
CallLocalFunction("test","s","");
print "test2"
return true;
}
forward test(str[]);
public test(str[]){
if(str[0]) print "not null string"
else(str[0]) print "null string"
}
I puzzled a day long,someone able to help me?
Thx.