27.02.2012, 08:09
If you think the script is right then consider reading a tutorial for such warnings.
original link: https://sampforum.blast.hk/showthread.php?tid=216730
Hope this helps.
-FalconX
Quote:
Getting rid of stupid tag warnings When putting Text3Ds, DBResults, and stuff inside functions such as printf, format, SetTimerEx, CallLocalFunction, CallRemoteFunction you might notice you're getting a tag warning. You're not doing anything wrong! What you do to get rid of them is you clear the tag - clearing the tag is done by putting an underscore as a tag. Example: pawn Code: new Text3D:t3dTest = Create3DTextLabel( .. ), Text:txTest = TextDrawCreate( .. ); printf( "DEBUG: %d, %d", _:t3dTest, _:txTest ); |
Hope this helps.
-FalconX