[Ajuda] Mensagem nгo pode ser enviada...
#1

Eu me lembro de ter modificado algo sobre texto no meu GM nгo me recordo oque, o problema й quando digito, ele nгo aparece no say!

Oque pode ser?

Obrigado.
Reply
#2

Callback "public OnPlayerText" poste aqui.
Reply
#3

Qual mensagem й? Й pelo comando?
Reply
#4

pawn Код:
public OnPlayerText(playerid, text[])
{
    return 0;
}


Isso que achei estranho...
Reply
#5

poste o comando /say
Reply
#6

Quote:
Originally Posted by Murilo_sousa
Посмотреть сообщение
poste o comando /say

say = Mensagem...

Nгo й o comando, й a mensagem.

Quando vocк pressiona o t, e digita.
Й ISSO.

Sу que nгo aparece....
Reply
#7

Muda o retorno da public OnPlayerText para 1
pawn Код:
public OnPlayerText(playerid, text[])
{
    return 1;
}
Reply
#8

Quote:
Originally Posted by Supera
Посмотреть сообщение
Muda o retorno da public OnPlayerText para 1
pawn Код:
public OnPlayerText(playerid, text[])
{
    return 1;
}
ela tem que retornar a 0 mesmo '--'

tente fazer um debug dentro da callback

pawn Код:
public OnPlayerText(playerid, text[])
{
    new
        _stx[ 144 ]
    ;
   
    format(_stx, sizeof(_stx), "Playerid: %d Texto: %s", playerid, text);
    SendClientMessageToAll(-1, _stx);
    printf(_stx);
    return 0;
}
Reply
#9

Ambos acima foi, como o return 1 foi o mais simples eu estou utilizando ele.

Os 2 ganharam +rep >)
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)