Warning: Tag mismatch
#3

Lee esto. https://sampwiki.blast.hk/wiki/Scripting_Basics#Tags

Resumiendo, el error aparece cuando las variables que operan dentro de una operaciуn (valga la redundancia) tienen diferentes etiquetas.

Por ejemplo:
pawn Код:
new Float: velocidad;
new Repollo: rechicken;

new resultado = velocidad + rechicken;
El compilador deberнa lanzar una advertencia indicando que los tag de velocidad y rechicken son diferentes (uno es Float y el otro es Repollo). Segъn wiki, la soluciуn es quitarle el tag a una de las variables mediante el _:. Me imagino que se hace asн:
pawn Код:
new Float: velocidad;
new Repollo: rechicken;

new resultado = velocidad + _:rechicken;

// O tambiйn
new resultado = _:velocidad + rechicken;
Reply


Messages In This Thread
Warning: Tag mismatch - by Jastak - 17.08.2017, 03:35
Re: Warning: Tag mismatch - by FlaNy - 17.08.2017, 03:50
Re: Warning: Tag mismatch - by Miguel - 17.08.2017, 04:05
Re: Warning: Tag mismatch - by Jastak - 17.08.2017, 04:16
Re: Warning: Tag mismatch - by Miguel - 18.08.2017, 00:59
Re: Warning: Tag mismatch - by Jastak - 18.08.2017, 16:30

Forum Jump:


Users browsing this thread: 1 Guest(s)