SA-MP Forums Archive
[Scripting Help] Business - Products Warning - 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: [Scripting Help] Business - Products Warning (/showthread.php?tid=516674)



[Scripting Help] Business - Products Warning - Ephibi - 01.06.2014

Код:
C:\Users\user\Desktop\business.pwn(326) : error 017: undefined symbol "Products"
C:\Users\user\Desktop\business.pwn(328) : error 017: undefined symbol "Products"
C:\Users\user\Desktop\business.pwn(342) : error 017: undefined symbol "Products"
C:\Users\user\Desktop\business.pwn(342) : warning 215: expression has no effect
C:\Users\user\Desktop\business.pwn(345) : error 017: undefined symbol "Products"
C:\Users\user\Desktop\business.pwn(346) : error 017: undefined symbol "ProductsText"
C:\Users\user\Desktop\business.pwn(377) : warning 204: symbol is assigned a value that is never used: "lockdone"
C:\Users\user\Desktop\business.pwn(376) : warning 204: symbol is assigned a value that is never used: "done"
C:\Users\user\Desktop\business.pwn(352) : warning 203: symbol is never used: "idx"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


5 Errors.
http://pastebin.com/14KmhpXN


Re: [Scripting Help] Business - Products Warning - rickisme - 01.06.2014

make sure your already define "Products", "ProductsText"


Re: [Scripting Help] Business - Products Warning - Ephibi - 01.06.2014

What do I put in the #define?


Re: [Scripting Help] Business - Products Warning - rickisme - 01.06.2014

just example
pawn Код:
new Products = 0, Text3D:ProductsText;

ProductsText = CreateDynamicTextLabel( .... );



Re: [Scripting Help] Business - Products Warning - Ephibi - 01.06.2014

Quote:
Originally Posted by rickisme
Посмотреть сообщение
just example
pawn Код:
new Products = 0, Text3D:ProductsText;

ProductsText = CreateDynamicTextLabel( .... );
wat .