SA-MP Forums Archive
tag mismatch help - 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: tag mismatch help (/showthread.php?tid=451676)



tag mismatch help - xganyx - 18.07.2013

i got this warning when i try to compiler my fs
pawn Код:
C:\Users\Admin\Desktop\FCNPC\FCNPC\filterscripts\MoneyDrop.pwn(214) : warning 213: tag mismatch
C:\Users\Admin\Desktop\FCNPC\FCNPC\filterscripts\MoneyDrop.pwn(352) : warning 213: tag mismatch
here is 2 line of my fs

line 214
pawn Код:
Delete3DTextLabel(tSuperBag);
line 352
pawn Код:
tSuperBag = Create3DTextLabel("Money to heavy! /pickmoney to pick it up",Yellow,smoneyx,smoneyy,smoneyz,40.0,0,1);
Help!!


Re: tag mismatch help - RedFusion - 18.07.2013

pawn Код:
new Text3D:tSuperBag;



Re: tag mismatch help - morocco - 18.07.2013

Use

pawn Код:
new



Re: tag mismatch help - xganyx - 18.07.2013

Quote:
Originally Posted by RedFusion
Посмотреть сообщение
pawn Код:
new Text3D:tSuperBag;
thanks i'm for got the
pawn Код:
new Text3D:...;



Re: tag mismatch help - xganyx - 18.07.2013

shit another tag mismatch
pawn Код:
Boomboxobj = CreateDynamicObject(2103,x,y,z,0.0, 0.0, Angle, 100.0);



Re: tag mismatch help - Kirollos - 18.07.2013

objects doesnt need Text3D: , just do
pawn Код:
new Boomboxobj;



Re: tag mismatch help - RedFusion - 18.07.2013

Some ID's need a "prefix" or whatever they're called.
SQLite database needs DB:id
3dtext needs Text3D:id
But most stuff don't need it. Try without first and see if it works.