What does this mean?
#5

Quote:
Originally Posted by Babul
it tells you that you declared that variable twice.
Код:
1	new pLabelCreated[64];
2	for(id=0;id<MAX_PLAYERS;id++)
3	{
4		new pLabelCreated[64];
5		format(pLabelCreated,sizeof(pLabelCreated),"blablabla %s",pLabelCreated);
6		SendClientMessageToPlayer(id,0xffffffff,pLabelCreated);
7	}
just remove your new created variable (here, in line 4), as it already exists. if its a string, like above, then make sure the size is declared to the bigger value...
Oh thanks, i see, i have make new PLabelCreated 2 times.. :S
Reply


Messages In This Thread
What does this mean? - by Ihsan_Cingisiz - 31.05.2010, 04:53
Re: What does this mean? - by Grim_ - 31.05.2010, 04:53
Re: What does this mean? - by Babul - 31.05.2010, 04:56
Re: What does this mean? - by Grim_ - 31.05.2010, 05:00
Re: What does this mean? - by Ihsan_Cingisiz - 31.05.2010, 05:03

Forum Jump:


Users browsing this thread: 1 Guest(s)