Erro warning: 213: tag mismatch -
Tchucknoia - 23.12.2017
Olб eu comecei algum tempo a programar pawn e estou tentando fazer um server com base no jogo Dayz, mas "do zero", comecei a fazer os itens jogados no chгo e colocar nomes para eles, mas quando eu compilo aparece o erro 213 que eu pesquisei e nгo consegui resolver, peзo que me ajudem (=
//Cabeзalho do programa
#define MAX_ITENS 500 //numero de itens
stock sistemaitem(modelid,Float: x,Float: y,Float: z)
{
new NumItem[MAX_ITENS];
new IdTexto[MAX_ITENS];
for(new i=0;i<=MAX_ITENS;i++)
{
NumItem[i]=CreateObject(modelid,x,y,z,0,0,0);
IdTexto[i]=Create3DTextLabel("ITEM",0xFFFFFFFF,x,y,z,10.0,0, 0);
}
}
A minha ideia seria ele criar um item, armazenar o id do item em um vetor com 1 dimensгo e no mesmo local mas em outra variavel com 1 dimensгo armazenar a id do texto, pois quando algum jogador pegar o item ele serб destruнdo, logo usarei a funзгo Delete3DTextLabel(Text3D:id), mas o erro acontece justo na linha "IdTexto[i]=Create3DTextLabel("ITEM",0xFFFFFFFF,x,y,z,10.0,0, 0);"
Re: Erro warning: 213: tag mismatch -
DarkBr - 23.12.2017
PHP код:
stock sistemaitem(modelid, Float:x, Float:y, Float:z)
{
new NumItem[500];
new Text3D:IdTexto[500];
for(new i=0;i<=500;i++)
{
NumItem[i] = CreateObject(modelid, x, y, z, 0.0, 0.0, 0.0);
IdTexto[i] = Create3DTextLabel("ITEM", 0xFFFFFFFF, x, y, z, 10.0, 0, 0);
}
}
Leia Wiki
Re: Erro warning: 213: tag mismatch -
Tchucknoia - 23.12.2017
Й um site isso? se for manda o link
Re: Erro warning: 213: tag mismatch -
Tchucknoia - 23.12.2017
Quote:
Originally Posted by DarkBr
PHP код:
stock sistemaitem(modelid, Float:x, Float:y, Float:z)
{
new NumItem[500];
new Text3D:IdTexto[500];
for(new i=0;i<=500;i++)
{
NumItem[i] = CreateObject(modelid, x, y, z, 0.0, 0.0, 0.0);
IdTexto[i] = Create3DTextLabel("ITEM", 0xFFFFFFFF, x, y, z, 10.0, 0, 0);
}
}
Leia Wiki
|
... link?
Re: Erro warning: 213: tag mismatch -
Tchucknoia - 23.12.2017
Jб corrigi o erro com um tutorial alemгo, muito obrigado
Re: Erro warning: 213: tag mismatch -
cuber - 23.12.2017
Quote:
Originally Posted by Tchucknoia
... link?
|
wiki.sa-mp.com
Re: Erro warning: 213: tag mismatch -
rfr - 23.12.2017
https://sampwiki.blast.hk/wiki/Create3DTextLabel