16/01/2024 18:44
(Esta mensagem foi modificada pela última vez a: 16/01/2024 19:21 por zBarbosa.)
Citar:Código:CMD:inventario(playerid)
{
for(new i; i < 61; i++)
{
PlayerTextDrawShow(playerid, TDEditor_PTD[playerid][i]);
}
return 1;
}
Quando uso esse comando,o textdraw é mostrado normalmente, mas quando uso esse
Código:
CMD:inventario(playerid)
{
for(new i; i < 61; i++)
{
for(new a = 23; a < 38; a++)
{
PlayerTextDrawSetPreviewModel(playerid, TDEditor_PTD[playerid][a], PlayerInventario[playerid][a][Slot]);
}
PlayerTextDrawShow(playerid, TDEditor_PTD[playerid][i]);
}
return 1;
}
Já aparece mensagem que o comando não existe. O que pode ser?l