01/07/2021 18:34
Boa noite, fiz uma TextDraw para colocar em uma GameMode e deu esse erro: error 035: argument type mismatch (argument 2)
Linha do erro:
TextDraw:
Eu não entendi esse erro alguém pode me ajudar? Sempre fiz uma TextDraw e coloquei desse jeito e nunca deu esse erro.
Linha do erro:
Código:
public OnPlayerConnect(playerid)
{
TextDrawShowForPlayer(playerid, TDEditor_TD);
return 1;
}
TextDraw:
Código:
new Text:TDEditor_TD[1];
public OnGameModeInit()
{
SetGameModeText("Blank Script");
AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
/////////////////////////////////////////////////////////////////////////////
TDEditor_TD[0] = TextDrawCreate(533.631286, 330.583282, "The Drifters Club");
TextDrawLetterSize(TDEditor_TD[0], 0.400000, 1.600000);
TextDrawAlignment(TDEditor_TD[0], 1);
TextDrawColor(TDEditor_TD[0], -65281);
TextDrawSetShadow(TDEditor_TD[0], 0);
TextDrawSetOutline(TDEditor_TD[0], 2);
TextDrawBackgroundColor(TDEditor_TD[0], 255);
TextDrawFont(TDEditor_TD[0], 1);
TextDrawSetProportional(TDEditor_TD[0], 1);
TextDrawSetShadow(TDEditor_TD[0], 0);
return 1;
}
Eu não entendi esse erro alguém pode me ajudar? Sempre fiz uma TextDraw e coloquei desse jeito e nunca deu esse erro.
Código:
Nem tudo é fácil na vida, mas com certeza nada é impossível!