[Ajuda] O que tem de errado no meu /r?
#1

O que ta errado no comando de radio do meu sv?
Fica dando SERVER: Unkown command., ta meio errado, nгo sei o pq, parece q ta indo a MSG
Mas fica dando isso...
Код:
	CMD:f(playerid, params[]) {
		if(fmembro[playerid] == 0) return SendClientMessage(playerid, COLOR_RED, "You do not participate in a faction.");
		new texto;
		new string[80];
		new family;
		if(sscanf(params,"s", texto)) {
			SendClientMessage(playerid, -1, "Use: /f [text]");
			return 1;
		}

		family = fmembro[playerid];
		for(new i = 0; i < MAX_PLAYERS; i++)
		{
			if(IsPlayerConnected(i))
			{
				if(fmembro[i] == family)
				{
					format(string, sizeof(string), "** %i- %s: %s, over. **", fcargo[playerid], PlayerName(playerid), texto);
					SendClientMessage(i, COLOR_RADIO, string);
					break;
				}
			}
		}
		return 1;
	}
Reply
#2

Nгo teria que definir o tamanho da string da sscanf?

PHP код:
new texto[60];

"s[60]" 
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)