I have no idea what just happaned.
#3

Quote:
Originally Posted by Lynn
Посмотреть сообщение
Remove your Global string variable.
You can't have a local and global of the same variable.

Example

ERROR CODE
PHP код:
// TOP OF SCRIPT
new string[128];
CMD:command(playeridparams[])
{
    new 
string[12];
    
format(stringsizeof(string), " %s blah blah "pName(playerid));
    
SendClientMessage(playerid, -1string);

Correct code
PHP код:
// TOP OF SCRIPT
//new string[128]; // REMOVED
CMD:command(playeridparams[])
{
    new 
string[12];
    
format(stringsizeof(string), " %s blah blah "pName(playerid));
    
SendClientMessage(playerid, -1string);

I don't have a global string variable.
But I did have a global health variable.
Thanks.
Reply


Messages In This Thread
I have no idea what just happaned. - by danielpalade - 09.07.2016, 00:51
Re: I have no idea what just happaned. - by Lynn - 09.07.2016, 01:17
Re: I have no idea what just happaned. - by danielpalade - 09.07.2016, 01:20

Forum Jump:


Users browsing this thread: 1 Guest(s)