SA-MP Forums Archive
Erro warning: 213: tag mismatch - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Erro warning: 213: tag mismatch (/showthread.php?tid=646784)



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(modelidFloat:xFloat:yFloat:z
{
    new 
NumItem[500];
    new 
Text3D:IdTexto[500];
    for(new 
i=0;i<=500;i++)
    {
        
NumItem[i] = CreateObject(modelidxyz0.00.00.0);
        
IdTexto[i] = Create3DTextLabel("ITEM"0xFFFFFFFFxyz10.000);
    }

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(modelidFloat:xFloat:yFloat:z
{
    new 
NumItem[500];
    new 
Text3D:IdTexto[500];
    for(new 
i=0;i<=500;i++)
    {
        
NumItem[i] = CreateObject(modelidxyz0.00.00.0);
        
IdTexto[i] = Create3DTextLabel("ITEM"0xFFFFFFFFxyz10.000);
    }

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